Boundary conditions for linear wave propagation#

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

Use shamrock documentation style for matplotlib

26 shamrock.matplotlib.set_shamrock_mpl_style()

Setup parameters

31 nx, ny = 512, 512
32
33 sim_folder = "_to_trash/ramses_linear_wave_with_bc/"

Create the dump directory if it does not exist

37 if shamrock.sys.world_rank() == 0:
38     os.makedirs(sim_folder, exist_ok=True)

Periodic boundary conditions#

203 def run_case_periodic():
204     def set_bc_func(cfg):
205         cfg.set_boundary_condition("x", "periodic")
206         cfg.set_boundary_condition("y", "periodic")
207         cfg.set_boundary_condition("z", "periodic")
208
209     return run_case(set_bc_func, "periodic")
210
211
212 ani_periodic = run_case_periodic()
213 plt.show()
Info: pushing data in scheduler, N = 32768                            [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  8.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     : 11.06 us   (69.0%)
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.14 us    (0.1%)
   patch tree reduce : 2.29 us    (0.2%)
   gen split merge   : 981.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.1%)
   LB compute        : 926.04 us  (98.5%)
   LB move op cnt    : 0
   LB apply          : 4.78 us    (0.5%)
Info: patch count stable after 1 runs npatch = 1                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: time since start : 11.391197988 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.55 us   (3.7%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 590.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 338.96 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (70.7%)
Info: cfl dt = 0.004687031767311921                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.1570e+05 | 262144 |      1 | 4.258e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.004687031767311921
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.17 us    (1.9%)
   patch tree reduce : 2.43 us    (0.7%)
   gen split merge   : 1.29 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 347.64 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (71.6%)
Info: cfl dt = 0.00468703492268262                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7525e+05 | 262144 |      1 | 3.381e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.899961099051396 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004687031767311921, dt = 0.00468703492268262
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.46 us    (2.2%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 314.40 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (64.9%)
Info: cfl dt = 0.004687039583988074                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7230e+05 | 262144 |      1 | 3.394e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.71007993475031 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009374066689994541, dt = 0.004687039583988074
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (2.0%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 320.23 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (68.7%)
Info: cfl dt = 0.004687045796397419                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1526e+05 | 262144 |      1 | 3.215e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.475364275545886 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014061106273982615, dt = 0.004687045796397419
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (2.3%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 284.13 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (73.8%)
Info: cfl dt = 0.004687053552588433                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5250e+05 | 262144 |      1 | 3.484e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.43619872019337 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018748152070380032, dt = 0.004687053552588433
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.60 us    (2.2%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 316.65 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (60.7%)
Info: cfl dt = 0.004687062799631708                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0868e+05 | 262144 |      1 | 3.242e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.05228738107587 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023435205622968466, dt = 0.004687062799631708
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (2.0%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 325.65 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.76 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.4%)
Info: cfl dt = 0.004687073438769337                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0695e+05 | 262144 |      1 | 3.249e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.94064176053571 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028122268422600172, dt = 0.004687073438769337
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.21 us    (2.2%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 311.44 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (84.7%)
Info: cfl dt = 0.004687084324050356                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8342e+05 | 262144 |      1 | 3.346e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.42636820687565 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03280934186136951, dt = 0.0006117107702094393
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.78 us    (2.3%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 322.60 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (74.9%)
Info: cfl dt = 0.004687085698923781                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7042e+05 | 262144 |      1 | 3.403e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.471929625849166 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 14.980914352000001 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.03342105263157895, dt = 0.004687085698923781
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.70 us   (3.4%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 600.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 344.09 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (72.1%)
Info: cfl dt = 0.004687096753517381                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.2994e+05 | 262144 |      1 | 3.591e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.98435396081067 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03810813833050273, dt = 0.004687096753517381
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.37 us    (2.1%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 326.64 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (69.5%)
Info: cfl dt = 0.004687108731816181                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1658e+05 | 262144 |      1 | 3.210e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.56136615819199 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04279523508402011, dt = 0.004687108731816181
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.21 us    (2.1%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 318.18 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (74.2%)
Info: cfl dt = 0.004687121456470113                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0139e+05 | 262144 |      1 | 3.271e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.58329795862012 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04748234381583629, dt = 0.004687121456470113
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (1.8%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 345.06 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (75.6%)
Info: cfl dt = 0.004687134726094165                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1528e+05 | 262144 |      1 | 3.215e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.4775298984587 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.052169465272306405, dt = 0.004687134726094165
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.24 us    (2.0%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 335.41 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (71.9%)
Info: cfl dt = 0.004687147322194281                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4903e+05 | 262144 |      1 | 3.500e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.213317269525135 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05685659999840057, dt = 0.004687147322194281
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.70 us    (2.1%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1.25 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 349.64 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.82 us    (77.8%)
Info: cfl dt = 0.004687158862017917                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0657e+05 | 262144 |      1 | 3.250e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.91738214376521 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06154374732059485, dt = 0.004687158862017917
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.67 us    (2.3%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 309.12 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (70.4%)
Info: cfl dt = 0.004687170703493218                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0652e+05 | 262144 |      1 | 3.250e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.91451803480711 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06623090618261276, dt = 0.0006111990805451328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.4%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1.39 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 268.18 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.69 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (71.6%)
Info: cfl dt = 0.004687172273838671                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0488e+05 | 262144 |      1 | 3.257e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.755787061499007 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 18.158080081 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.0668421052631579, dt = 0.004687172273838671
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.17 us   (3.7%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 332.75 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (69.7%)
Info: cfl dt = 0.004687184264635955                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.1975e+05 | 262144 |      1 | 3.642e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.32916230471257 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07152927753699657, dt = 0.004687184264635955
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.78 us    (2.4%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 303.80 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.8%)
Info: cfl dt = 0.004687194877889176                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0013e+05 | 262144 |      1 | 3.276e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.50323374400969 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07621646180163252, dt = 0.004687194877889176
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.42 us    (2.4%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 281.51 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (70.2%)
Info: cfl dt = 0.004687205210890904                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9362e+05 | 262144 |      1 | 3.303e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.084578213048154 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0809036566795217, dt = 0.004687205210890904
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (1.8%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 330.69 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (69.0%)
Info: cfl dt = 0.004687215596405025                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0408e+05 | 262144 |      1 | 3.260e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.75769134831731 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0855908618904126, dt = 0.004687215596405025
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.1%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 313.74 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (64.4%)
Info: cfl dt = 0.004687224972615614                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9901e+05 | 262144 |      1 | 3.281e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.43173499524282 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09027807748681763, dt = 0.004687224972615614
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.42 us    (2.2%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1.53 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 312.45 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (72.9%)
Info: cfl dt = 0.004687234139880302                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6204e+05 | 262144 |      1 | 3.440e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.05192886761764 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09496530245943324, dt = 0.004687234139880302
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.08 us    (2.1%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 297.44 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 4.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (72.9%)
Info: cfl dt = 0.004687243482085148                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9819e+05 | 262144 |      1 | 3.284e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.37892788474906 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09965253659931354, dt = 0.0006106212954233026
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.26 us    (2.2%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 308.02 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (69.3%)
Info: cfl dt = 0.004687244709385977                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0336e+05 | 262144 |      1 | 3.263e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.736700862838293 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 21.341486569 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.10026315789473685, dt = 0.004687244709385977
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.80 us   (3.7%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 319.84 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (65.9%)
Info: cfl dt = 0.0046872540161271474                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5374e+05 | 262144 |      1 | 3.478e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.51778086563051 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10495040260412282, dt = 0.0046872540161271474
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (2.2%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 297.69 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (64.1%)
Info: cfl dt = 0.004687263151248485                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9824e+05 | 262144 |      1 | 3.284e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.38210158214518 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10963765662024996, dt = 0.004687263151248485
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.50 us    (2.0%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 344.38 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (72.0%)
Info: cfl dt = 0.004687272009803064                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1001e+05 | 262144 |      1 | 3.236e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.140426124756004 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11432491977149845, dt = 0.004687272009803064
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.1%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 298.75 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (74.3%)
Info: cfl dt = 0.004687277553789572                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1080e+05 | 262144 |      1 | 3.233e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.191255329874906 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11901219178130151, dt = 0.004687277553789572
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (2.2%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 293.06 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (75.5%)
Info: cfl dt = 0.004687278860067916                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9604e+05 | 262144 |      1 | 3.293e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.24124948062428 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12369946933509109, dt = 0.004687278860067916
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (2.1%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 307.90 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (74.8%)
Info: cfl dt = 0.0046872787037232026                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9566e+05 | 262144 |      1 | 3.295e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.216817372807995 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.128386748195159, dt = 0.0046872787037232026
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (1.9%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 341.85 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (72.0%)
Info: cfl dt = 0.004687277667493951                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9218e+05 | 262144 |      1 | 3.309e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.992425426678004 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1330740268988822, dt = 0.0006101836274335914
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.00 us    (2.1%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 304.23 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (73.1%)
Info: cfl dt = 0.004687277454150913                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7667e+05 | 262144 |      1 | 3.375e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.508158970157265 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 24.498206224 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.1336842105263158, dt = 0.004687277454150913
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.16 us   (3.5%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 591.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 345.06 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (69.4%)
Info: cfl dt = 0.00468727556791138                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0600e+05 | 262144 |      1 | 3.252e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.882046358215305 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1383714879804667, dt = 0.00468727556791138
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (1.9%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.68 us    (0.5%)
   LB compute        : 333.90 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (76.0%)
Info: cfl dt = 0.004687273317731606                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0648e+05 | 262144 |      1 | 3.250e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.91274776843089 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14305876354837807, dt = 0.004687273317731606
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.29 us    (1.9%)
   patch tree reduce : 2.09 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 358.13 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 5.40 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (70.9%)
Info: cfl dt = 0.004687270766759186                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0120e+05 | 262144 |      1 | 3.272e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.57318172387206 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14774603686610968, dt = 0.004687270766759186
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.21 us    (2.3%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 290.22 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (71.4%)
Info: cfl dt = 0.004687267928760189                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0130e+05 | 262144 |      1 | 3.271e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.5797388042194 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15243330763286886, dt = 0.004687267928760189
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.39 us    (2.2%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 308.36 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (74.3%)
Info: cfl dt = 0.004687264881698464                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0126e+05 | 262144 |      1 | 3.272e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.57688142518658 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15712057556162906, dt = 0.004687264881698464
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.42 us    (2.3%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 304.21 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.4%)
Info: cfl dt = 0.004687261775572384                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9808e+05 | 262144 |      1 | 3.285e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.37220074740626 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16180784044332752, dt = 0.004687261775572384
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.2%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 273.42 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (74.5%)
Info: cfl dt = 0.004687258684509833                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1979e+05 | 262144 |      1 | 3.198e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.76979905765511 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1664951022188999, dt = 0.0006101609389948526
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.29 us    (2.3%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 289.89 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (68.6%)
Info: cfl dt = 0.0046872582818074035                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0440e+05 | 262144 |      1 | 3.259e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.740338177599657 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 27.820828957000003 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.16710526315789476, dt = 0.0046872582818074035
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.04 us   (3.5%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 611.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 343.24 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.4%)
Info: cfl dt = 0.004687255242611125                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0485e+05 | 262144 |      1 | 3.257e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.80764686070504 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17179252143970217, dt = 0.004687255242611125
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (1.9%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 331.53 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.7%)
Info: cfl dt = 0.0046872522719168044                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9516e+05 | 262144 |      1 | 3.297e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.18427276838043 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1764797766823133, dt = 0.0046872522719168044
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (2.3%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 1.46 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 275.91 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (65.8%)
Info: cfl dt = 0.004687249395128633                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0848e+05 | 262144 |      1 | 3.242e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.041610146055646 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1811670289542301, dt = 0.004687249395128633
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.04 us    (2.4%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 276.28 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (75.1%)
Info: cfl dt = 0.004687246656308507                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0272e+05 | 262144 |      1 | 3.266e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.670598294820365 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18585427834935872, dt = 0.004687246656308507
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.07 us    (2.2%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 294.94 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (71.6%)
Info: cfl dt = 0.004687244091460058                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0716e+05 | 262144 |      1 | 3.248e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.956488003553396 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19054152500566723, dt = 0.004687244091460058
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.06 us    (2.0%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 1.21 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 326.23 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (61.7%)
Info: cfl dt = 0.004687241718897253                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9861e+05 | 262144 |      1 | 3.283e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.4061763676942 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1952287690971273, dt = 0.004687241718897253
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.23 us    (2.1%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 327.00 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (69.7%)
Info: cfl dt = 0.004687239542050487                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7274e+05 | 262144 |      1 | 3.392e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.74095924103533 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19991601081602456, dt = 0.0006103049734491328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.06 us    (2.5%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 262.57 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (71.8%)
Info: cfl dt = 0.004687239271247986                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1164e+05 | 262144 |      1 | 3.230e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.802557896776507 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 30.94744889 (s)                                          [Godunov][rank=0]
amr::Godunov: t = 0.2005263157894737, dt = 0.004687239271247986
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.37 us   (3.4%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 332.71 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (69.0%)
Info: cfl dt = 0.0046872373081415526                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0593e+05 | 262144 |      1 | 3.253e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.87742716546012 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20521355506072167, dt = 0.0046872373081415526
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.23 us    (2.4%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 281.67 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (64.9%)
Info: cfl dt = 0.004687235534338315                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9658e+05 | 262144 |      1 | 3.291e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.27567198265578 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20990079236886322, dt = 0.004687235534338315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (2.0%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 330.53 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (69.7%)
Info: cfl dt = 0.004687233953650767                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9336e+05 | 262144 |      1 | 3.304e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.067987112726904 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21458802790320153, dt = 0.004687233953650767
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.17 us    (2.2%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 299.71 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.1%)
Info: cfl dt = 0.004687232502824153                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8956e+05 | 262144 |      1 | 3.320e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.823397773407514 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21927526185685228, dt = 0.004687232502824153
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (2.3%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 284.77 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (75.4%)
Info: cfl dt = 0.0046872311646227105                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9935e+05 | 262144 |      1 | 3.279e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.453419175016975 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22396249435967644, dt = 0.0046872311646227105
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.62 us    (2.3%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 302.21 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (71.4%)
Info: cfl dt = 0.0046872300082553215                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8579e+05 | 262144 |      1 | 3.336e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.580791140521725 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22864972552429916, dt = 0.0046872300082553215
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (1.9%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 1.23 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 338.16 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (67.2%)
Info: cfl dt = 0.004687229023942356                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9161e+05 | 262144 |      1 | 3.312e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.95557513089523 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23333695553255449, dt = 0.0006104128884981408
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.43 us    (2.2%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 316.37 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (64.5%)
Info: cfl dt = 0.004687228920633913                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9792e+05 | 262144 |      1 | 3.285e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.688801542776546 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 34.090569421000005 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.23394736842105263, dt = 0.004687228920633913
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.46 us   (3.6%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 317.17 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (70.4%)
Info: cfl dt = 0.004687228110852186                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1080e+05 | 262144 |      1 | 3.233e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.19046964873385 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23863459734168654, dt = 0.004687228110852186
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.00 us    (2.3%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 283.53 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (59.7%)
Info: cfl dt = 0.004687227451969247                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1121e+05 | 262144 |      1 | 3.232e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.21673517110987 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24332182545253872, dt = 0.004687227451969247
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.08 us    (2.3%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 278.69 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (69.7%)
Info: cfl dt = 0.004687226932085143                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0942e+05 | 262144 |      1 | 3.239e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.101915095208156 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24800905290450798, dt = 0.004687226932085143
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.76 us    (2.2%)
   patch tree reduce : 2.50 us    (0.7%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 322.18 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (68.4%)
Info: cfl dt = 0.004687226540084672                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.2728e+05 | 262144 |      1 | 3.604e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.814607508701805 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2526962798365931, dt = 0.004687226540084672
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.04 us    (2.3%)
   patch tree reduce : 16.64 us   (5.4%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 269.64 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (67.4%)
Info: cfl dt = 0.004687226265071578                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.9739e+05 | 262144 |      1 | 3.759e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.890574242987086 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2573835063766778, dt = 0.004687226265071578
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.30 us    (2.0%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 1.26 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 343.52 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (70.6%)
Info: cfl dt = 0.00468722609669686                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.0346e+05 | 262144 |      1 | 3.726e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.28141934875011 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26207073264174935, dt = 0.00468722609669686
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.27 us    (2.6%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 252.73 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.3%)
Info: cfl dt = 0.004687226025197457                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0731e+05 | 262144 |      1 | 3.247e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.96574447104813 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2667579587384462, dt = 0.0006104623141853782
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.26 us    (2.2%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 306.45 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (72.4%)
Info: cfl dt = 0.00468722603330961                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9040e+05 | 262144 |      1 | 3.317e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.626254744506792 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 37.344568689 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.2673684210526316, dt = 0.00468722603330961
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.75 us   (3.8%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 590.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 333.76 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (70.0%)
Info: cfl dt = 0.004687226053604762                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7491e+05 | 262144 |      1 | 3.383e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.88014267256569 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2720556470859412, dt = 0.004687226053604762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.30 us    (2.4%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 280.02 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (71.8%)
Info: cfl dt = 0.004687226153524088                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0375e+05 | 262144 |      1 | 3.261e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.73702407040279 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.276742873139546, dt = 0.004687226153524088
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.29 us    (2.1%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 320.50 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (67.9%)
Info: cfl dt = 0.0046872263241485735                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3495e+05 | 262144 |      1 | 3.567e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.308022962361804 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28143009929307006, dt = 0.0046872263241485735
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (1.9%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.71 us    (0.5%)
   LB compute        : 338.49 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (70.0%)
Info: cfl dt = 0.004687226555453985                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9294e+05 | 262144 |      1 | 3.306e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.0408046009705 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28611732561721864, dt = 0.004687226555453985
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (2.0%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 322.67 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (73.0%)
Info: cfl dt = 0.004687226836976095                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9859e+05 | 262144 |      1 | 3.283e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.404625523191676 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29080455217267265, dt = 0.004687226836976095
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.54 us    (2.5%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 278.44 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (56.7%)
Info: cfl dt = 0.004687227157802991                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0367e+05 | 262144 |      1 | 3.262e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.73145399420754 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29549177900964874, dt = 0.004687227157802991
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.21 us    (2.0%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 317.03 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (73.1%)
Info: cfl dt = 0.004687227509313849                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.0060e+05 | 262144 |      1 | 3.742e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.096939725509394 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30017900616745175, dt = 0.0006104675167588058
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (2.4%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 263.57 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (65.8%)
Info: cfl dt = 0.004687227568179243                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5329e+05 | 262144 |      1 | 3.480e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.315195707393882 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 40.582920573 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.30078947368421055, dt = 0.004687227568179243
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.17 us   (3.8%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 321.45 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (68.6%)
Info: cfl dt = 0.004687227950262359                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9280e+05 | 262144 |      1 | 3.307e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.03208677490878 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3054767012523898, dt = 0.004687227950262359
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.17 us    (2.1%)
   patch tree reduce : 2.40 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 316.55 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (70.9%)
Info: cfl dt = 0.004687228352538633                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3289e+05 | 262144 |      1 | 3.577e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.17576302074907 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3101639292026522, dt = 0.004687228352538633
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.2%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 281.60 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (69.6%)
Info: cfl dt = 0.004687228763321001                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0698e+05 | 262144 |      1 | 3.248e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.94442104792046 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31485115755519083, dt = 0.004687228763321001
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.2%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1.41 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 277.00 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (66.8%)
Info: cfl dt = 0.004687229174705336                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1011e+05 | 262144 |      1 | 3.236e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.14600730627029 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31953838631851184, dt = 0.004687229174705336
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.06 us    (2.4%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 274.98 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (67.6%)
Info: cfl dt = 0.004687229581987548                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0956e+05 | 262144 |      1 | 3.238e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.11094529469454 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32422561549321716, dt = 0.004687229581987548
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.63 us    (2.5%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 282.92 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (67.4%)
Info: cfl dt = 0.004687229981253937                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5065e+05 | 262144 |      1 | 3.492e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.31850629432508 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3289128450752047, dt = 0.004687229981253937
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (2.0%)
   patch tree reduce : 2.22 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 322.84 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (68.5%)
Info: cfl dt = 0.0046872303701462545                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0777e+05 | 262144 |      1 | 3.245e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.995522970758124 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3336000750564586, dt = 0.0006104512593309019
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.30 us    (2.2%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.66 us    (0.5%)
   LB compute        : 311.92 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (69.8%)
Info: cfl dt = 0.0046872304307888505                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0731e+05 | 262144 |      1 | 3.247e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.767888295437566 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 43.750081816000005 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.3342105263157895, dt = 0.0046872304307888505
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.05 us   (3.8%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 317.89 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (70.0%)
Info: cfl dt = 0.004687230803258661                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8569e+05 | 262144 |      1 | 3.336e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.57445303038034 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33889775674657835, dt = 0.004687230803258661
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.1%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 313.13 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (69.4%)
Info: cfl dt = 0.004687231163819945                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0565e+05 | 262144 |      1 | 3.254e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.85922556471594 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.343584987549837, dt = 0.004687231163819945
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.45 us    (2.0%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.4%)
   LB compute        : 348.53 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (75.4%)
Info: cfl dt = 0.004687231514914584                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3534e+05 | 262144 |      1 | 3.565e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.33354654544368 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.348272218713657, dt = 0.004687231514914584
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (1.8%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 367.56 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (69.4%)
Info: cfl dt = 0.004687231860538213                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.7002e+05 | 262144 |      1 | 3.912e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.128814883763106 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35295945022857156, dt = 0.004687231860538213
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.67 us    (2.0%)
   patch tree reduce : 1.93 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.4%)
   LB compute        : 351.71 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (70.4%)
Info: cfl dt = 0.004687232204076043                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.0423e+05 | 262144 |      1 | 3.722e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.331022415729606 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35764668208910977, dt = 0.004687232204076043
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.60 us    (1.9%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 366.69 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (72.5%)
Info: cfl dt = 0.004687232548613277                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1148e+05 | 262144 |      1 | 3.230e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.23428565299234 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3623339142931858, dt = 0.004687232548613277
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (1.9%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 328.85 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (66.8%)
Info: cfl dt = 0.004687232896501297                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7294e+05 | 262144 |      1 | 3.392e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.753346353368144 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36702114684179904, dt = 0.0006104321055693807
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (2.2%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 297.47 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (77.1%)
Info: cfl dt = 0.004687232953193606                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5988e+05 | 262144 |      1 | 3.450e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.370059611582084 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 47.222408591000004 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.3676315789473684, dt = 0.004687232953193606
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.09 us   (3.8%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 611.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 311.96 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (66.4%)
Info: cfl dt = 0.00468723330273299                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.6668e+05 | 262144 |      1 | 3.932e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.91405870448456 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37231881190056204, dt = 0.00468723330273299
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (1.3%)
   patch tree reduce : 2.00 us    (0.4%)
   gen split merge   : 1.23 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.2%)
   LB compute        : 510.60 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (78.2%)
Info: cfl dt = 0.004687233657395065                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5059e+05 | 262144 |      1 | 3.492e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.31515065580908 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.377006045203295, dt = 0.004687233657395065
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.1%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 304.59 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (65.2%)
Info: cfl dt = 0.0046872340163959325                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.2795e+05 | 262144 |      1 | 3.601e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.85744085382233 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38169327886069004, dt = 0.0046872340163959325
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.66 us    (2.3%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 306.29 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (72.2%)
Info: cfl dt = 0.004687234378236733                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9956e+05 | 262144 |      1 | 3.279e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.46721880098493 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38638051287708597, dt = 0.004687234378236733
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 23.08 us   (6.4%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 324.94 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (70.2%)
Info: cfl dt = 0.004687234740947942                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0780e+05 | 262144 |      1 | 3.245e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.99772245282191 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39106774725532273, dt = 0.004687234740947942
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.48 us    (2.0%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 341.80 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (69.9%)
Info: cfl dt = 0.004687235102568247                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8196e+05 | 262144 |      1 | 3.352e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.33405348187582 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3957549819962707, dt = 0.004687235102568247
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.47 us    (2.6%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 267.99 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (65.6%)
Info: cfl dt = 0.004687235461491809                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1430e+05 | 262144 |      1 | 3.219e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.41578472214131 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4004422170988389, dt = 0.0006104144801084566
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.59 us    (2.1%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 333.15 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (75.4%)
Info: cfl dt = 0.004687235519148094                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9363e+05 | 262144 |      1 | 3.303e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.652853371320449 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 50.484813812000006 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.4010526315789474, dt = 0.004687235519148094
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.48 us   (3.6%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 316.02 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (68.3%)
Info: cfl dt = 0.004687235869955299                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.2672e+05 | 262144 |      1 | 3.607e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.778658318513266 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40573986709809545, dt = 0.004687235869955299
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.2%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.61 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.5%)
   LB compute        : 273.60 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (68.2%)
Info: cfl dt = 0.004687236216736206                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0689e+05 | 262144 |      1 | 3.249e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.93933181078054 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41042710296805074, dt = 0.004687236216736206
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (1.9%)
   patch tree reduce : 2.22 us    (0.6%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 344.99 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (72.5%)
Info: cfl dt = 0.004687236559777988                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1114e+05 | 262144 |      1 | 3.232e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.212840439104596 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41511433918478696, dt = 0.004687236559777988
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.2%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 274.04 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (70.4%)
Info: cfl dt = 0.00468723689972781                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9693e+05 | 262144 |      1 | 3.289e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.2976116325845 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41980157574456495, dt = 0.00468723689972781
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.19 us    (2.1%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 313.81 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (70.7%)
Info: cfl dt = 0.00468723723721409                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9846e+05 | 262144 |      1 | 3.283e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.39662939809497 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4244888126442928, dt = 0.00468723723721409
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.29 us    (2.2%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 310.29 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (67.6%)
Info: cfl dt = 0.004687237572693472                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8650e+05 | 262144 |      1 | 3.333e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.626704035411294 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42917604988150687, dt = 0.004687237572693472
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.03 us    (2.0%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 321.97 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (70.9%)
Info: cfl dt = 0.004687237906360054                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9799e+05 | 262144 |      1 | 3.285e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.36597134960916 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43386328745420033, dt = 0.0006103967563260149
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.54 us    (2.2%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 321.31 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (78.9%)
Info: cfl dt = 0.004687237960637028                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0252e+05 | 262144 |      1 | 3.267e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.727136384110426 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 53.643997766000005 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.43447368421052635, dt = 0.004687237960637028
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.39 us   (3.7%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 311.01 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.1%)
Info: cfl dt = 0.0046872382884513035                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8643e+05 | 262144 |      1 | 3.333e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.62207404604958 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43916092217116337, dt = 0.0046872382884513035
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.73 us    (2.1%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.4%)
   LB compute        : 341.83 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (72.5%)
Info: cfl dt = 0.004687238614274621                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9677e+05 | 262144 |      1 | 3.290e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.287463776300314 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44384816045961467, dt = 0.004687238614274621
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.2%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 279.42 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (74.9%)
Info: cfl dt = 0.004687238937863714                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1183e+05 | 262144 |      1 | 3.229e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.257072791960695 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4485353990738893, dt = 0.004687238937863714
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.05 us    (2.0%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 324.80 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.0%)
Info: cfl dt = 0.00468723925887941                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7624e+05 | 262144 |      1 | 3.377e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.966075886529936 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.453222638011753, dt = 0.00468723925887941
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.0%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 327.08 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (68.5%)
Info: cfl dt = 0.004687239576896978                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0398e+05 | 262144 |      1 | 3.261e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.75188711820862 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4579098772706324, dt = 0.004687239576896978
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.04 us    (2.2%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 342.96 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (74.5%)
Info: cfl dt = 0.004687239891459609                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6542e+05 | 262144 |      1 | 3.425e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.26966007590256 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4625971168475294, dt = 0.004687239891459609
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.2%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 281.28 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (69.2%)
Info: cfl dt = 0.004687240202281869                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1630e+05 | 262144 |      1 | 3.211e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.54467511876454 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.467284356738989, dt = 0.0006103801031162592
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.27 us    (2.1%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 318.84 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (67.0%)
Info: cfl dt = 0.004687240252662018                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0572e+05 | 262144 |      1 | 3.254e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.753820786812985 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 56.780184117000005 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.46789473684210525, dt = 0.004687240252662018
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.21 us   (3.8%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 316.23 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (59.3%)
Info: cfl dt = 0.00468724055555408                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1008e+05 | 262144 |      1 | 3.236e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.144143737456226 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4725819770947673, dt = 0.00468724055555408
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.1%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 298.89 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (71.4%)
Info: cfl dt = 0.0046872408552748445                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4756e+05 | 262144 |      1 | 3.507e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.12021746430392 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4772692176503214, dt = 0.0046872408552748445
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (2.3%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 275.26 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (66.5%)
Info: cfl dt = 0.004687241152547965                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8601e+05 | 262144 |      1 | 3.335e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.59494103690223 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4819564585055962, dt = 0.004687241152547965
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.3%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 282.64 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (69.8%)
Info: cfl dt = 0.004687241448386931                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9641e+05 | 262144 |      1 | 3.292e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.264712419120734 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4866436996581442, dt = 0.004687241448386931
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.2%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 290.58 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (71.0%)
Info: cfl dt = 0.004687241743857922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9950e+05 | 262144 |      1 | 3.279e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.463547614132544 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49133094110653114, dt = 0.004687241743857922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.18 us    (2.2%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 302.28 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (79.6%)
Info: cfl dt = 0.004687242039900038                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8318e+05 | 262144 |      1 | 3.347e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.41280044652434 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49601818285038907, dt = 0.004687242039900038
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.00 us    (1.9%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 345.13 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.30 us    (76.9%)
Info: cfl dt = 0.004687242337221157                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8310e+05 | 262144 |      1 | 3.348e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.40750066066625 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5007054248902891, dt = 0.0006103645833951399
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.74 us    (2.5%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1.46 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 286.91 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (71.2%)
Info: cfl dt = 0.004687242386107834                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8877e+05 | 262144 |      1 | 3.323e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.611552137849014 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 59.946130168 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.5013157894736843, dt = 0.004687242386107834
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.81 us   (3.4%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 332.21 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 19.33 us   (5.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (69.1%)
Info: cfl dt = 0.004687242681793465                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9597e+05 | 262144 |      1 | 3.293e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.23618699333968 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5060030318597921, dt = 0.004687242681793465
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.04 us    (2.3%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 277.51 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.79 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (71.9%)
Info: cfl dt = 0.004687242979524213                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3618e+05 | 262144 |      1 | 3.561e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.38752047781642 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5106902745415856, dt = 0.004687242979524213
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.1%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 301.37 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (65.7%)
Info: cfl dt = 0.004687243279169577                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3601e+05 | 262144 |      1 | 3.562e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.37668139807222 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5153775175211097, dt = 0.004687243279169577
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (2.4%)
   patch tree reduce : 1.91 us    (0.7%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 268.19 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.1%)
Info: cfl dt = 0.004687243580464754                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9003e+05 | 262144 |      1 | 3.318e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.85353527963976 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5200647608002793, dt = 0.004687243580464754
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (2.4%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 279.69 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (72.1%)
Info: cfl dt = 0.004687243882941216                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8911e+05 | 262144 |      1 | 3.322e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.79477855075991 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5247520043807441, dt = 0.004687243882941216
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.0%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 312.78 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (67.8%)
Info: cfl dt = 0.0046872441859512354                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9203e+05 | 262144 |      1 | 3.310e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.982324079046066 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5294392482636853, dt = 0.0046872441859512354
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.84 us    (2.2%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 332.44 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (72.8%)
Info: cfl dt = 0.004687244488732919                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8782e+05 | 262144 |      1 | 3.327e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.71159377493084 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5341264924496365, dt = 0.0006103496556266741
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.94 us    (2.3%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 320.70 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (71.5%)
Info: cfl dt = 0.004687244538538175                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6949e+05 | 262144 |      1 | 3.407e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.44976248224191 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 63.158502003 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.5347368421052632, dt = 0.004687244538538175
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.49 us   (3.6%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 322.68 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (69.1%)
Info: cfl dt = 0.004687244836494541                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5354e+05 | 262144 |      1 | 3.479e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.50478067682861 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5394240866438014, dt = 0.004687244836494541
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.05 us    (2.2%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 291.68 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (71.4%)
Info: cfl dt = 0.0046872451328188345                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1431e+05 | 262144 |      1 | 3.219e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.41663066666418 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5441113314802959, dt = 0.0046872451328188345
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (2.0%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 323.50 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (69.3%)
Info: cfl dt = 0.004687245427098309                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8833e+05 | 262144 |      1 | 3.325e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.74418851036418 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5487985766131147, dt = 0.004687245427098309
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.05 us    (2.0%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 328.79 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 5.65 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (67.8%)
Info: cfl dt = 0.004687245719181295                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7617e+05 | 262144 |      1 | 3.377e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.961895397931784 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.553485822040213, dt = 0.004687245719181295
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.07 us    (2.0%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 324.32 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (70.3%)
Info: cfl dt = 0.004687246009040167                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0729e+05 | 262144 |      1 | 3.247e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.964795542813484 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5581730677593943, dt = 0.004687246009040167
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (2.2%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 279.19 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (75.0%)
Info: cfl dt = 0.004687246296724089                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0131e+05 | 262144 |      1 | 3.271e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.579652409514395 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5628603137684345, dt = 0.004687246296724089
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.98 us    (2.2%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 344.96 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (72.7%)
Info: cfl dt = 0.00468724658234499                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.1008e+05 | 262144 |      1 | 3.236e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.14437742960516 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5675475600651586, dt = 0.0006103346716834768
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.1%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 298.62 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (71.7%)
Info: cfl dt = 0.00468724662957542                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3552e+05 | 262144 |      1 | 3.564e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.164863042448513 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 66.338004688 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.5681578947368421, dt = 0.00468724662957542
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.12 us   (3.7%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 329.94 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (63.5%)
Info: cfl dt = 0.004687246909503848                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6805e+05 | 262144 |      1 | 3.413e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.43933993331757 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5728451413664175, dt = 0.004687246909503848
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (2.2%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 295.79 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (70.8%)
Info: cfl dt = 0.004687247187974576                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0420e+05 | 262144 |      1 | 3.260e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.76627007987855 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5775323882759213, dt = 0.004687247187974576
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (1.9%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 323.06 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (68.5%)
Info: cfl dt = 0.004687247465357312                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9419e+05 | 262144 |      1 | 3.301e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.121737233496376 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5822196354638959, dt = 0.004687247465357312
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (2.1%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 303.02 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (71.5%)
Info: cfl dt = 0.004687247742102541                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0375e+05 | 262144 |      1 | 3.262e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.7371858545014 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5869068829292532, dt = 0.004687247742102541
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.0%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 316.94 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (63.8%)
Info: cfl dt = 0.004687248018594978                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0135e+05 | 262144 |      1 | 3.271e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.58273778426418 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5915941306713557, dt = 0.004687248018594978
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.3%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 274.84 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (71.8%)
Info: cfl dt = 0.004687248295124053                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9365e+05 | 262144 |      1 | 3.303e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.08675426189953 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5962813786899507, dt = 0.004687248295124053
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.0%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 312.63 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (69.0%)
Info: cfl dt = 0.004687248571882758                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9697e+05 | 262144 |      1 | 3.289e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.30069745195435 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6009686269850747, dt = 0.0006103203833464077
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.54 us    (2.6%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.43 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.5%)
   LB compute        : 270.99 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (75.4%)
Info: cfl dt = 0.0046872486180665205                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9652e+05 | 262144 |      1 | 3.291e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.675991254335981 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 69.677462731 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.6015789473684211, dt = 0.0046872486180665205
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.30 us   (3.6%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 312.91 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (69.2%)
Info: cfl dt = 0.004687248891714632                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.2060e+05 | 262144 |      1 | 3.195e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.82172353940328 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6062661959864877, dt = 0.004687248891714632
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (1.9%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 1.24 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.4%)
   LB compute        : 346.28 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (65.4%)
Info: cfl dt = 0.004687249166022905                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9790e+05 | 262144 |      1 | 3.285e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.36040145675542 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6109534448782024, dt = 0.004687249166022905
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.19 us    (2.3%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 293.79 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (69.3%)
Info: cfl dt = 0.004687249441177356                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8996e+05 | 262144 |      1 | 3.318e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.84909989453907 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6156406940442253, dt = 0.004687249441177356
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (1.9%)
   patch tree reduce : 2.26 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 336.75 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (71.5%)
Info: cfl dt = 0.004687249717357094                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.2851e+05 | 262144 |      1 | 3.598e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.89406737616347 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6203279434854027, dt = 0.004687249717357094
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.2%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 273.72 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (66.1%)
Info: cfl dt = 0.004687249994582407                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.2617e+05 | 262144 |      1 | 3.610e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.7431741321211 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6250151932027598, dt = 0.004687249994582407
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.1%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 289.94 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (53.9%)
Info: cfl dt = 0.0046872502726880375                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5426e+05 | 262144 |      1 | 3.476e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.55151323154881 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6297024431973421, dt = 0.0046872502726880375
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 275.38 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (68.8%)
Info: cfl dt = 0.0046872505513555615                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0452e+05 | 262144 |      1 | 3.258e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.786390787589916 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6343896934700302, dt = 0.0006103065299698507
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (2.0%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 314.68 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (57.5%)
Info: cfl dt = 0.004687250597882413                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9702e+05 | 262144 |      1 | 3.289e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.6800763400114525 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 72.88107836200001 (s)                                    [Godunov][rank=0]

Reflective boundary conditions#

221 def run_case_reflective():
222     def set_bc_func(cfg):
223         cfg.set_boundary_condition("x", "reflective")
224         cfg.set_boundary_condition("y", "reflective")
225         cfg.set_boundary_condition("z", "reflective")
226
227     return run_case(set_bc_func, "reflective")
228
229
230 ani_reflective = run_case_reflective()
231 plt.show()
Info: pushing data in scheduler, N = 32768                            [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  18.45 ms                            [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (51.0%)
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     : 892.00 ns  (0.1%)
   patch tree reduce : 1.77 us    (0.2%)
   gen split merge   : 681.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.1%)
   LB compute        : 543.60 us  (76.4%)
   LB move op cnt    : 0
   LB apply          : 12.82 us   (1.8%)
Info: patch count stable after 1 runs npatch = 1                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: time since start : 84.744188374 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.87 us   (3.8%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 641.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 315.01 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (69.6%)
Info: cfl dt = 0.004687031767311921                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 4.8271e+05 | 262144 |      1 | 5.431e-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.004687031767311921
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.30 us    (2.0%)
   patch tree reduce : 2.56 us    (0.7%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.3%)
   LB compute        : 349.31 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (71.0%)
Info: cfl dt = 0.00468703492268262                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.2734e+05 | 262144 |      1 | 3.604e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.81631115684053 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004687031767311921, dt = 0.00468703492268262
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (2.1%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 312.99 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (71.7%)
Info: cfl dt = 0.004687039583988074                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3567e+05 | 262144 |      1 | 3.563e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.352790505480485 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009374066689994541, dt = 0.004687039583988074
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.13 us    (2.4%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 271.04 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (75.8%)
Info: cfl dt = 0.004687045796397419                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6585e+05 | 262144 |      1 | 3.423e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.294991206610185 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014061106273982615, dt = 0.004687045796397419
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.58 us    (2.1%)
   patch tree reduce : 2.30 us    (0.6%)
   gen split merge   : 1.21 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 344.65 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (76.7%)
Info: cfl dt = 0.004687053552588433                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7331e+05 | 262144 |      1 | 3.390e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.77532667144844 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018748152070380032, dt = 0.004687053552588433
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.64 us    (2.5%)
   patch tree reduce : 2.43 us    (0.8%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 284.80 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (71.1%)
Info: cfl dt = 0.004687062799631708                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6928e+05 | 262144 |      1 | 3.408e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.51627481721621 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023435205622968466, dt = 0.004687062799631708
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.32 us    (2.3%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 288.24 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (73.1%)
Info: cfl dt = 0.004687073438769337                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.2200e+05 | 262144 |      1 | 3.631e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.47328463995688 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028122268422600172, dt = 0.004687073438769337
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.17 us    (2.5%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1.64 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 302.44 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (73.5%)
Info: cfl dt = 0.004687084324050356                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3819e+05 | 262144 |      1 | 3.551e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.51547744461167 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03280934186136951, dt = 0.0006117107702094393
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.71 us    (2.6%)
   patch tree reduce : 2.43 us    (0.8%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 270.61 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (68.5%)
Info: cfl dt = 0.0046870856989237805                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.2827e+05 | 262144 |      1 | 3.600e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.117858176358077 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 88.654861041 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.03342105263157895, dt = 0.0046870856989237805
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.61 us   (3.3%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 358.71 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (71.9%)
Info: cfl dt = 0.0046870967535173926                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7383e+05 | 262144 |      1 | 3.388e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.80920404470313 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03810813833050273, dt = 0.0046870967535173926
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (2.4%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 272.92 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.74 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (69.1%)
Info: cfl dt = 0.0046871087318162774                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7600e+05 | 262144 |      1 | 3.378e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.94887581401577 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.042795235084020125, dt = 0.0046871087318162774
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.40 us    (2.3%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 293.18 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (74.2%)
Info: cfl dt = 0.004687121456469848                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8408e+05 | 262144 |      1 | 3.343e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.4691630703933 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0474823438158364, dt = 0.004687121456469848
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.21 us    (2.4%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 278.29 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (71.4%)
Info: cfl dt = 0.0046871347260923416                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8070e+05 | 262144 |      1 | 3.358e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.25201714945011 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05216946527230625, dt = 0.0046871347260923416
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (2.4%)
   patch tree reduce : 2.73 us    (0.9%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 277.88 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (70.8%)
Info: cfl dt = 0.004687147322193695                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8009e+05 | 262144 |      1 | 3.360e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.21305613506495 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.056856599998398594, dt = 0.004687147322193695
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.30 us    (1.9%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.3%)
   LB compute        : 354.01 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (75.4%)
Info: cfl dt = 0.004687158862014885                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6935e+05 | 262144 |      1 | 3.407e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.52194377779411 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06154374732059229, dt = 0.004687158862014885
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.70 us    (2.2%)
   patch tree reduce : 2.21 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.4%)
   LB compute        : 320.92 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 5.21 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (70.7%)
Info: cfl dt = 0.004687170703487903                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.1585e+05 | 262144 |      1 | 3.662e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.07821191940008 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06623090618260717, dt = 0.0006111990805507256
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (2.1%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 312.22 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (72.3%)
Info: cfl dt = 0.0046871722738337585                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6309e+05 | 262144 |      1 | 3.435e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.405022432116394 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 91.926801845 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.0668421052631579, dt = 0.0046871722738337585
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.32 us   (3.6%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.4%)
   LB compute        : 316.40 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (69.2%)
Info: cfl dt = 0.004687184264637751                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7806e+05 | 262144 |      1 | 3.369e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.082482893006635 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07152927753699166, dt = 0.004687184264637751
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.12 us    (2.0%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 327.29 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.0%)
Info: cfl dt = 0.004687194877882526                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4047e+05 | 262144 |      1 | 3.540e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.66301372127392 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07621646180162941, dt = 0.004687194877882526
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (2.1%)
   patch tree reduce : 2.37 us    (0.7%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 322.77 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (70.4%)
Info: cfl dt = 0.00468720521089136                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7869e+05 | 262144 |      1 | 3.366e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.12360159081693 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08090365667951194, dt = 0.00468720521089136
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.36 us    (2.3%)
   patch tree reduce : 2.72 us    (0.8%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 303.49 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (70.8%)
Info: cfl dt = 0.004687215596431434                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.2240e+05 | 262144 |      1 | 3.629e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.49983641833033 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0855908618904033, dt = 0.004687215596431434
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.2%)
   patch tree reduce : 2.41 us    (0.8%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 283.84 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (74.0%)
Info: cfl dt = 0.004687224972613222                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8322e+05 | 262144 |      1 | 3.347e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.41521983904735 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09027807748683474, dt = 0.004687224972613222
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.64 us    (2.4%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 290.24 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (74.9%)
Info: cfl dt = 0.004687234139899544                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.9511e+05 | 262144 |      1 | 3.771e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.74347571063 (tsim/hr)                               [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09496530245944795, dt = 0.004687234139899544
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (2.2%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 295.01 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (66.5%)
Info: cfl dt = 0.004687243482155108                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7823e+05 | 262144 |      1 | 3.368e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.09398551728303 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0996525365993475, dt = 0.0006106212953893436
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (1.9%)
   patch tree reduce : 2.23 us    (0.6%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 348.56 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (71.2%)
Info: cfl dt = 0.004687244709469211                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7903e+05 | 262144 |      1 | 3.365e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.5326454294911445 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 95.20585437800001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.10026315789473685, dt = 0.004687244709469211
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.17 us   (3.7%)
   patch tree reduce : 2.30 us    (0.6%)
   gen split merge   : 641.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 328.89 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (71.0%)
Info: cfl dt = 0.00468725401629642                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5450e+05 | 262144 |      1 | 3.474e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.56691799313811 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10495040260420606, dt = 0.00468725401629642
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.35 us    (2.0%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 342.99 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (74.9%)
Info: cfl dt = 0.004687263151480304                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4770e+05 | 262144 |      1 | 3.506e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.129445306392256 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10963765662050248, dt = 0.004687263151480304
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (1.9%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 340.24 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (75.4%)
Info: cfl dt = 0.004687272009962846                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.9842e+05 | 262144 |      1 | 3.753e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.957157874031424 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11432491977198278, dt = 0.004687272009962846
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.3%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 264.48 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (62.6%)
Info: cfl dt = 0.004687277562290804                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7787e+05 | 262144 |      1 | 3.370e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.07113722020095 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11901219178194562, dt = 0.004687277562290804
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.19 us    (1.9%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 346.34 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (77.0%)
Info: cfl dt = 0.004687278885336313                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7727e+05 | 262144 |      1 | 3.373e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.03306853315887 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12369946934423642, dt = 0.004687278885336313
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.24 us    (2.2%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 302.72 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (71.5%)
Info: cfl dt = 0.004687278653859442                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6844e+05 | 262144 |      1 | 3.411e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.464563962903355 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12838674822957274, dt = 0.004687278653859442
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.2%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 284.87 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (71.7%)
Info: cfl dt = 0.004687277538147369                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8312e+05 | 262144 |      1 | 3.347e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.40943627323943 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13307402688343217, dt = 0.0006101836428836216
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.0%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 312.57 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (72.1%)
Info: cfl dt = 0.004687277315053551                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7585e+05 | 262144 |      1 | 3.379e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.501297916026586 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 98.753573977 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.1336842105263158, dt = 0.004687277315053551
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.44 us   (3.8%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 323.98 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 16.50 us   (95.0%)
Info: cfl dt = 0.00468727536007883                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.7658e+05 | 262144 |      1 | 3.875e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.551623824895636 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13837148784136935, dt = 0.00468727536007883
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (2.1%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 316.66 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (72.7%)
Info: cfl dt = 0.004687273042053087                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.2102e+05 | 262144 |      1 | 3.636e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.41226222239148 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14305876320144817, dt = 0.004687273042053087
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.32 us    (2.3%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 289.80 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (71.9%)
Info: cfl dt = 0.004687270439792861                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.6672e+05 | 262144 |      1 | 3.932e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.916381070643375 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14774603624350124, dt = 0.004687270439792861
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (1.9%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 335.32 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 6.82 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (74.7%)
Info: cfl dt = 0.004687267576423972                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7746e+05 | 262144 |      1 | 3.372e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.04491445795844 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1524333066832941, dt = 0.004687267576423972
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.51 us    (1.8%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 385.84 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (68.9%)
Info: cfl dt = 0.004687264538808771                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7331e+05 | 262144 |      1 | 3.390e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.77780042419839 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15712057425971807, dt = 0.004687264538808771
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.35 us    (2.2%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1.49 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 305.49 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (70.4%)
Info: cfl dt = 0.004687261426463146                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6664e+05 | 262144 |      1 | 3.419e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.34863472596563 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16180783879852684, dt = 0.004687261426463146
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.03 us    (2.0%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 333.90 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (76.1%)
Info: cfl dt = 0.0046872583732600025                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.8680e+05 | 262144 |      1 | 3.817e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.209029566280414 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16649510022498998, dt = 0.0006101629329047786
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.68 us    (2.1%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 351.00 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (73.6%)
Info: cfl dt = 0.0046872579832641014                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7444e+05 | 262144 |      1 | 3.385e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.489293676614648 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 102.16216584300001 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.16710526315789476, dt = 0.0046872579832641014
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.51 us   (3.6%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 590.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 318.06 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (67.8%)
Info: cfl dt = 0.004687255097017623                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6466e+05 | 262144 |      1 | 3.428e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.2212489776241 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17179252114115887, dt = 0.004687255097017623
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.00 us    (2.1%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 307.89 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (67.9%)
Info: cfl dt = 0.004687252393857864                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7665e+05 | 262144 |      1 | 3.375e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.99264795411616 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17647977623817648, dt = 0.004687252393857864
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.2%)
   patch tree reduce : 2.44 us    (0.8%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 276.20 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (67.3%)
Info: cfl dt = 0.004687249890605385                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7705e+05 | 262144 |      1 | 3.374e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.018482376888805 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18116702863203435, dt = 0.004687249890605385
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.18 us    (1.9%)
   patch tree reduce : 2.45 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 356.28 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.4%)
Info: cfl dt = 0.004687247551514999                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.1175e+05 | 262144 |      1 | 3.683e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.814897379333786 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18585427852263972, dt = 0.004687247551514999
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (1.7%)
   patch tree reduce : 2.23 us    (0.6%)
   gen split merge   : 1.24 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.3%)
   LB compute        : 376.80 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (72.5%)
Info: cfl dt = 0.004687245049989437                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7604e+05 | 262144 |      1 | 3.378e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.95341333687352 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19054152607415473, dt = 0.004687245049989437
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (1.9%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 344.43 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.27 us    (79.1%)
Info: cfl dt = 0.0046872428002278175                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4337e+05 | 262144 |      1 | 3.526e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.85049874405663 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19522877112414416, dt = 0.0046872428002278175
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (1.9%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 352.17 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (72.4%)
Info: cfl dt = 0.004687240804705419                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6551e+05 | 262144 |      1 | 3.424e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.275574213916535 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19991601392437197, dt = 0.00061030186510172
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (2.1%)
   patch tree reduce : 2.45 us    (0.7%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 310.71 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (65.8%)
Info: cfl dt = 0.004687240571731558                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5878e+05 | 262144 |      1 | 3.455e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.3595396755114395 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 105.43673698100001 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.2005263157894737, dt = 0.004687240571731558
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.14 us   (3.0%)
   patch tree reduce : 2.46 us    (0.6%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 378.97 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (69.4%)
Info: cfl dt = 0.0046872388575527465                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8684e+05 | 262144 |      1 | 3.332e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.64875341741508 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20521355636120525, dt = 0.0046872388575527465
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.65 us    (2.1%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 334.30 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 us    (75.9%)
Info: cfl dt = 0.004687237402627058                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7603e+05 | 262144 |      1 | 3.378e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.95275726663617 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20990079521875799, dt = 0.004687237402627058
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (2.1%)
   patch tree reduce : 2.45 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 312.40 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (75.7%)
Info: cfl dt = 0.0046872362081496295                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7838e+05 | 262144 |      1 | 3.368e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.10380545916757 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21458803262138504, dt = 0.0046872362081496295
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.03 us    (1.9%)
   patch tree reduce : 2.37 us    (0.6%)
   gen split merge   : 1.48 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.4%)
   LB compute        : 350.87 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (75.2%)
Info: cfl dt = 0.004687235271899179                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6275e+05 | 262144 |      1 | 3.437e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.09772634775349 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21927526882953466, dt = 0.004687235271899179
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.81 us    (2.3%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 322.17 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (74.8%)
Info: cfl dt = 0.004687234588939458                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.1072e+05 | 262144 |      1 | 3.688e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.748417170139035 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22396250410143384, dt = 0.004687234588939458
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.32 us    (2.4%)
   patch tree reduce : 2.47 us    (0.8%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 281.42 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (67.2%)
Info: cfl dt = 0.004687234153226078                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7727e+05 | 262144 |      1 | 3.373e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.032110781884455 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2286497386903733, dt = 0.004687234153226078
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.27 us    (2.2%)
   patch tree reduce : 2.45 us    (0.7%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 305.68 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (69.8%)
Info: cfl dt = 0.0046872339555697334                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7040e+05 | 262144 |      1 | 3.403e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.58986007911246 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2333369728435994, dt = 0.0006103955774532377
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.05 us    (2.1%)
   patch tree reduce : 2.44 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 306.32 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (76.8%)
Info: cfl dt = 0.004687233951934075                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7621e+05 | 262144 |      1 | 3.377e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.5066140998323885 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 108.677700067 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.23394736842105263, dt = 0.004687233951934075
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.81 us   (3.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.03 us    (0.3%)
   LB compute        : 317.66 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (68.0%)
Info: cfl dt = 0.004687234003255571                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8045e+05 | 262144 |      1 | 3.359e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.23682051584287 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2386346023729867, dt = 0.004687234003255571
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.1%)
   patch tree reduce : 2.59 us    (0.8%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 295.00 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (74.3%)
Info: cfl dt = 0.004687234265528239                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.8603e+05 | 262144 |      1 | 3.821e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.15927235384967 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24332183637624227, dt = 0.004687234265528239
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.43 us    (2.3%)
   patch tree reduce : 2.91 us    (0.9%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.63 us    (0.5%)
   LB compute        : 292.72 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (71.8%)
Info: cfl dt = 0.004687234832706693                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7949e+05 | 262144 |      1 | 3.363e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.17549843784087 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24800907064177052, dt = 0.004687234832706693
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.0%)
   patch tree reduce : 2.39 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 325.82 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (70.7%)
Info: cfl dt = 0.004687235687704397                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5792e+05 | 262144 |      1 | 3.459e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.78692492691744 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2526963054744772, dt = 0.004687235687704397
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.50 us    (2.0%)
   patch tree reduce : 2.39 us    (0.6%)
   gen split merge   : 1.28 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.66 us    (0.4%)
   LB compute        : 354.66 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (71.5%)
Info: cfl dt = 0.004687236623163013                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7427e+05 | 262144 |      1 | 3.386e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.83928950435317 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2573835411621816, dt = 0.004687236623163013
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.26 us    (1.9%)
   patch tree reduce : 2.74 us    (0.7%)
   gen split merge   : 1.43 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 357.31 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (73.6%)
Info: cfl dt = 0.0046872376461729245                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3501e+05 | 262144 |      1 | 3.567e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.31200581746582 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2620707777853446, dt = 0.0046872376461729245
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.40 us    (2.0%)
   patch tree reduce : 2.44 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 348.55 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (73.4%)
Info: cfl dt = 0.004687238807347736                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7634e+05 | 262144 |      1 | 3.377e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.972721736623804 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2667580154315175, dt = 0.0006104056211140851
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.33 us    (2.0%)
   patch tree reduce : 2.55 us    (0.7%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 335.39 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (77.9%)
Info: cfl dt = 0.0046872389650835225                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8138e+05 | 262144 |      1 | 3.355e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.550043877177812 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 111.951022879 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.2673684210526316, dt = 0.0046872389650835225
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.18 us   (3.6%)
   patch tree reduce : 2.53 us    (0.7%)
   gen split merge   : 600.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 335.41 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (67.2%)
Info: cfl dt = 0.0046872403041024425                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7782e+05 | 262144 |      1 | 3.370e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.067715718450344 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2720556600177151, dt = 0.0046872403041024425
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.45 us    (2.4%)
   patch tree reduce : 2.54 us    (0.8%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 290.80 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (71.7%)
Info: cfl dt = 0.004687241856479034                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7167e+05 | 262144 |      1 | 3.397e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.672072111091545 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27674290032181753, dt = 0.004687241856479034
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (2.2%)
   patch tree reduce : 2.60 us    (0.8%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 283.27 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (73.6%)
Info: cfl dt = 0.004687243623864012                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7816e+05 | 262144 |      1 | 3.369e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.08948071946004 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28143014217829654, dt = 0.004687243623864012
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.04 us    (2.2%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1.50 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 298.11 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.81 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (59.7%)
Info: cfl dt = 0.0046872455820328686                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6695e+05 | 262144 |      1 | 3.418e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.368066028478765 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28611738580216056, dt = 0.0046872455820328686
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.06 us    (1.9%)
   patch tree reduce : 2.21 us    (0.6%)
   gen split merge   : 1.28 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 345.75 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (69.0%)
Info: cfl dt = 0.004687247703464963                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7321e+05 | 262144 |      1 | 3.390e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.771296943243 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29080463138419343, dt = 0.004687247703464963
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.17 us    (2.3%)
   patch tree reduce : 2.49 us    (0.8%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 282.07 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (74.9%)
Info: cfl dt = 0.004687249783434021                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.0973e+05 | 262144 |      1 | 3.694e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.68482476190533 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2954918790876584, dt = 0.004687249783434021
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.0%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 313.86 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (68.7%)
Info: cfl dt = 0.004687251720626629                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.2858e+05 | 262144 |      1 | 3.598e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.898499795636624 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30017912887109244, dt = 0.0006103448131181133
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.84 us    (2.6%)
   patch tree reduce : 2.48 us    (0.8%)
   gen split merge   : 1.38 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 282.07 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (70.6%)
Info: cfl dt = 0.004687252008098234                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8006e+05 | 262144 |      1 | 3.361e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.538326093610088 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 115.21088737800001 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.30078947368421055, dt = 0.004687252008098234
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.64 us   (3.7%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 313.27 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (71.0%)
Info: cfl dt = 0.0046872540735967095                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9174e+05 | 262144 |      1 | 3.311e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.964018819374694 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30547672569230877, dt = 0.0046872540735967095
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.51 us    (2.0%)
   patch tree reduce : 2.32 us    (0.6%)
   gen split merge   : 1.24 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 353.06 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (76.4%)
Info: cfl dt = 0.004687256179988798                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7567e+05 | 262144 |      1 | 3.380e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.929488510154854 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3101639797659055, dt = 0.004687256179988798
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (2.0%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 1.67 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 327.41 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (73.9%)
Info: cfl dt = 0.004687258340176443                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8120e+05 | 262144 |      1 | 3.356e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.28567593324176 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31485123594589426, dt = 0.004687258340176443
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 24.43 us   (6.8%)
   patch tree reduce : 2.41 us    (0.7%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 319.09 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (71.3%)
Info: cfl dt = 0.004687260558129958                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6202e+05 | 262144 |      1 | 3.440e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.05118468434865 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31953849428607073, dt = 0.004687260558129958
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.27 us    (2.3%)
   patch tree reduce : 2.45 us    (0.8%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.5%)
   LB compute        : 298.65 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (64.6%)
Info: cfl dt = 0.004687262823120487                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4092e+05 | 262144 |      1 | 3.538e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.69266681180821 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3242257548442007, dt = 0.004687262823120487
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.33 us    (2.5%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 268.14 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (63.9%)
Info: cfl dt = 0.004687265109719916                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.0747e+05 | 262144 |      1 | 3.705e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.53991526106623 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3289130176673212, dt = 0.004687265109719916
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.68 us    (2.6%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1.34 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 270.34 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.80 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (71.2%)
Info: cfl dt = 0.004687267381699241                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.2624e+05 | 262144 |      1 | 3.610e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.748088607555694 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33360028277704107, dt = 0.0006102435387484451
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.08 us    (2.3%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 290.24 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.86 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 us    (76.9%)
Info: cfl dt = 0.0046872676887569345                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.1839e+05 | 262144 |      1 | 3.649e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.02040507720888 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 118.519298687 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.3342105263157895, dt = 0.0046872676887569345
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.39 us   (3.4%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 591.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 337.73 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (70.4%)
Info: cfl dt = 0.004687269882584073                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8216e+05 | 262144 |      1 | 3.352e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.347245316831774 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33889779400454645, dt = 0.004687269882584073
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.56 us    (2.4%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 293.38 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (68.2%)
Info: cfl dt = 0.004687271959592287                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7502e+05 | 262144 |      1 | 3.382e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.887747433948846 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3435850638871305, dt = 0.004687271959592287
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (2.2%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 289.82 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (75.4%)
Info: cfl dt = 0.004687273235728517                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8446e+05 | 262144 |      1 | 3.342e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.495658842440974 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3482723358467228, dt = 0.004687273235728517
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.76 us    (2.7%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 267.40 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (72.8%)
Info: cfl dt = 0.004687273987871884                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.8916e+05 | 262144 |      1 | 3.804e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.36089186185124 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35295960908245133, dt = 0.004687273987871884
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (2.1%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 313.47 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (69.2%)
Info: cfl dt = 0.004687274442042877                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6331e+05 | 262144 |      1 | 3.434e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.1342474834861 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3576468830703232, dt = 0.004687274442042877
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.48 us    (2.1%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 1.53 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.4%)
   LB compute        : 336.76 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (71.2%)
Info: cfl dt = 0.0046872747079609155                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7512e+05 | 262144 |      1 | 3.382e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.89463296223598 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3623341575123661, dt = 0.0046872747079609155
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.24 us    (2.5%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.70 us    (0.6%)
   LB compute        : 267.75 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (71.9%)
Info: cfl dt = 0.004687274697242561                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.2260e+05 | 262144 |      1 | 3.628e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.513400439889054 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.367021432220327, dt = 0.0006101467270414052
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.11 us    (2.6%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 284.90 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (71.0%)
Info: cfl dt = 0.004687274684117941                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.1073e+05 | 262144 |      1 | 3.688e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.955273672228828 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 122.01496510700001 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.3676315789473684, dt = 0.004687274684117941
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.42 us   (3.5%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 591.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 329.45 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (70.8%)
Info: cfl dt = 0.004687273920979769                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6893e+05 | 262144 |      1 | 3.409e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.49594082484953 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37231885363148637, dt = 0.004687273920979769
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.46 us    (2.4%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 291.84 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (69.0%)
Info: cfl dt = 0.004687271911624214                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4637e+05 | 262144 |      1 | 3.512e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.043573507430246 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37700612755246615, dt = 0.004687271911624214
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.06 us    (2.1%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 315.13 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (68.1%)
Info: cfl dt = 0.0046872695373915835                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7497e+05 | 262144 |      1 | 3.383e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.88479593566136 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38169339946409037, dt = 0.0046872695373915835
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.40 us    (2.0%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 344.67 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (75.6%)
Info: cfl dt = 0.004687266859495297                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7164e+05 | 262144 |      1 | 3.397e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.67065758927254 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38638066900148194, dt = 0.004687266859495297
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.87 us    (1.9%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 1.26 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 331.40 us  (81.2%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (75.2%)
Info: cfl dt = 0.004687263997351638                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7957e+05 | 262144 |      1 | 3.363e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.180477582580465 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3910679358609772, dt = 0.004687263997351638
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (2.3%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 286.14 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (64.1%)
Info: cfl dt = 0.004687260829759408                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6458e+05 | 262144 |      1 | 3.429e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.2158962908505 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39575519985832885, dt = 0.004687260829759408
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.58 us    (2.2%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 324.53 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (74.3%)
Info: cfl dt = 0.004687257654503339                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3537e+05 | 262144 |      1 | 3.565e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.3356617826821 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40044246068808825, dt = 0.0006101708908591297
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (1.9%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 322.41 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (75.3%)
Info: cfl dt = 0.004687257242896915                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.8782e+05 | 262144 |      1 | 3.811e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.763552055775901 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 125.31561924200001 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.4010526315789474, dt = 0.004687257242896915
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.80 us   (3.5%)
   patch tree reduce : 2.23 us    (0.6%)
   gen split merge   : 551.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 320.94 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (72.1%)
Info: cfl dt = 0.004687254145496255                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.5771e+05 | 262144 |      1 | 3.986e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.33661099257975 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4057398888218443, dt = 0.004687254145496255
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.20 us    (2.1%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 317.69 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (69.1%)
Info: cfl dt = 0.004687251160620459                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7493e+05 | 262144 |      1 | 3.383e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.88197077217997 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41042714296734056, dt = 0.004687251160620459
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.11 us    (2.0%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 325.99 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (64.2%)
Info: cfl dt = 0.00468724832261416                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4093e+05 | 262144 |      1 | 3.538e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.693293851101764 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41511439412796103, dt = 0.00468724832261416
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.94 us    (2.5%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 297.26 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (71.6%)
Info: cfl dt = 0.004687245663721292                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7556e+05 | 262144 |      1 | 3.380e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.9221919351233 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41980164245057516, dt = 0.004687245663721292
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.08 us    (1.7%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.3%)
   LB compute        : 395.58 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (75.3%)
Info: cfl dt = 0.004687243050476522                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7620e+05 | 262144 |      1 | 3.377e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.963731289718915 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42448888811429647, dt = 0.004687243050476522
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (1.9%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 341.78 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (75.8%)
Info: cfl dt = 0.004687240359628566                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3198e+05 | 262144 |      1 | 3.581e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.11743501540241 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.429176131164773, dt = 0.004687240359628566
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.42 us    (2.1%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 326.63 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (68.6%)
Info: cfl dt = 0.004687237800149439                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7053e+05 | 262144 |      1 | 3.402e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.598820883166276 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4338633715244016, dt = 0.0006103126861247699
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.07 us    (1.9%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 342.05 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (71.8%)
Info: cfl dt = 0.0046872374811259                                        [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8365e+05 | 262144 |      1 | 3.345e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.5680485496284575 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 128.62431291800002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.43447368421052635, dt = 0.0046872374811259
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.07 us   (2.6%)
   patch tree reduce : 1.50 us    (0.3%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 438.84 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (72.7%)
Info: cfl dt = 0.004687235103275107                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6624e+05 | 262144 |      1 | 3.421e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.32261533860717 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4391609216916522, dt = 0.004687235103275107
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.57 us    (2.3%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 307.75 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (71.6%)
Info: cfl dt = 0.00468723293138606                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.4242e+05 | 262144 |      1 | 4.081e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.35235537381934 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44384815679492734, dt = 0.00468723293138606
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (1.8%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 368.55 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (72.7%)
Info: cfl dt = 0.004687230999651152                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8017e+05 | 262144 |      1 | 3.360e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.21873866253649 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4485353897263134, dt = 0.004687230999651152
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (2.0%)
   patch tree reduce : 2.38 us    (0.7%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 327.55 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (67.1%)
Info: cfl dt = 0.004687229345943311                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7925e+05 | 262144 |      1 | 3.364e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.15976780233872 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45322262072596453, dt = 0.004687229345943311
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.75 us    (2.2%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 322.53 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 5.15 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (72.5%)
Info: cfl dt = 0.004687227997326022                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7784e+05 | 262144 |      1 | 3.370e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.06924537446485 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4579098500719078, dt = 0.004687227997326022
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.27 us    (2.4%)
   patch tree reduce : 2.45 us    (0.8%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 284.21 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (64.6%)
Info: cfl dt = 0.004687226985147303                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7589e+05 | 262144 |      1 | 3.379e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.94375604302329 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46259707806923384, dt = 0.004687226985147303
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.23 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 287.63 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (69.2%)
Info: cfl dt = 0.004687226321255225                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8007e+05 | 262144 |      1 | 3.361e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.21235945926388 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4672843050543811, dt = 0.0006104317877241305
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.11 us    (2.4%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 280.26 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (72.4%)
Info: cfl dt = 0.004687226277731649                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8335e+05 | 262144 |      1 | 3.346e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.566837989030045 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 131.89902793000002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.46789473684210525, dt = 0.004687226277731649
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.09 us   (3.3%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 600.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 343.42 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (70.4%)
Info: cfl dt = 0.0046872260246216164                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8142e+05 | 262144 |      1 | 3.355e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.29933848448491 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4725819631198369, dt = 0.0046872260246216164
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.96 us    (1.9%)
   patch tree reduce : 2.20 us    (0.5%)
   gen split merge   : 1.27 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.3%)
   LB compute        : 386.26 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (71.8%)
Info: cfl dt = 0.0046872260804308305                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8235e+05 | 262144 |      1 | 3.351e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.35932978763376 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47726918914445854, dt = 0.0046872260804308305
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.27 us    (2.1%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 324.71 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (70.5%)
Info: cfl dt = 0.004687225798335251                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7772e+05 | 262144 |      1 | 3.371e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.06153415937543 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48195641522488936, dt = 0.004687225798335251
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.13 us    (2.4%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 315.40 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (71.5%)
Info: cfl dt = 0.004687225288863646                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7480e+05 | 262144 |      1 | 3.383e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.87348867730032 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4866436410232246, dt = 0.004687225288863646
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.99 us    (2.7%)
   patch tree reduce : 2.47 us    (0.8%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 275.64 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (64.3%)
Info: cfl dt = 0.004687225044433656                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7880e+05 | 262144 |      1 | 3.366e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.131077768384905 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4913308663120883, dt = 0.004687225044433656
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.20 us    (2.2%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 310.93 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (73.7%)
Info: cfl dt = 0.004687225036305156                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6383e+05 | 262144 |      1 | 3.432e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.167239803231276 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4960180913565219, dt = 0.004687225036305156
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.52 us    (2.5%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 280.11 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (72.8%)
Info: cfl dt = 0.004687225236215675                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7149e+05 | 262144 |      1 | 3.398e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.66038991587369 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5007053163928271, dt = 0.0006104730808571546
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.40 us    (1.6%)
   patch tree reduce : 2.33 us    (0.5%)
   gen split merge   : 991.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 428.08 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (71.8%)
Info: cfl dt = 0.004687225287887822                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6486e+05 | 262144 |      1 | 3.427e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.412299684077046 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 135.114186743 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.5013157894736843, dt = 0.004687225287887822
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.82 us   (3.7%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 317.53 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.3%)
Info: cfl dt = 0.0046872256875800855                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7926e+05 | 262144 |      1 | 3.364e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.16028163340652 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5060030147615721, dt = 0.0046872256875800855
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.75 us    (2.3%)
   patch tree reduce : 2.44 us    (0.7%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 310.33 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (70.3%)
Info: cfl dt = 0.0046872262484317015                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.2737e+05 | 262144 |      1 | 3.604e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.8201604734101 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5106902404491521, dt = 0.0046872262484317015
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.18 us    (2.2%)
   patch tree reduce : 2.48 us    (0.8%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 302.27 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (74.6%)
Info: cfl dt = 0.0046872269554267655                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7509e+05 | 262144 |      1 | 3.382e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.89202467520739 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5153774666975838, dt = 0.0046872269554267655
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.69 us    (2.5%)
   patch tree reduce : 2.67 us    (0.9%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 281.92 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (71.2%)
Info: cfl dt = 0.004687227765702979                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7865e+05 | 262144 |      1 | 3.367e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.12140211601498 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5200646936530106, dt = 0.004687227765702979
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.32 us    (2.2%)
   patch tree reduce : 2.49 us    (0.7%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 311.66 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.4%)
Info: cfl dt = 0.004687228666571629                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7883e+05 | 262144 |      1 | 3.366e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.13272561473005 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5247519214187135, dt = 0.004687228666571629
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.60 us    (2.3%)
   patch tree reduce : 2.53 us    (0.8%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 309.71 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (71.5%)
Info: cfl dt = 0.004687229662310289                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7139e+05 | 262144 |      1 | 3.398e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.65379137149259 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5294391500852852, dt = 0.004687229662310289
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.53 us    (2.5%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 282.16 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (68.7%)
Info: cfl dt = 0.004687230740544597                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.1000e+05 | 262144 |      1 | 3.692e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.70190696637049 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5341263797475955, dt = 0.0006104623576677071
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.24 us    (2.2%)
   patch tree reduce : 2.42 us    (0.7%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 300.20 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (69.7%)
Info: cfl dt = 0.004687230893819763                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7146e+05 | 262144 |      1 | 3.398e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.467509003419319 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 138.37948978100002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.5347368421052632, dt = 0.004687230893819763
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.30 us   (3.4%)
   patch tree reduce : 1.93 us    (0.5%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 333.96 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (68.2%)
Info: cfl dt = 0.0046872320873593545                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8490e+05 | 262144 |      1 | 3.340e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.52368816058618 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5394240729990829, dt = 0.0046872320873593545
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.29 us    (2.2%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 17.56 us   (5.3%)
   LB compute        : 290.35 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (73.8%)
Info: cfl dt = 0.00468723338604846                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.0711e+05 | 262144 |      1 | 3.707e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.51622991672043 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5441113050864422, dt = 0.00468723338604846
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.87 us    (2.5%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 1.60 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 296.20 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (57.6%)
Info: cfl dt = 0.0046872347721792565                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5953e+05 | 262144 |      1 | 3.451e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.89074437619343 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5487985384724907, dt = 0.0046872347721792565
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (2.2%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 303.78 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (68.5%)
Info: cfl dt = 0.00468723621351625                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7822e+05 | 262144 |      1 | 3.369e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.09333005962787 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.55348577324467, dt = 0.00468723621351625
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.69 us    (2.2%)
   patch tree reduce : 2.49 us    (0.7%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 330.14 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (68.5%)
Info: cfl dt = 0.004687237682171254                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7364e+05 | 262144 |      1 | 3.388e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.79871971414787 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5581730094581863, dt = 0.004687237682171254
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.05 us    (2.0%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.4%)
   LB compute        : 323.34 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (70.2%)
Info: cfl dt = 0.004687239153526117                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8006e+05 | 262144 |      1 | 3.361e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.21185128442709 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5628602471403575, dt = 0.004687239153526117
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.47 us    (2.5%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 274.39 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.97 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (67.8%)
Info: cfl dt = 0.004687240606237432                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8260e+05 | 262144 |      1 | 3.350e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.37545115240256 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5675474862938836, dt = 0.0006104084429584544
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.1%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.5%)
   LB compute        : 307.23 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (73.1%)
Info: cfl dt = 0.00468724079437596                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3598e+05 | 262144 |      1 | 3.562e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.169506441427531 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 141.80860976600002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.5681578947368421, dt = 0.00468724079437596
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.76 us   (4.1%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 580.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 311.89 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 us    (70.6%)
Info: cfl dt = 0.00468724219788657                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7477e+05 | 262144 |      1 | 3.384e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.87158829105058 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5728451355312181, dt = 0.00468724219788657
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.45 us    (2.1%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 330.56 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (68.4%)
Info: cfl dt = 0.0046872435445451995                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4896e+05 | 262144 |      1 | 3.500e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.21039750758065 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5775323777291046, dt = 0.0046872435445451995
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.49 us    (2.4%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 286.72 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (74.1%)
Info: cfl dt = 0.00468724482298513                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5209e+05 | 262144 |      1 | 3.486e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.411547743141945 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5822196212736498, dt = 0.00468724482298513
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.50 us    (2.4%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 287.58 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (68.5%)
Info: cfl dt = 0.004687246026634213                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4369e+05 | 262144 |      1 | 3.525e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.87091938833773 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5869068660966349, dt = 0.004687246026634213
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.05 us    (2.0%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 324.95 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (66.1%)
Info: cfl dt = 0.004687247152643582                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8231e+05 | 262144 |      1 | 3.351e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.356744404970534 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5915941121232691, dt = 0.004687247152643582
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.32 us    (2.4%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 279.66 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (74.2%)
Info: cfl dt = 0.004687248200677837                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7903e+05 | 262144 |      1 | 3.365e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.14571988012537 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5962813592759126, dt = 0.004687248200677837
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.1%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 303.24 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (64.2%)
Info: cfl dt = 0.004687249172737288                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6698e+05 | 262144 |      1 | 3.418e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.370303388283844 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6009686074765904, dt = 0.0006103398918306802
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.4%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 267.02 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.8%)
Info: cfl dt = 0.004687249297870255                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8300e+05 | 262144 |      1 | 3.348e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.562875493626755 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 145.059011312 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.6015789473684211, dt = 0.004687249297870255
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.65 us   (3.5%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 339.56 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 us    (76.3%)
Info: cfl dt = 0.00468725018521409                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8164e+05 | 262144 |      1 | 3.354e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.31351700467609 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6062661966662913, dt = 0.00468725018521409
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.2%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 282.47 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (74.2%)
Info: cfl dt = 0.004687251006990297                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7927e+05 | 262144 |      1 | 3.364e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.16105802985259 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6109534468515054, dt = 0.004687251006990297
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (2.1%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 314.89 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (71.7%)
Info: cfl dt = 0.004687251769234126                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3403e+05 | 262144 |      1 | 3.571e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.249440115956 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6156406978584957, dt = 0.004687251769234126
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.33 us    (2.3%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 293.07 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (73.9%)
Info: cfl dt = 0.004687252477182126                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7940e+05 | 262144 |      1 | 3.363e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.169703345901354 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6203279496277299, dt = 0.004687252477182126
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (1.9%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 339.83 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (76.0%)
Info: cfl dt = 0.004687253135359019                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7547e+05 | 262144 |      1 | 3.380e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.916921632414 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.625015202104912, dt = 0.004687253135359019
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (2.1%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 319.43 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (71.8%)
Info: cfl dt = 0.004687253747326559                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8267e+05 | 262144 |      1 | 3.349e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.38039977623317 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.629702455240271, dt = 0.004687253747326559
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.13 us    (2.1%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 311.78 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (68.5%)
Info: cfl dt = 0.0046872543157465635                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7997e+05 | 262144 |      1 | 3.361e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.20649144912083 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6343897089875976, dt = 0.0006102910124023975
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.12 us    (2.3%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 284.74 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (69.6%)
Info: cfl dt = 0.0046872543927052104                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7702e+05 | 262144 |      1 | 3.374e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.512293844903432 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 148.274681104 (s)                                        [Godunov][rank=0]

Outflow boundary conditions#

238 def run_case_outflow():
239     def set_bc_func(cfg):
240         cfg.set_boundary_condition("x", "outflow")
241         cfg.set_boundary_condition("y", "outflow")
242         cfg.set_boundary_condition("z", "outflow")
243
244     return run_case(set_bc_func, "outflow")
245
246
247 ani_outflow = run_case_outflow()
248 plt.show()
Info: pushing data in scheduler, N = 32768                            [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  36.50 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     : 6.43 us    (54.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.12 us    (0.2%)
   patch tree reduce : 2.22 us    (0.4%)
   gen split merge   : 1.08 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.2%)
   LB compute        : 551.40 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 11.99 us   (2.1%)
Info: patch count stable after 1 runs npatch = 1                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: time since start : 160.189468467 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.65 us   (3.4%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 344.53 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (71.4%)
Info: cfl dt = 0.004687031767311921                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.3183e+05 | 262144 |      1 | 4.149e-01 | 0.0% |   0.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.004687031767311921
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.08 us    (2.4%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 272.12 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (71.4%)
Info: cfl dt = 0.00468703492268262                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.8966e+05 | 262144 |      1 | 3.801e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.391323311798196 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004687031767311921, dt = 0.00468703492268262
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.55 us    (2.2%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 313.80 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.8%)
Info: cfl dt = 0.004687039583988074                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.9882e+05 | 262144 |      1 | 3.751e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.980492701461955 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009374066689994541, dt = 0.004687039583988074
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.11 us    (2.3%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.5%)
   LB compute        : 283.89 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.3%)
Info: cfl dt = 0.004687045796397419                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.1479e+05 | 262144 |      1 | 4.264e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.572034593959536 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014061106273982615, dt = 0.004687045796397419
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.04 us    (2.6%)
   patch tree reduce : 2.55 us    (0.7%)
   gen split merge   : 1.50 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.4%)
   LB compute        : 319.78 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.3%)
Info: cfl dt = 0.004687053552588433                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7075e+05 | 262144 |      1 | 3.401e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.61043381750246 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018748152070380032, dt = 0.004687053552588433
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (1.8%)
   patch tree reduce : 2.57 us    (0.7%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 352.99 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (73.3%)
Info: cfl dt = 0.004687062799631708                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.9558e+05 | 262144 |      1 | 3.769e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.7723707747254 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023435205622968466, dt = 0.004687062799631708
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.41 us    (2.2%)
   patch tree reduce : 2.49 us    (0.7%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 317.24 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (71.6%)
Info: cfl dt = 0.004687073438769337                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9242e+05 | 262144 |      1 | 3.308e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.005724414968405 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028122268422600172, dt = 0.004687073438769337
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.48 us    (2.2%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 322.17 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (79.2%)
Info: cfl dt = 0.004687084324050356                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8570e+05 | 262144 |      1 | 3.336e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.57300936446091 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03280934186136951, dt = 0.0006117107702094393
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (2.2%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 303.23 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (74.6%)
Info: cfl dt = 0.0046870856989237875                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9691e+05 | 262144 |      1 | 3.290e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.69447018158542 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 164.025721448 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.03342105263157895, dt = 0.0046870856989237875
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.75 us   (3.6%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 326.55 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (70.4%)
Info: cfl dt = 0.0046870967535173344                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.6732e+05 | 262144 |      1 | 3.928e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.95374968347132 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.038108138330502736, dt = 0.0046870967535173344
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.15 us    (1.9%)
   patch tree reduce : 2.25 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.75 us    (0.5%)
   LB compute        : 354.27 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (75.2%)
Info: cfl dt = 0.004687108731815825                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.1520e+05 | 262144 |      1 | 3.665e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.03586994891945 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04279523508402007, dt = 0.004687108731815825
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.56 us    (2.1%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 344.12 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 5.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (77.6%)
Info: cfl dt = 0.0046871214564712434                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4436e+05 | 262144 |      1 | 3.522e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.91242991121728 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.047482343815835895, dt = 0.0046871214564712434
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.1%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.47 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 278.50 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (70.4%)
Info: cfl dt = 0.004687134726100412                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8492e+05 | 262144 |      1 | 3.340e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.52358925143336 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05216946527230714, dt = 0.004687134726100412
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.20 us    (2.1%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 320.16 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (76.2%)
Info: cfl dt = 0.00468714732219676                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4344e+05 | 262144 |      1 | 3.526e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.85381669094091 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05685659999840755, dt = 0.00468714732219676
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.61 us    (2.3%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 301.07 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (71.5%)
Info: cfl dt = 0.004687158862027651                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9041e+05 | 262144 |      1 | 3.317e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.877498638840336 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06154374732060431, dt = 0.004687158862027651
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.20 us    (2.2%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 304.23 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (70.2%)
Info: cfl dt = 0.004687170703505907                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9629e+05 | 262144 |      1 | 3.292e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.25601068930255 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06623090618263196, dt = 0.0006111990805259399
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.20 us    (2.4%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 277.42 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (68.6%)
Info: cfl dt = 0.004687172273848947                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.0112e+05 | 262144 |      1 | 3.739e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.884885048559263 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 167.67514111600002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.0668421052631579, dt = 0.004687172273848947
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.93 us   (2.2%)
   patch tree reduce : 2.07 us    (0.4%)
   gen split merge   : 611.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.2%)
   LB compute        : 548.65 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (71.4%)
Info: cfl dt = 0.004687184264620545                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.5840e+05 | 262144 |      1 | 3.982e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.3801424504751 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07152927753700684, dt = 0.004687184264620545
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.34 us    (2.1%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.58 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.5%)
   LB compute        : 326.20 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 5.49 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (69.0%)
Info: cfl dt = 0.004687194877902073                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.0333e+05 | 262144 |      1 | 3.727e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.27211462346717 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07621646180162739, dt = 0.004687194877902073
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.73 us    (2.4%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 2.15 us    (0.7%)
   LB compute        : 302.07 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (67.6%)
Info: cfl dt = 0.004687205210876668                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8054e+05 | 262144 |      1 | 3.358e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.242596307079324 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08090365667952946, dt = 0.004687205210876668
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.19 us    (2.2%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 304.85 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (73.8%)
Info: cfl dt = 0.004687215596322306                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7333e+05 | 262144 |      1 | 3.390e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.778653987143365 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08559086189040613, dt = 0.004687215596322306
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.31 us    (2.4%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 283.71 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (65.7%)
Info: cfl dt = 0.004687224972607936                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8336e+05 | 262144 |      1 | 3.346e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.424136939384496 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09027807748672843, dt = 0.004687224972607936
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.1%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 304.56 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (75.2%)
Info: cfl dt = 0.004687234139813099                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9051e+05 | 262144 |      1 | 3.316e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.884331563993335 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09496530245933638, dt = 0.004687234139813099
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.25 us    (1.8%)
   patch tree reduce : 1.71 us    (0.4%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 377.06 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (74.5%)
Info: cfl dt = 0.0046872434819150224                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7595e+05 | 262144 |      1 | 3.378e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.947303725591276 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09965253659914948, dt = 0.0006106212955873658
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.40 us    (2.3%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 299.19 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (62.7%)
Info: cfl dt = 0.004687244709195358                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8928e+05 | 262144 |      1 | 3.321e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.618583999203004 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 171.068039813 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.10026315789473685, dt = 0.004687244709195358
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.54 us   (3.6%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 620.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 345.14 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (77.7%)
Info: cfl dt = 0.0046872540158263845                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8869e+05 | 262144 |      1 | 3.324e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.767873347006656 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10495040260393221, dt = 0.0046872540158263845
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.00 us    (2.1%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 304.14 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.3%)
Info: cfl dt = 0.0046872631509583115                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8606e+05 | 262144 |      1 | 3.335e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.59814556677982 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10963765661975859, dt = 0.0046872631509583115
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.06 us    (2.2%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 304.03 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 us    (64.4%)
Info: cfl dt = 0.004687272009818557                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9634e+05 | 262144 |      1 | 3.292e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.260280414645926 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1143249197707169, dt = 0.004687272009818557
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.06 us    (2.0%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 329.60 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (75.5%)
Info: cfl dt = 0.004687277538703728                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.7815e+05 | 262144 |      1 | 3.866e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.65249336608097 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11901219178053546, dt = 0.004687277538703728
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.32 us    (2.1%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 305.96 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (71.3%)
Info: cfl dt = 0.00468727883839167                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8509e+05 | 262144 |      1 | 3.339e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.53602259108276 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12369946931923918, dt = 0.00468727883839167
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.48 us    (2.2%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 322.34 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (67.4%)
Info: cfl dt = 0.004687278815191258                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0126e+05 | 262144 |      1 | 3.272e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.57694692434373 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12838674815763085, dt = 0.004687278815191258
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (2.4%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 270.64 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (71.1%)
Info: cfl dt = 0.004687277853693368                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.0075e+05 | 262144 |      1 | 3.741e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.10712909965738 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1330740269728221, dt = 0.0006101835534936817
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.0%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 324.42 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (73.8%)
Info: cfl dt = 0.004687277647004512                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0011e+05 | 262144 |      1 | 3.276e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.704620042953779 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 174.32628450200002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.1336842105263158, dt = 0.004687277647004512
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.31 us   (3.6%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 315.16 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 us    (73.5%)
Info: cfl dt = 0.004687275803804736                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7369e+05 | 262144 |      1 | 3.388e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.8023807677139 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13837148817332032, dt = 0.004687275803804736
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.42 us    (2.5%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 279.58 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (74.9%)
Info: cfl dt = 0.004687273609098945                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8118e+05 | 262144 |      1 | 3.356e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.284418980512335 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14305876397712505, dt = 0.004687273609098945
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.2%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 281.18 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (70.5%)
Info: cfl dt = 0.004687271043913159                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8947e+05 | 262144 |      1 | 3.321e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.81791367399057 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.147746037586224, dt = 0.004687271043913159
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (2.3%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 288.24 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (68.6%)
Info: cfl dt = 0.004687268133590759                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9378e+05 | 262144 |      1 | 3.302e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.09578254367555 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15243330863013718, dt = 0.004687268133590759
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.2%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 1.40 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 278.20 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (70.1%)
Info: cfl dt = 0.004687264995197426                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9140e+05 | 262144 |      1 | 3.312e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.94239005848174 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15712057676372795, dt = 0.004687264995197426
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.03 us    (2.2%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 294.06 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (69.5%)
Info: cfl dt = 0.004687261750573139                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8402e+05 | 262144 |      1 | 3.344e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.46707121158403 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16180784175892537, dt = 0.004687261750573139
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.03 us    (2.1%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 305.18 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.2%)
Info: cfl dt = 0.004687258459236708                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9287e+05 | 262144 |      1 | 3.306e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.03692060294686 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1664951035094985, dt = 0.0006101596483962524
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.23 us    (2.4%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 274.89 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (72.8%)
Info: cfl dt = 0.004687258025241743                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.9609e+05 | 262144 |      1 | 3.766e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.832690666225945 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 177.555744944 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.16710526315789476, dt = 0.004687258025241743
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.68 us   (3.6%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 326.02 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (72.6%)
Info: cfl dt = 0.004687254728528215                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8060e+05 | 262144 |      1 | 3.358e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.24680970815344 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1717925211831365, dt = 0.004687254728528215
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.23 us    (2.2%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 311.78 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.7%)
Info: cfl dt = 0.0046872514675434405                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8050e+05 | 262144 |      1 | 3.359e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.24074547621035 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17647977591166472, dt = 0.0046872514675434405
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (1.9%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 315.38 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (70.1%)
Info: cfl dt = 0.004687248284205799                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.9067e+05 | 262144 |      1 | 3.795e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.458250037071934 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18116702737920817, dt = 0.004687248284205799
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (1.9%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 1.43 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.4%)
   LB compute        : 341.80 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (67.0%)
Info: cfl dt = 0.004687245244679332                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8384e+05 | 262144 |      1 | 3.344e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.455730684789025 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18585427566341398, dt = 0.004687245244679332
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (1.9%)
   patch tree reduce : 1.97 us    (0.5%)
   gen split merge   : 1.65 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 336.25 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 5.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (71.3%)
Info: cfl dt = 0.004687242406032967                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7844e+05 | 262144 |      1 | 3.368e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.107743236919475 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19054152090809331, dt = 0.004687242406032967
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.3%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 277.67 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (66.4%)
Info: cfl dt = 0.004687239804659229                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8950e+05 | 262144 |      1 | 3.320e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.81944989642648 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19522876331412628, dt = 0.004687239804659229
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.35 us    (2.2%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 310.88 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (69.5%)
Info: cfl dt = 0.004687237457519584                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8947e+05 | 262144 |      1 | 3.320e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.81794110764573 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19991600311878552, dt = 0.0006103126706881734
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.07 us    (2.2%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 304.23 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (70.6%)
Info: cfl dt = 0.004687237170120137                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8256e+05 | 262144 |      1 | 3.350e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.55893344643973 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 180.79250755700002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.2005263157894737, dt = 0.004687237170120137
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.84 us   (3.4%)
   patch tree reduce : 2.31 us    (0.6%)
   gen split merge   : 591.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 354.45 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (75.0%)
Info: cfl dt = 0.004687235109279648                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8655e+05 | 262144 |      1 | 3.333e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.62982583096159 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20521355295959381, dt = 0.004687235109279648
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.0%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 308.41 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (71.4%)
Info: cfl dt = 0.0046872333014249465                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9215e+05 | 262144 |      1 | 3.309e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.99035773719101 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20990078806887347, dt = 0.0046872333014249465
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.2%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 283.89 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (74.3%)
Info: cfl dt = 0.004687231744987431                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.8839e+05 | 262144 |      1 | 3.808e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.31149584733886 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21458802137029842, dt = 0.004687231744987431
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.20 us    (2.4%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1.46 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 276.59 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (70.0%)
Info: cfl dt = 0.0046872304336901755                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9002e+05 | 262144 |      1 | 3.318e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.85313964354303 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21927525311528584, dt = 0.0046872304336901755
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.06 us    (2.4%)
   patch tree reduce : 2.52 us    (0.8%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 275.17 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (74.8%)
Info: cfl dt = 0.004687229130527639                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8634e+05 | 262144 |      1 | 3.334e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.61615252271834 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22396248354897602, dt = 0.004687229130527639
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.2%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 283.83 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (66.0%)
Info: cfl dt = 0.004687227967748961                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3666e+05 | 262144 |      1 | 3.559e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.418214042331485 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22864971267950365, dt = 0.004687227967748961
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.42 us    (2.3%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 300.35 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (69.1%)
Info: cfl dt = 0.004687227024804059                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8524e+05 | 262144 |      1 | 3.338e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.5452513143457 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2333369406472526, dt = 0.0006104277738000208
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.26 us    (2.3%)
   patch tree reduce : 2.46 us    (0.8%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 299.59 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (71.2%)
Info: cfl dt = 0.004687226930227163                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9083e+05 | 262144 |      1 | 3.315e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.629461545472726 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 184.055010544 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.23394736842105263, dt = 0.004687226930227163
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.57 us   (3.5%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 312.88 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 18.67 us   (5.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (75.3%)
Info: cfl dt = 0.004687226205195915                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5187e+05 | 262144 |      1 | 3.487e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.397225964708156 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2386345953512798, dt = 0.004687226205195915
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.43 us    (2.2%)
   patch tree reduce : 2.47 us    (0.7%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 312.98 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (75.4%)
Info: cfl dt = 0.004687225659178208                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9700e+05 | 262144 |      1 | 3.289e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.30220893340801 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2433218215564757, dt = 0.004687225659178208
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (2.0%)
   patch tree reduce : 2.36 us    (0.7%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 330.59 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (69.6%)
Info: cfl dt = 0.00468722526894616                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9458e+05 | 262144 |      1 | 3.299e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.14676244471837 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2480090472156539, dt = 0.00468722526894616
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.17 us    (2.1%)
   patch tree reduce : 2.45 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 314.14 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (71.7%)
Info: cfl dt = 0.004687225011719952                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7557e+05 | 262144 |      1 | 3.380e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.92262772342359 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2526962724846, dt = 0.004687225011719952
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (2.3%)
   patch tree reduce : 2.58 us    (0.9%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 276.20 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (72.4%)
Info: cfl dt = 0.00468722486560278                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8314e+05 | 262144 |      1 | 3.347e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.41034062212181 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.25738349749632, dt = 0.00468722486560278
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.47 us    (2.5%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 273.43 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (69.1%)
Info: cfl dt = 0.00468722481046233                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5129e+05 | 262144 |      1 | 3.489e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.35965599885089 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2620707223619228, dt = 0.00468722481046233
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.53 us    (1.0%)
   patch tree reduce : 2.33 us    (0.3%)
   gen split merge   : 1.27 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.1%)
   LB compute        : 709.54 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 5.06 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (78.0%)
Info: cfl dt = 0.004687224828089685                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9285e+05 | 262144 |      1 | 3.306e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.035230254685196 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26675794717238516, dt = 0.0006104738802464316
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.03 us    (2.3%)
   patch tree reduce : 2.79 us    (0.9%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 288.12 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (71.3%)
Info: cfl dt = 0.004687224846767481                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8291e+05 | 262144 |      1 | 3.348e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.563553626426413 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 187.27731094 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.2673684210526316, dt = 0.004687224846767481
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.43 us   (3.7%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 311.82 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (72.4%)
Info: cfl dt = 0.004687224921850339                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.2969e+05 | 262144 |      1 | 3.593e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.96950848984645 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27205564589939907, dt = 0.004687224921850339
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.49 us    (1.7%)
   patch tree reduce : 2.28 us    (0.5%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.3%)
   LB compute        : 426.06 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (77.3%)
Info: cfl dt = 0.004687225041713053                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8443e+05 | 262144 |      1 | 3.342e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.493286776143535 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27674287082124943, dt = 0.004687225041713053
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (2.2%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 299.06 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (73.1%)
Info: cfl dt = 0.0046872251953953056                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7975e+05 | 262144 |      1 | 3.362e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.19186135372814 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28143009586296247, dt = 0.0046872251953953056
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (2.3%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 283.74 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (67.4%)
Info: cfl dt = 0.00468722537310903                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8136e+05 | 262144 |      1 | 3.355e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.29557365111025 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2861173210583578, dt = 0.00468722537310903
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.53 us    (2.4%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 296.95 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (72.2%)
Info: cfl dt = 0.004687225565819209                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5098e+05 | 262144 |      1 | 3.491e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.340237993414824 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2908045464314668, dt = 0.004687225565819209
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.3%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.5%)
   LB compute        : 276.21 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (69.5%)
Info: cfl dt = 0.004687225765678851                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.0853e+05 | 262144 |      1 | 3.700e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.60786070121955 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.295491771997286, dt = 0.004687225765678851
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.25 us    (2.3%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 294.92 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (73.1%)
Info: cfl dt = 0.004687225965046479                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5279e+05 | 262144 |      1 | 3.482e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.45621625916542 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30017899776296486, dt = 0.0006104759212456901
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.48 us    (2.4%)
   patch tree reduce : 2.59 us    (0.8%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 291.07 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 5.01 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (68.0%)
Info: cfl dt = 0.004687226004526382                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8561e+05 | 262144 |      1 | 3.337e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.58627828570007 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 190.77175955700002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.30078947368421055, dt = 0.004687226004526382
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.79 us   (3.5%)
   patch tree reduce : 1.93 us    (0.5%)
   gen split merge   : 19.42 us   (5.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 317.43 us  (87.3%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (71.0%)
Info: cfl dt = 0.004687226189299616                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9312e+05 | 262144 |      1 | 3.305e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.052247159464585 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3054766996887369, dt = 0.004687226189299616
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.2%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 293.38 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (74.8%)
Info: cfl dt = 0.004687226362701969                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3657e+05 | 262144 |      1 | 3.559e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.41222230838484 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31016392587803654, dt = 0.004687226362701969
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.1%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 290.71 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (68.1%)
Info: cfl dt = 0.0046872265207550425                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.1384e+05 | 262144 |      1 | 3.672e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.94923275898529 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3148511522407385, dt = 0.0046872265207550425
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.41 us    (2.1%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 336.07 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (69.2%)
Info: cfl dt = 0.004687226660709118                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8396e+05 | 262144 |      1 | 3.344e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.46320168845086 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31953837876149355, dt = 0.004687226660709118
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.47 us    (2.2%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 321.98 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (71.7%)
Info: cfl dt = 0.004687226780412178                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7953e+05 | 262144 |      1 | 3.363e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.17788787396351 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3242256054222027, dt = 0.004687226780412178
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.29 us    (2.2%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.74 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 315.86 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (66.6%)
Info: cfl dt = 0.004687226878097714                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3653e+05 | 262144 |      1 | 3.559e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.409977679665616 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32891283220261486, dt = 0.004687226878097714
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.94 us    (2.2%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 286.77 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (71.3%)
Info: cfl dt = 0.004687226952747856                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8225e+05 | 262144 |      1 | 3.351e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.35257889053264 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33360005908071255, dt = 0.0006104672350769613
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (2.0%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 316.26 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (74.8%)
Info: cfl dt = 0.004687226975526512                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3887e+05 | 262144 |      1 | 3.548e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.194315259549188 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 194.082514202 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.3342105263157895, dt = 0.004687226975526512
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.00 us   (3.5%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 580.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 320.86 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (71.3%)
Info: cfl dt = 0.004687227018470487                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4500e+05 | 262144 |      1 | 3.519e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.954983519506634 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33889775329131605, dt = 0.004687227018470487
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.70 us    (2.3%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1.72 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 312.69 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (72.3%)
Info: cfl dt = 0.004687227041806154                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8785e+05 | 262144 |      1 | 3.327e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.713193652539985 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3435849803097865, dt = 0.004687227041806154
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.65 us    (2.2%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1.49 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 330.14 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (63.2%)
Info: cfl dt = 0.004687227047887924                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7819e+05 | 262144 |      1 | 3.369e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.09171652208931 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.34827220735159264, dt = 0.004687227047887924
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.1%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 281.30 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (75.0%)
Info: cfl dt = 0.00468722701557715                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8313e+05 | 262144 |      1 | 3.347e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.40982142554696 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3529594343994806, dt = 0.00468722701557715
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.87 us    (1.9%)
   patch tree reduce : 2.19 us    (0.5%)
   gen split merge   : 1.26 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 388.92 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (69.8%)
Info: cfl dt = 0.0046872269851482755                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.5587e+05 | 262144 |      1 | 3.997e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.21793090837197 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35764666141505774, dt = 0.0046872269851482755
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.82 us    (2.1%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 344.86 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (71.9%)
Info: cfl dt = 0.004687226974148161                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7939e+05 | 262144 |      1 | 3.363e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.168813684069626 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36233388840020603, dt = 0.004687226974148161
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.80 us    (2.2%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 334.46 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (74.1%)
Info: cfl dt = 0.004687226986761982                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.1629e+05 | 262144 |      1 | 3.660e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.10711449196832 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36702111537435417, dt = 0.0006104635730142527
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.04 us    (2.3%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 289.72 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (70.0%)
Info: cfl dt = 0.004687226993538929                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8973e+05 | 262144 |      1 | 3.319e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.620678502214677 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 197.39759504 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.3676315789473684, dt = 0.004687226993538929
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.03 us   (3.6%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 571.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 339.11 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (75.1%)
Info: cfl dt = 0.00468722698344532                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8390e+05 | 262144 |      1 | 3.344e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.45884572400994 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3723188059409073, dt = 0.00468722698344532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.85 us    (2.2%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 328.58 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (70.0%)
Info: cfl dt = 0.004687226982549965                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9130e+05 | 262144 |      1 | 3.313e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.93553344872215 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37700603292435264, dt = 0.004687226982549965
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.31 us    (2.4%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 1.63 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 278.74 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (74.5%)
Info: cfl dt = 0.004687227000516838                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7968e+05 | 262144 |      1 | 3.362e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.18751262008359 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3816932599069026, dt = 0.004687227000516838
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (2.4%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 267.41 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (67.1%)
Info: cfl dt = 0.004687227040754026                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8345e+05 | 262144 |      1 | 3.346e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.42982913361019 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38638048690741944, dt = 0.004687227040754026
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.2%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 287.26 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (68.0%)
Info: cfl dt = 0.004687227106075876                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8657e+05 | 262144 |      1 | 3.333e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.63082585595607 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39106771394817347, dt = 0.004687227106075876
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.04 us    (2.3%)
   patch tree reduce : 2.53 us    (0.7%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 317.42 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 5.12 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (73.9%)
Info: cfl dt = 0.004687227200013709                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7532e+05 | 262144 |      1 | 3.381e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.906802328735075 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39575494105424935, dt = 0.004687227200013709
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.41 us    (2.5%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 279.25 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (70.6%)
Info: cfl dt = 0.004687227330664568                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8443e+05 | 262144 |      1 | 3.342e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.49296198923049 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40044216825426304, dt = 0.0006104633246843405
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (2.0%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 335.24 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (70.3%)
Info: cfl dt = 0.00468722736395384                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3000e+05 | 262144 |      1 | 3.591e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.119948349588825 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 200.625728643 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.4010526315789474, dt = 0.00468722736395384
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.56 us   (3.3%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 351.38 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (73.3%)
Info: cfl dt = 0.004687227531790345                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3290e+05 | 262144 |      1 | 3.577e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.17639311264619 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4057398589429012, dt = 0.004687227531790345
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.32 us    (2.2%)
   patch tree reduce : 2.24 us    (0.6%)
   gen split merge   : 1.58 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.4%)
   LB compute        : 345.91 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (56.9%)
Info: cfl dt = 0.004687227733148678                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6778e+05 | 262144 |      1 | 3.414e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.42134843505544 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41042708647469156, dt = 0.004687227733148678
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.22 us    (2.1%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 1.51 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 323.85 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (75.8%)
Info: cfl dt = 0.004687227963626218                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8644e+05 | 262144 |      1 | 3.333e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.62226717054565 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41511431420784023, dt = 0.004687227963626218
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (2.1%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 316.72 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (70.8%)
Info: cfl dt = 0.004687228218782792                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7187e+05 | 262144 |      1 | 3.396e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.684873967023194 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4198015421714664, dt = 0.004687228218782792
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.45 us    (2.3%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 295.59 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (69.8%)
Info: cfl dt = 0.00468722849483511                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.1115e+05 | 262144 |      1 | 3.686e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.775962756986004 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42448877039024924, dt = 0.00468722849483511
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.3%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 280.46 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (63.7%)
Info: cfl dt = 0.004687228788047836                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3171e+05 | 262144 |      1 | 3.583e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.09947817791035 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42917599888508434, dt = 0.004687228788047836
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.40 us    (2.3%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 296.09 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (66.9%)
Info: cfl dt = 0.004687229091880905                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4368e+05 | 262144 |      1 | 3.525e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.870301217568105 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4338632276731322, dt = 0.0006104565373941662
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.94 us    (2.2%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 331.41 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (74.4%)
Info: cfl dt = 0.004687229146758799                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8249e+05 | 262144 |      1 | 3.350e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.55987668410139 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 203.937845651 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.43447368421052635, dt = 0.004687229146758799
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.08 us   (3.5%)
   patch tree reduce : 1.95 us    (0.5%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 343.42 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (75.9%)
Info: cfl dt = 0.004687229453418967                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8247e+05 | 262144 |      1 | 3.350e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.36735137448065 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43916091335728513, dt = 0.004687229453418967
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.94 us    (2.2%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 289.86 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (72.0%)
Info: cfl dt = 0.004687229769108501                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8060e+05 | 262144 |      1 | 3.358e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.24689902327189 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4438481428107041, dt = 0.004687229769108501
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.43 us    (2.4%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 281.09 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (71.3%)
Info: cfl dt = 0.0046872300932813025                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8693e+05 | 262144 |      1 | 3.331e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.65399904705735 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44853537257981263, dt = 0.0046872300932813025
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.1%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 309.54 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (74.2%)
Info: cfl dt = 0.004687230426218873                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8580e+05 | 262144 |      1 | 3.336e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.58119077225417 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45322260267309394, dt = 0.004687230426218873
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.26 us    (2.2%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 312.24 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (64.7%)
Info: cfl dt = 0.004687230768643342                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8244e+05 | 262144 |      1 | 3.350e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.36537933697142 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4579098330993128, dt = 0.004687230768643342
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.70 us    (2.1%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 333.87 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 5.25 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (75.2%)
Info: cfl dt = 0.004687231121299759                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8035e+05 | 262144 |      1 | 3.359e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.230306658695895 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4625970638679562, dt = 0.004687231121299759
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.25 us    (2.8%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 272.28 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.82 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (71.6%)
Info: cfl dt = 0.004687231484233912                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.6634e+05 | 262144 |      1 | 3.934e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.8921738770877 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46728429498925594, dt = 0.0006104418528493083
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.37 us    (2.3%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.65 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 297.18 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (67.2%)
Info: cfl dt = 0.004687231546205359                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7087e+05 | 262144 |      1 | 3.401e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.462348746204949 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 207.21785192000002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.46789473684210525, dt = 0.004687231546205359
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.97 us   (3.6%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 591.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 319.97 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 19.56 us   (5.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (73.1%)
Info: cfl dt = 0.004687231914442986                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0151e+05 | 262144 |      1 | 3.271e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.592727423438696 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4725819683883106, dt = 0.004687231914442986
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.19 us    (2.6%)
   patch tree reduce : 2.38 us    (0.7%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 293.81 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (69.1%)
Info: cfl dt = 0.004687232296055382                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8270e+05 | 262144 |      1 | 3.349e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.381910429469066 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4772692003027536, dt = 0.004687232296055382
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.38 us    (2.3%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 299.93 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (74.4%)
Info: cfl dt = 0.004687232691215245                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8079e+05 | 262144 |      1 | 3.357e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.25878816850437 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.481956432598809, dt = 0.004687232691215245
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.20 us    (2.3%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 284.82 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (73.8%)
Info: cfl dt = 0.0046872330992974096                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8066e+05 | 262144 |      1 | 3.358e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.250497420816885 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48664366529002423, dt = 0.0046872330992974096
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.30 us    (1.9%)
   patch tree reduce : 1.97 us    (0.5%)
   gen split merge   : 1.22 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 361.86 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (70.7%)
Info: cfl dt = 0.004687233518755688                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4757e+05 | 262144 |      1 | 3.507e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.12057661158635 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49133089838932165, dt = 0.004687233518755688
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.23 us    (2.2%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 308.75 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (65.8%)
Info: cfl dt = 0.004687233947733763                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9109e+05 | 262144 |      1 | 3.314e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.92188800535549 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4960181319080773, dt = 0.004687233947733763
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (1.9%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 355.27 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (72.0%)
Info: cfl dt = 0.004687234384314633                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8673e+05 | 262144 |      1 | 3.332e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.64113549470848 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.500705365855811, dt = 0.0006104236178732236
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.26 us    (2.0%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.26 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.4%)
   LB compute        : 341.32 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (71.3%)
Info: cfl dt = 0.004687234454086058                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8766e+05 | 262144 |      1 | 3.328e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.602834398651414 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 210.41830270800003 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.5013157894736843, dt = 0.004687234454086058
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.20 us   (3.6%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 312.09 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (68.2%)
Info: cfl dt = 0.004687234890899034                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9162e+05 | 262144 |      1 | 3.311e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.95636883842937 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5060030239277703, dt = 0.004687234890899034
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.32 us    (2.2%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 311.36 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (68.1%)
Info: cfl dt = 0.004687235332425469                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8899e+05 | 262144 |      1 | 3.323e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.78711434417768 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5106902588186694, dt = 0.004687235332425469
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.29 us    (2.2%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 315.31 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.5%)
Info: cfl dt = 0.004687235775687335                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8969e+05 | 262144 |      1 | 3.320e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.83157423330937 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5153774941510948, dt = 0.004687235775687335
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.2%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 275.10 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (74.2%)
Info: cfl dt = 0.004687236217814051                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9351e+05 | 262144 |      1 | 3.304e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.07754168478492 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5200647299267821, dt = 0.004687236217814051
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.46 us    (2.4%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 290.29 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (69.6%)
Info: cfl dt = 0.00468723665602507                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8872e+05 | 262144 |      1 | 3.324e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.76911698300474 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5247519661445962, dt = 0.00468723665602507
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.50 us    (2.4%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 289.13 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.70 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (70.8%)
Info: cfl dt = 0.0046872370878540855                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8116e+05 | 262144 |      1 | 3.356e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.28288868700844 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5294392028006213, dt = 0.0046872370878540855
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (1.9%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 336.42 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (72.8%)
Info: cfl dt = 0.004687237511273339                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8117e+05 | 262144 |      1 | 3.356e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.28321007839778 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5341264398884754, dt = 0.0006104022167877643
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.19 us    (2.2%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 304.49 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (77.0%)
Info: cfl dt = 0.004687237577557929                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8203e+05 | 262144 |      1 | 3.352e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.555419270515337 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 213.794910084 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.5347368421052632, dt = 0.004687237577557929
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.98 us   (3.3%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 336.56 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (70.4%)
Info: cfl dt = 0.004687237984114848                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7775e+05 | 262144 |      1 | 3.371e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.06362108631556 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5394240796828211, dt = 0.004687237984114848
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.0%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 309.19 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (61.9%)
Info: cfl dt = 0.004687238381336377                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3913e+05 | 262144 |      1 | 3.547e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.57766587365218 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.544111317666936, dt = 0.004687238381336377
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.42 us    (2.6%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 259.13 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (69.4%)
Info: cfl dt = 0.004687238768030258                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9857e+05 | 262144 |      1 | 3.283e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.40318113923855 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5487985560482723, dt = 0.004687238768030258
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.05 us    (2.1%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 306.52 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (72.0%)
Info: cfl dt = 0.0046872391437077915                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8882e+05 | 262144 |      1 | 3.323e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.77610895705945 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5534857948163026, dt = 0.0046872391437077915
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.1%)
   patch tree reduce : 2.57 us    (0.8%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 301.86 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (75.7%)
Info: cfl dt = 0.00468723950830683                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7828e+05 | 262144 |      1 | 3.368e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.09775117650183 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5581730339600104, dt = 0.00468723950830683
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.07 us    (2.1%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 315.87 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (71.7%)
Info: cfl dt = 0.004687239862077173                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9987e+05 | 262144 |      1 | 3.277e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.48718787034855 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5628602734683172, dt = 0.004687239862077173
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.19 us    (2.2%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 304.41 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (74.0%)
Info: cfl dt = 0.004687240205519914                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9614e+05 | 262144 |      1 | 3.293e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.24715188504052 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5675475133303944, dt = 0.0006103814064476465
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.58 us    (2.3%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 303.96 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (68.4%)
Info: cfl dt = 0.004687240262040081                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 8.0064e+05 | 262144 |      1 | 3.274e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.711230415770271 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 216.987658111 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.5681578947368421, dt = 0.004687240262040081
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.76 us   (3.6%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 329.80 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (73.1%)
Info: cfl dt = 0.004687240589022538                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4228e+05 | 262144 |      1 | 3.532e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.78006674522954 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5728451349988821, dt = 0.004687240589022538
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (2.0%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1.46 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 313.16 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (73.6%)
Info: cfl dt = 0.00468724090897489                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8738e+05 | 262144 |      1 | 3.329e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.683152759208184 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5775323755879047, dt = 0.00468724090897489
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.24 us    (2.0%)
   patch tree reduce : 2.67 us    (0.7%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 339.65 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (74.5%)
Info: cfl dt = 0.004687241221921968                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3241e+05 | 262144 |      1 | 3.579e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.144670346745855 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5822196164968796, dt = 0.004687241221921968
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (1.9%)
   patch tree reduce : 2.22 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 329.63 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.2%)
Info: cfl dt = 0.004687241528223801                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8424e+05 | 262144 |      1 | 3.343e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.48095358236223 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5869068577188016, dt = 0.004687241528223801
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.00 us    (2.1%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.4%)
   LB compute        : 316.19 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (67.7%)
Info: cfl dt = 0.0046872418283766155                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8330e+05 | 262144 |      1 | 3.347e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.42040763003288 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5915940992470253, dt = 0.0046872418283766155
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.32 us    (2.3%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 291.95 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (69.7%)
Info: cfl dt = 0.004687242122853477                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7829e+05 | 262144 |      1 | 3.368e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.09782954853884 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.596281341075402, dt = 0.004687242122853477
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.66 us    (2.5%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1.36 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 278.80 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (68.7%)
Info: cfl dt = 0.004687242412094495                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6045e+05 | 262144 |      1 | 3.447e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.94989218094474 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6009685831982554, dt = 0.0006103641701656892
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.12 us    (2.2%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 301.55 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (71.4%)
Info: cfl dt = 0.004687242462414056                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6989e+05 | 262144 |      1 | 3.405e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.453245449290861 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 220.23662060400002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.6015789473684211, dt = 0.004687242462414056
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.40 us   (3.4%)
   patch tree reduce : 2.21 us    (0.6%)
   gen split merge   : 591.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 335.43 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (79.3%)
Info: cfl dt = 0.00468724274058541                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9069e+05 | 262144 |      1 | 3.315e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.896392984195074 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6062661898308351, dt = 0.00468724274058541
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.47 us    (2.1%)
   patch tree reduce : 2.44 us    (0.7%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 337.59 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (51.5%)
Info: cfl dt = 0.00468724301622604                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3447e+05 | 262144 |      1 | 3.569e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.27723823292084 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6109534325714205, dt = 0.00468724301622604
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (1.8%)
   patch tree reduce : 2.35 us    (0.6%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 355.41 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (71.6%)
Info: cfl dt = 0.004687243289008425                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3752e+05 | 262144 |      1 | 3.554e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.473687179689584 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6156406755876466, dt = 0.004687243289008425
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.3%)
   patch tree reduce : 2.62 us    (0.9%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 276.67 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (69.1%)
Info: cfl dt = 0.004687243558985207                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6026e+05 | 262144 |      1 | 3.448e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.937710296293474 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.620327918876655, dt = 0.004687243558985207
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.25 us    (2.4%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 279.83 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (68.8%)
Info: cfl dt = 0.004687243826358344                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8336e+05 | 262144 |      1 | 3.346e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.42442208522361 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6250151624356401, dt = 0.004687243826358344
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.34 us    (2.5%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 272.03 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (64.5%)
Info: cfl dt = 0.004687244091311441                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7000e+05 | 262144 |      1 | 3.404e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.56443645733429 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6297024062619985, dt = 0.004687244091311441
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.54 us    (2.2%)
   patch tree reduce : 2.74 us    (0.8%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 325.98 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (71.4%)
Info: cfl dt = 0.004687244354011933                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8406e+05 | 262144 |      1 | 3.343e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.46972827535294 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.63438965035331, dt = 0.0006103496466900449
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.88 us    (2.6%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 282.92 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (72.2%)
Info: cfl dt = 0.00468724440129749                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9087e+05 | 262144 |      1 | 3.315e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.628960042966296 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 223.48186120300002 (s)                                   [Godunov][rank=0]

Outflow on y/z, reflective on x boundary conditions#

256 def run_case_outflow_reflective_x():
257     def set_bc_func(cfg):
258         cfg.set_boundary_condition("x", "reflective")
259         cfg.set_boundary_condition("y", "outflow")
260         cfg.set_boundary_condition("z", "outflow")
261
262     return run_case(set_bc_func, "outflow_reflective_x")
263
264
265 ani_outflow_reflective_x = run_case_outflow_reflective_x()
266 plt.show()
Info: pushing data in scheduler, N = 32768                            [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  38.34 ms                            [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (51.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     : 731.00 ns  (0.1%)
   patch tree reduce : 1.59 us    (0.3%)
   gen split merge   : 701.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.2%)
   LB compute        : 556.53 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 11.78 us   (2.0%)
Info: patch count stable after 1 runs npatch = 1                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: time since start : 235.746455649 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.08 us   (3.5%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 611.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 320.94 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.0%)
Info: cfl dt = 0.004687031767311921                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 4.2403e+05 | 262144 |      1 | 6.182e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.004687031767311921
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.11 us    (2.2%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (0.5%)
   LB compute        : 304.09 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (70.6%)
Info: cfl dt = 0.00468703492268262                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4457e+05 | 262144 |      1 | 3.521e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.925146146031175 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004687031767311921, dt = 0.00468703492268262
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.30 us    (2.3%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 342.95 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (70.4%)
Info: cfl dt = 0.004687039583988074                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.3188e+05 | 262144 |      1 | 4.149e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.6718502288026 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009374066689994541, dt = 0.004687039583988074
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (2.0%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.69 us    (0.5%)
   LB compute        : 328.49 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (70.1%)
Info: cfl dt = 0.004687045796397419                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7632e+05 | 262144 |      1 | 3.377e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.969237995359514 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014061106273982615, dt = 0.004687045796397419
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (2.0%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.66 us    (0.5%)
   LB compute        : 322.47 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (52.0%)
Info: cfl dt = 0.004687053552588433                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8292e+05 | 262144 |      1 | 3.348e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.3938060026488 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018748152070380032, dt = 0.004687053552588433
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.07 us    (2.3%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 283.88 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.8%)
Info: cfl dt = 0.004687062799631708                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7131e+05 | 262144 |      1 | 3.399e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.64669120249587 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023435205622968466, dt = 0.004687062799631708
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.03 us    (2.0%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 332.42 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (71.0%)
Info: cfl dt = 0.004687073438769337                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7421e+05 | 262144 |      1 | 3.386e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.833760270083914 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028122268422600172, dt = 0.004687073438769337
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (1.9%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 332.53 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (70.7%)
Info: cfl dt = 0.004687084324050356                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7828e+05 | 262144 |      1 | 3.368e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.09571149631244 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03280934186136951, dt = 0.0006117107702094393
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.62 us    (2.3%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 301.56 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (75.2%)
Info: cfl dt = 0.0046870856989237805                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8231e+05 | 262144 |      1 | 3.351e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.571835215353872 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 239.99080722600002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.03342105263157895, dt = 0.0046870856989237805
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.36 us   (3.2%)
   patch tree reduce : 2.09 us    (0.5%)
   gen split merge   : 600.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 354.14 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (63.1%)
Info: cfl dt = 0.0046870967535173926                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6877e+05 | 262144 |      1 | 3.410e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.483689976460575 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03810813833050273, dt = 0.0046870967535173926
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.62 us    (2.4%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 288.89 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (66.9%)
Info: cfl dt = 0.0046871087318162774                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7373e+05 | 262144 |      1 | 3.388e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.80332373760642 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.042795235084020125, dt = 0.0046871087318162774
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.75 us    (2.5%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 287.88 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (69.8%)
Info: cfl dt = 0.004687121456469848                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8035e+05 | 262144 |      1 | 3.359e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.22907795811192 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0474823438158364, dt = 0.004687121456469848
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.04 us    (2.1%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 307.60 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.8%)
Info: cfl dt = 0.0046871347260923416                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.8301e+05 | 262144 |      1 | 3.838e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.96393704923868 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05216946527230625, dt = 0.0046871347260923416
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.27 us    (2.4%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 275.14 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (70.7%)
Info: cfl dt = 0.004687147322193695                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8186e+05 | 262144 |      1 | 3.353e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.32657547686947 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.056856599998398594, dt = 0.004687147322193695
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (2.2%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 288.11 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 us    (62.9%)
Info: cfl dt = 0.004687158862014885                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8230e+05 | 262144 |      1 | 3.351e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.355338358745406 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06154374732059229, dt = 0.004687158862014885
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.46 us    (2.4%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 287.66 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (73.5%)
Info: cfl dt = 0.004687170703487903                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.0367e+05 | 262144 |      1 | 3.725e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.29408071523844 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06623090618260717, dt = 0.0006111990805507256
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (2.2%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 298.94 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (67.7%)
Info: cfl dt = 0.0046871722738337585                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3587e+05 | 262144 |      1 | 3.562e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.176534804995567 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 243.382771883 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0668421052631579, dt = 0.0046871722738337585
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.63 us   (3.7%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 591.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 317.93 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (69.2%)
Info: cfl dt = 0.004687184264637751                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5955e+05 | 262144 |      1 | 3.451e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.8908795305997 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07152927753699166, dt = 0.004687184264637751
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.74 us    (2.3%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 311.00 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (70.7%)
Info: cfl dt = 0.004687194877882526                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.1907e+05 | 262144 |      1 | 3.646e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.28587338930295 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07621646180162941, dt = 0.004687194877882526
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.05 us    (2.2%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 304.28 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (65.8%)
Info: cfl dt = 0.00468720521089136                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6989e+05 | 262144 |      1 | 3.405e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.55669701852552 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08090365667951194, dt = 0.00468720521089136
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.55 us    (2.2%)
   patch tree reduce : 2.47 us    (0.7%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 317.25 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (67.3%)
Info: cfl dt = 0.004687215596431434                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5718e+05 | 262144 |      1 | 3.462e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.738830831932624 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0855908618904033, dt = 0.004687215596431434
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.1%)
   patch tree reduce : 2.62 us    (0.8%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 303.46 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (72.9%)
Info: cfl dt = 0.004687224972613222                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7785e+05 | 262144 |      1 | 3.370e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.06969039900894 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09027807748683474, dt = 0.004687224972613222
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.46 us    (2.5%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.5%)
   LB compute        : 277.78 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (68.6%)
Info: cfl dt = 0.004687234139899544                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7863e+05 | 262144 |      1 | 3.367e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.1199091581118 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09496530245944795, dt = 0.004687234139899544
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.1%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 313.66 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (69.2%)
Info: cfl dt = 0.004687243482155108                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3902e+05 | 262144 |      1 | 3.547e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.570207039562405 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0996525365993475, dt = 0.0006106212953893436
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.3%)
   patch tree reduce : 1.91 us    (0.7%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 269.05 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (65.2%)
Info: cfl dt = 0.004687244709469211                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3970e+05 | 262144 |      1 | 3.544e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.202855825414798 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 246.71258221000002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.10026315789473685, dt = 0.004687244709469211
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.28 us   (3.4%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 330.47 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (69.9%)
Info: cfl dt = 0.00468725401629642                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8548e+05 | 262144 |      1 | 3.337e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.56114134091351 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10495040260420606, dt = 0.00468725401629642
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.9%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 306.35 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (68.9%)
Info: cfl dt = 0.004687263151480304                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.9657e+05 | 262144 |      1 | 3.763e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.83786224202371 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10963765662050248, dt = 0.004687263151480304
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.30 us    (2.4%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 276.32 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (67.9%)
Info: cfl dt = 0.004687272009962846                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.1393e+05 | 262144 |      1 | 3.672e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.955347711342874 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11432491977198278, dt = 0.004687272009962846
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.57 us    (2.3%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 302.95 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (70.8%)
Info: cfl dt = 0.004687277562290804                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6668e+05 | 262144 |      1 | 3.419e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.351002129880065 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11901219178194562, dt = 0.004687277562290804
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (2.1%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 315.62 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (71.8%)
Info: cfl dt = 0.004687278885336313                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7791e+05 | 262144 |      1 | 3.370e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.074319526837314 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12369946934423642, dt = 0.004687278885336313
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.90 us    (2.3%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 323.14 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (69.5%)
Info: cfl dt = 0.004687278653859442                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7912e+05 | 262144 |      1 | 3.365e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.1522458834216 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12838674822957274, dt = 0.004687278653859442
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.65 us    (2.5%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 285.67 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.0%)
Info: cfl dt = 0.004687277538147369                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6684e+05 | 262144 |      1 | 3.418e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.3615236735839 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13307402688343217, dt = 0.0006101836428836216
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.39 us    (2.5%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 274.28 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.76 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (62.9%)
Info: cfl dt = 0.004687277315053551                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9084e+05 | 262144 |      1 | 3.315e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.626878928954073 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 250.02150922400003 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.1336842105263158, dt = 0.004687277315053551
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.45 us   (3.6%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 318.54 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (68.7%)
Info: cfl dt = 0.00468727536007883                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8647e+05 | 262144 |      1 | 3.333e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.6250821622399 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13837148784136935, dt = 0.00468727536007883
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (2.1%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 307.52 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (73.4%)
Info: cfl dt = 0.004687273042053087                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7999e+05 | 262144 |      1 | 3.361e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.207786577907626 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14305876320144817, dt = 0.004687273042053087
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.21 us    (2.4%)
   patch tree reduce : 2.45 us    (0.8%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 282.28 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (67.8%)
Info: cfl dt = 0.0046872704397928604                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9150e+05 | 262144 |      1 | 3.312e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.94856895068303 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14774603624350124, dt = 0.0046872704397928604
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.26 us    (2.1%)
   patch tree reduce : 2.22 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 327.61 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (69.4%)
Info: cfl dt = 0.004687267576423972                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8237e+05 | 262144 |      1 | 3.351e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.36111203060121 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1524333066832941, dt = 0.004687267576423972
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.24 us    (2.2%)
   patch tree reduce : 2.38 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 305.01 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (71.2%)
Info: cfl dt = 0.00468726453880877                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3927e+05 | 262144 |      1 | 3.546e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.586618596148035 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15712057425971807, dt = 0.00468726453880877
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.48 us    (2.3%)
   patch tree reduce : 2.64 us    (0.8%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 305.59 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (70.0%)
Info: cfl dt = 0.004687261426463144                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8386e+05 | 262144 |      1 | 3.344e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.45695226179566 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16180783879852684, dt = 0.004687261426463144
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (2.3%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 280.73 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (70.3%)
Info: cfl dt = 0.004687258373260002                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8370e+05 | 262144 |      1 | 3.345e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.446720102912955 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16649510022498998, dt = 0.0006101629329047786
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.33 us    (1.9%)
   patch tree reduce : 2.26 us    (0.6%)
   gen split merge   : 1.30 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 355.46 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (68.4%)
Info: cfl dt = 0.004687257983264101                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8536e+05 | 262144 |      1 | 3.338e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.580779602752709 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 253.24305693500003 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.16710526315789476, dt = 0.004687257983264101
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.39 us   (3.9%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 315.54 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (66.8%)
Info: cfl dt = 0.004687255097017622                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7771e+05 | 262144 |      1 | 3.371e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.06116689723017 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17179252114115887, dt = 0.004687255097017622
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.40 us    (2.2%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 311.26 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (67.7%)
Info: cfl dt = 0.004687252393857863                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7218e+05 | 262144 |      1 | 3.395e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.70490884865401 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17647977623817648, dt = 0.004687252393857863
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.81 us    (2.3%)
   patch tree reduce : 2.42 us    (0.7%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 323.27 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (70.6%)
Info: cfl dt = 0.004687249890605385                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6710e+05 | 262144 |      1 | 3.417e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.37821746920182 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18116702863203435, dt = 0.004687249890605385
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.63 us    (2.2%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 325.42 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (74.8%)
Info: cfl dt = 0.004687247551514999                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8259e+05 | 262144 |      1 | 3.350e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.374930104762356 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18585427852263972, dt = 0.004687247551514999
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.63 us    (2.2%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1.49 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 329.40 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (70.6%)
Info: cfl dt = 0.0046872450499894375                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7431e+05 | 262144 |      1 | 3.386e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.84194860707303 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19054152607415473, dt = 0.0046872450499894375
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.41 us    (2.1%)
   patch tree reduce : 2.71 us    (0.8%)
   gen split merge   : 1.24 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 333.97 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (70.0%)
Info: cfl dt = 0.004687242800227818                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7871e+05 | 262144 |      1 | 3.366e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.12488646418573 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19522877112414416, dt = 0.004687242800227818
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.68 us    (2.4%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 295.28 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (72.1%)
Info: cfl dt = 0.004687240804705421                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8177e+05 | 262144 |      1 | 3.353e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.32182440075808 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19991601392437197, dt = 0.00061030186510172
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.24 us    (1.4%)
   patch tree reduce : 2.70 us    (0.5%)
   gen split merge   : 1.16 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.2%)
   LB compute        : 490.34 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (64.8%)
Info: cfl dt = 0.004687240571731558                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7820e+05 | 262144 |      1 | 3.369e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.522230215125572 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 256.47995927200003 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.2005263157894737, dt = 0.004687240571731558
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.84 us   (3.3%)
   patch tree reduce : 2.13 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 364.75 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (70.7%)
Info: cfl dt = 0.004687238857552748                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.3623e+05 | 262144 |      1 | 4.120e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.95382432453191 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20521355636120525, dt = 0.004687238857552748
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.51 us    (2.4%)
   patch tree reduce : 2.36 us    (0.7%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 294.49 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (66.6%)
Info: cfl dt = 0.004687237402627058                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7945e+05 | 262144 |      1 | 3.363e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.17293317466809 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.209900795218758, dt = 0.004687237402627058
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.73 us    (2.4%)
   patch tree reduce : 2.41 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 298.62 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (71.0%)
Info: cfl dt = 0.004687236208149628                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.7738e+05 | 262144 |      1 | 3.870e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.60272419309758 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21458803262138507, dt = 0.004687236208149628
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.74 us    (2.3%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 320.54 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (69.6%)
Info: cfl dt = 0.004687235271899177                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8540e+05 | 262144 |      1 | 3.338e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.55583781500329 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2192752688295347, dt = 0.004687235271899177
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (2.2%)
   patch tree reduce : 2.44 us    (0.8%)
   gen split merge   : 1.44 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 289.09 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (68.5%)
Info: cfl dt = 0.004687234588939457                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7488e+05 | 262144 |      1 | 3.383e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.878239907922776 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22396250410143387, dt = 0.004687234588939457
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.64 us    (2.3%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 302.20 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.89 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (63.7%)
Info: cfl dt = 0.004687234153226077                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8716e+05 | 262144 |      1 | 3.330e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.66921235251135 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22864973869037333, dt = 0.004687234153226077
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.36 us    (2.2%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1.75 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 318.26 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (69.7%)
Info: cfl dt = 0.0046872339555697334                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8420e+05 | 262144 |      1 | 3.343e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.47854264030129 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23333697284359942, dt = 0.0006103955774532099
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.40 us    (2.0%)
   patch tree reduce : 2.39 us    (0.7%)
   gen split merge   : 1.61 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 344.26 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (76.5%)
Info: cfl dt = 0.004687233951934073                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4919e+05 | 262144 |      1 | 3.499e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.2801064812239495 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 259.85639551500003 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.23394736842105263, dt = 0.004687233951934073
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.64 us   (3.3%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 351.50 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (69.7%)
Info: cfl dt = 0.004687234003255571                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8982e+05 | 262144 |      1 | 3.319e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.840130686475504 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2386346023729867, dt = 0.004687234003255571
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (2.1%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 312.18 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (71.3%)
Info: cfl dt = 0.0046872342655282385                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8408e+05 | 262144 |      1 | 3.343e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.47044703797487 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24332183637624227, dt = 0.0046872342655282385
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (2.1%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 315.32 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (65.2%)
Info: cfl dt = 0.004687234832706693                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7587e+05 | 262144 |      1 | 3.379e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.94232290932331 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24800907064177052, dt = 0.004687234832706693
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.61 us    (2.1%)
   patch tree reduce : 1.64 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        : 332.78 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (74.1%)
Info: cfl dt = 0.004687235687704397                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4397e+05 | 262144 |      1 | 3.524e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.8888651815574 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2526963054744772, dt = 0.004687235687704397
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.66 us    (2.3%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1.43 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 315.04 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (71.9%)
Info: cfl dt = 0.004687236623163013                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.2393e+05 | 262144 |      1 | 3.621e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.59875860848307 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2573835411621816, dt = 0.004687236623163013
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.66 us    (2.2%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 319.34 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (73.1%)
Info: cfl dt = 0.0046872376461729245                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.2914e+05 | 262144 |      1 | 3.595e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.93455046941581 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2620707777853446, dt = 0.0046872376461729245
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (2.2%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 290.43 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (64.7%)
Info: cfl dt = 0.004687238807347737                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.1537e+05 | 262144 |      1 | 3.664e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.04774160932291 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2667580154315175, dt = 0.0006104056211140851
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (2.2%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 295.59 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (68.4%)
Info: cfl dt = 0.004687238965083523                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8382e+05 | 262144 |      1 | 3.344e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.570494502542556 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 263.379904259 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.2673684210526316, dt = 0.004687238965083523
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.42 us   (3.8%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 641.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 327.33 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (66.5%)
Info: cfl dt = 0.004687240304102443                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.2708e+05 | 262144 |      1 | 3.605e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.80170776170235 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2720556600177151, dt = 0.004687240304102443
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.26 us    (2.0%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 330.90 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (73.8%)
Info: cfl dt = 0.004687241856479034                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7711e+05 | 262144 |      1 | 3.373e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.02245249079665 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27674290032181753, dt = 0.004687241856479034
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.33 us    (2.4%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 284.13 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (72.1%)
Info: cfl dt = 0.004687243623864013                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8575e+05 | 262144 |      1 | 3.336e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.57843328010677 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28143014217829654, dt = 0.004687243623864013
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.15 us    (2.1%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 314.31 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (68.6%)
Info: cfl dt = 0.00468724558203287                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8028e+05 | 262144 |      1 | 3.360e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.22606954856821 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28611738580216056, dt = 0.00468724558203287
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.29 us    (2.2%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 302.07 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 us    (76.9%)
Info: cfl dt = 0.004687247703464963                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8601e+05 | 262144 |      1 | 3.335e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.59477299986944 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29080463138419343, dt = 0.004687247703464963
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (1.8%)
   patch tree reduce : 2.33 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 371.51 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (76.9%)
Info: cfl dt = 0.004687249783434023                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8019e+05 | 262144 |      1 | 3.360e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.22074980658127 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2954918790876584, dt = 0.004687249783434023
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.17 us    (2.1%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 320.51 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (66.7%)
Info: cfl dt = 0.004687251720626629                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.8050e+05 | 262144 |      1 | 3.852e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.80351060089598 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30017912887109244, dt = 0.0006103448131181133
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.78 us   (3.2%)
   patch tree reduce : 3.69 us    (1.0%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 335.73 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (72.2%)
Info: cfl dt = 0.004687252008098236                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8018e+05 | 262144 |      1 | 3.360e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.539318913118282 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 266.65344036100004 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.30078947368421055, dt = 0.004687252008098236
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.90 us   (3.3%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 334.09 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (70.4%)
Info: cfl dt = 0.0046872540735967095                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8535e+05 | 262144 |      1 | 3.338e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.55289678766768 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30547672569230877, dt = 0.0046872540735967095
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (2.2%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 297.09 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (71.0%)
Info: cfl dt = 0.004687256179988798                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8877e+05 | 262144 |      1 | 3.323e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.773035470056556 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3101639797659055, dt = 0.004687256179988798
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.33 us    (2.2%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 314.63 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (72.9%)
Info: cfl dt = 0.004687258340176443                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9166e+05 | 262144 |      1 | 3.311e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.958801900867535 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31485123594589426, dt = 0.004687258340176443
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.68 us    (2.5%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.42 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.57 us    (0.5%)
   LB compute        : 286.58 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (70.4%)
Info: cfl dt = 0.004687260558129958                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8910e+05 | 262144 |      1 | 3.322e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.79409677517283 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31953849428607073, dt = 0.004687260558129958
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.25 us    (2.3%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.5%)
   LB compute        : 285.40 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (76.5%)
Info: cfl dt = 0.004687262823120487                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7775e+05 | 262144 |      1 | 3.371e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.06346015111811 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3242257548442007, dt = 0.004687262823120487
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.10 us    (2.2%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 293.03 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (68.2%)
Info: cfl dt = 0.004687265109719916                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.2781e+05 | 262144 |      1 | 3.602e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.84905820974699 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3289130176673212, dt = 0.004687265109719916
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.3%)
   patch tree reduce : 1.90 us    (0.7%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 267.29 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (71.0%)
Info: cfl dt = 0.004687267381699241                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.2986e+05 | 262144 |      1 | 3.592e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.98122588474946 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33360028277704107, dt = 0.0006102435387484451
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.00 us    (2.3%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 1.58 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.92 us    (0.6%)
   LB compute        : 284.59 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.82 us    (76.8%)
Info: cfl dt = 0.004687267688756935                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8715e+05 | 262144 |      1 | 3.330e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.5966541511209265 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 269.892830597 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.3342105263157895, dt = 0.004687267688756935
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.16 us   (3.3%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 341.12 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (70.9%)
Info: cfl dt = 0.004687269882584073                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8923e+05 | 262144 |      1 | 3.322e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.8026350997305 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33889779400454645, dt = 0.004687269882584073
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (2.1%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 301.05 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.90 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (71.8%)
Info: cfl dt = 0.0046872719595922865                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8052e+05 | 262144 |      1 | 3.359e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.241846429710755 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3435850638871305, dt = 0.0046872719595922865
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.54 us    (3.0%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 296.38 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (74.0%)
Info: cfl dt = 0.004687273235728518                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.9797e+05 | 262144 |      1 | 3.756e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.92817501621402 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3482723358467228, dt = 0.004687273235728518
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (2.3%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 277.52 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (68.5%)
Info: cfl dt = 0.004687273987871884                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5394e+05 | 262144 |      1 | 3.477e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.53087726958772 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35295960908245133, dt = 0.004687273987871884
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.10 us    (2.4%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 275.15 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (68.5%)
Info: cfl dt = 0.004687274442042877                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5718e+05 | 262144 |      1 | 3.462e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.73984261831604 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3576468830703232, dt = 0.004687274442042877
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.62 us    (2.5%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1.41 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 284.59 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (66.4%)
Info: cfl dt = 0.0046872747079609155                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.9800e+05 | 262144 |      1 | 3.756e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.930339807895244 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3623341575123661, dt = 0.0046872747079609155
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.37 us    (1.8%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 1.43 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.4%)
   LB compute        : 384.80 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (74.8%)
Info: cfl dt = 0.004687274697242562                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.2339e+05 | 262144 |      1 | 3.624e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.56457637520184 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.367021432220327, dt = 0.0006101467270414052
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.30 us    (2.5%)
   patch tree reduce : 2.40 us    (0.8%)
   gen split merge   : 1.40 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 265.41 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (72.4%)
Info: cfl dt = 0.004687274684117941                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6960e+05 | 262144 |      1 | 3.406e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.448520480769495 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 273.224994491 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.3676315789473684, dt = 0.004687274684117941
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.00 us   (3.4%)
   patch tree reduce : 2.28 us    (0.6%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 354.70 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (66.6%)
Info: cfl dt = 0.004687273920979769                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8357e+05 | 262144 |      1 | 3.346e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.438254664335055 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37231885363148637, dt = 0.004687273920979769
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.85 us    (2.2%)
   patch tree reduce : 1.95 us    (0.5%)
   gen split merge   : 1.25 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 319.22 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (72.9%)
Info: cfl dt = 0.004687271911624214                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7559e+05 | 262144 |      1 | 3.380e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.92450168262758 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37700612755246615, dt = 0.004687271911624214
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (1.9%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 316.07 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (71.2%)
Info: cfl dt = 0.0046872695373915835                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5252e+05 | 262144 |      1 | 3.484e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.439456467887425 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38169339946409037, dt = 0.0046872695373915835
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.2%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 286.60 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (69.8%)
Info: cfl dt = 0.004687266859495296                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8431e+05 | 262144 |      1 | 3.342e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.4858489408688 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38638066900148194, dt = 0.004687266859495296
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.58 us    (2.2%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 314.57 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (66.1%)
Info: cfl dt = 0.004687263997351637                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3814e+05 | 262144 |      1 | 3.551e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.51382944832888 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3910679358609772, dt = 0.004687263997351637
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.2%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 290.86 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (72.3%)
Info: cfl dt = 0.004687260829759408                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5804e+05 | 262144 |      1 | 3.458e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.79471771400124 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39575519985832885, dt = 0.004687260829759408
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.67 us    (2.6%)
   patch tree reduce : 2.64 us    (0.8%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 304.91 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (70.8%)
Info: cfl dt = 0.004687257654503339                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.2990e+05 | 262144 |      1 | 3.592e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.983191591572236 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40044246068808825, dt = 0.0006101708908591297
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.37 us    (2.3%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 298.89 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (70.3%)
Info: cfl dt = 0.004687257242896915                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4795e+05 | 262144 |      1 | 3.505e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.267404029357847 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 276.52263488100004 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.4010526315789474, dt = 0.004687257242896915
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.41 us   (3.3%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 344.39 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (70.0%)
Info: cfl dt = 0.004687254145496256                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8569e+05 | 262144 |      1 | 3.336e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.574556490480525 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4057398888218443, dt = 0.004687254145496256
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.29 us    (1.1%)
   patch tree reduce : 2.63 us    (0.3%)
   gen split merge   : 1.20 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.2%)
   LB compute        : 735.78 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 us    (77.9%)
Info: cfl dt = 0.0046872511606204596                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.2890e+05 | 262144 |      1 | 3.596e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.91875590821263 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41042714296734056, dt = 0.0046872511606204596
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.83 us    (2.4%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 305.03 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (68.6%)
Info: cfl dt = 0.00468724832261416                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4894e+05 | 262144 |      1 | 3.500e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.20907389801907 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41511439412796103, dt = 0.00468724832261416
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.62 us    (2.1%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 341.63 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 5.32 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (76.1%)
Info: cfl dt = 0.004687245663721293                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4999e+05 | 262144 |      1 | 3.495e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.27639153523643 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41980164245057516, dt = 0.004687245663721293
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (2.2%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 297.93 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (73.5%)
Info: cfl dt = 0.004687243050476524                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3683e+05 | 262144 |      1 | 3.558e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.429255144690565 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42448888811429647, dt = 0.004687243050476524
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.43 us    (2.0%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 342.64 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (72.7%)
Info: cfl dt = 0.004687240359628566                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7738e+05 | 262144 |      1 | 3.372e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.03977195747605 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.429176131164773, dt = 0.004687240359628566
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.61 us    (2.4%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 287.44 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.2%)
Info: cfl dt = 0.004687237800149438                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7154e+05 | 262144 |      1 | 3.398e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.66344082468623 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4338633715244016, dt = 0.0006103126861247699
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.31 us    (2.2%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 315.04 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 us    (73.6%)
Info: cfl dt = 0.0046872374811259                                        [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6246e+05 | 262144 |      1 | 3.438e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.390496333499337 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 279.808185367 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.43447368421052635, dt = 0.0046872374811259
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.43 us   (3.3%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.3%)
   LB compute        : 350.15 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (74.1%)
Info: cfl dt = 0.004687235103275107                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8232e+05 | 262144 |      1 | 3.351e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.357674055107495 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4391609216916522, dt = 0.004687235103275107
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.11 us    (2.7%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 271.76 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (70.9%)
Info: cfl dt = 0.004687232931386062                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.2296e+05 | 262144 |      1 | 3.626e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.53651702593086 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44384815679492734, dt = 0.004687232931386062
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.57 us    (2.4%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 287.78 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (75.2%)
Info: cfl dt = 0.004687230999651154                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6626e+05 | 262144 |      1 | 3.421e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.32342513998486 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4485353897263134, dt = 0.004687230999651154
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.20 us    (2.1%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 325.20 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (72.4%)
Info: cfl dt = 0.004687229345943312                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8192e+05 | 262144 |      1 | 3.353e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.331763667942006 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45322262072596453, dt = 0.004687229345943312
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.79 us    (2.4%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 307.51 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 us    (77.0%)
Info: cfl dt = 0.004687227997326023                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8498e+05 | 262144 |      1 | 3.340e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.52831744931023 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4579098500719078, dt = 0.004687227997326023
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.29 us    (2.2%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 310.44 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (66.2%)
Info: cfl dt = 0.0046872269851473075                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7764e+05 | 262144 |      1 | 3.371e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.05632023353378 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46259707806923384, dt = 0.0046872269851473075
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.0%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.5%)
   LB compute        : 309.65 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (73.6%)
Info: cfl dt = 0.004687226321255234                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8331e+05 | 262144 |      1 | 3.347e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.4213718083039 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4672843050543811, dt = 0.0006104317877241305
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.37 us    (2.3%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 300.70 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (73.4%)
Info: cfl dt = 0.004687226277731657                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8256e+05 | 262144 |      1 | 3.350e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.560168340128991 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 283.04059723 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.46789473684210525, dt = 0.004687226277731657
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.48 us   (3.5%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 590.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 327.95 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (68.5%)
Info: cfl dt = 0.00468722602462163                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9255e+05 | 262144 |      1 | 3.308e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.01597759788585 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4725819631198369, dt = 0.00468722602462163
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (2.1%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 305.71 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (63.9%)
Info: cfl dt = 0.004687226080430847                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4942e+05 | 262144 |      1 | 3.498e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.23976333523229 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47726918914445854, dt = 0.004687226080430847
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.26 us    (2.3%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 1.49 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 289.57 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (68.3%)
Info: cfl dt = 0.004687225798335266                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7386e+05 | 262144 |      1 | 3.387e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.813098860915375 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4819564152248894, dt = 0.004687225798335266
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.75 us    (2.4%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 292.77 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (70.9%)
Info: cfl dt = 0.004687225288863662                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8752e+05 | 262144 |      1 | 3.329e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.69202286286882 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48664364102322466, dt = 0.004687225288863662
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.05 us    (2.1%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 315.02 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (76.1%)
Info: cfl dt = 0.00468722504443367                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8432e+05 | 262144 |      1 | 3.342e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.48597895988833 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49133086631208833, dt = 0.00468722504443367
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.22 us    (2.0%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 338.30 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.4%)
Info: cfl dt = 0.004687225036305165                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7033e+05 | 262144 |      1 | 3.403e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.58574158704366 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49601809135652203, dt = 0.004687225036305165
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.00 us    (2.3%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 18.27 us   (5.2%)
   LB compute        : 312.11 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (68.1%)
Info: cfl dt = 0.00468722523621568                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8779e+05 | 262144 |      1 | 3.328e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.70943759044775 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5007053163928272, dt = 0.0006104730808570435
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.3%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 272.86 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (67.8%)
Info: cfl dt = 0.004687225287887825                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.9095e+05 | 262144 |      1 | 3.794e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.792613574056754 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 286.503355774 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.5013157894736843, dt = 0.004687225287887825
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.95 us   (3.5%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 611.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 341.06 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (70.5%)
Info: cfl dt = 0.004687225687580076                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4152e+05 | 262144 |      1 | 3.535e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.731113542492054 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5060030147615721, dt = 0.004687225687580076
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.9%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 611.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 319.77 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (67.8%)
Info: cfl dt = 0.004687226248431676                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3128e+05 | 262144 |      1 | 3.585e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.07183872614234 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5106902404491521, dt = 0.004687226248431676
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.3%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 280.52 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (66.4%)
Info: cfl dt = 0.004687226955426723                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8395e+05 | 262144 |      1 | 3.344e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.46238020930558 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5153774666975838, dt = 0.004687226955426723
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.21 us    (2.1%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 329.54 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (69.7%)
Info: cfl dt = 0.00468722776570291                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7896e+05 | 262144 |      1 | 3.365e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.14105743132971 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5200646936530104, dt = 0.00468722776570291
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (2.1%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 311.63 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (70.5%)
Info: cfl dt = 0.004687228666571532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.3897e+05 | 262144 |      1 | 3.547e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.566766453013216 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5247519214187134, dt = 0.004687228666571532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (2.3%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 278.05 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.2%)
Info: cfl dt = 0.004687229662310157                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5360e+05 | 262144 |      1 | 3.479e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.50838139579791 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.529439150085285, dt = 0.004687229662310157
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.0%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 309.50 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (66.4%)
Info: cfl dt = 0.004687230740544409                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8336e+05 | 262144 |      1 | 3.346e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.4242359719628 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5341263797475951, dt = 0.0006104623576680401
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (2.0%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 314.39 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (67.5%)
Info: cfl dt = 0.004687230893819568                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.6798e+05 | 262144 |      1 | 3.924e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.599997232712573 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 289.833601869 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.5347368421052632, dt = 0.004687230893819568
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.45 us   (3.5%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 611.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 328.04 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (68.4%)
Info: cfl dt = 0.004687232087359084                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5991e+05 | 262144 |      1 | 3.450e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.91476350305055 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5394240729990828, dt = 0.004687232087359084
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.11 us    (2.0%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 325.12 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (64.1%)
Info: cfl dt = 0.004687233386048093                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7202e+05 | 262144 |      1 | 3.396e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.69438405251937 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5441113050864419, dt = 0.004687233386048093
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.42 us    (2.2%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.50 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 313.77 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (71.3%)
Info: cfl dt = 0.004687234772178767                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7427e+05 | 262144 |      1 | 3.386e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.839286081286986 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5487985384724899, dt = 0.004687234772178767
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.86 us    (2.2%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 326.35 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (68.1%)
Info: cfl dt = 0.004687236213515615                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6452e+05 | 262144 |      1 | 3.429e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.21182526560122 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5534857732446687, dt = 0.004687236213515615
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.28 us    (2.1%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 329.29 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (71.2%)
Info: cfl dt = 0.004687237682170428                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6881e+05 | 262144 |      1 | 3.410e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.4876199529189 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5581730094581844, dt = 0.004687237682170428
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (1.9%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.50 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 353.05 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (73.8%)
Info: cfl dt = 0.004687239153525046                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7597e+05 | 262144 |      1 | 3.378e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.94896027533733 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5628602471403548, dt = 0.004687239153525046
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.41 us    (2.1%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 322.38 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 7.93 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (77.1%)
Info: cfl dt = 0.004687240606236026                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7352e+05 | 262144 |      1 | 3.389e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.79074757846423 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5675474862938799, dt = 0.0006104084429622292
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.50 us    (2.8%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1.39 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 278.41 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.72 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (69.9%)
Info: cfl dt = 0.004687240794374505                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.4064e+05 | 262144 |      1 | 3.539e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.208588389669787 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 293.098845578 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.5681578947368421, dt = 0.004687240794374505
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.55 us   (3.6%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 351.42 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (74.9%)
Info: cfl dt = 0.0046872421978846465                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7875e+05 | 262144 |      1 | 3.366e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.12793135611606 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5728451355312166, dt = 0.0046872421978846465
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.31 us    (2.2%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 310.12 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (74.7%)
Info: cfl dt = 0.004687243544542626                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7840e+05 | 262144 |      1 | 3.368e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.10514616136421 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5775323777291013, dt = 0.004687243544542626
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.08 us    (1.8%)
   patch tree reduce : 2.32 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 367.87 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 us    (75.7%)
Info: cfl dt = 0.004687244822981616                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6352e+05 | 262144 |      1 | 3.433e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.14736269969008 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5822196212736439, dt = 0.004687244822981616
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.98 us    (2.3%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 316.40 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (73.7%)
Info: cfl dt = 0.004687246026629418                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8150e+05 | 262144 |      1 | 3.354e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.304526683904584 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5869068660966256, dt = 0.004687246026629418
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (2.0%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.46 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 317.40 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.2%)
Info: cfl dt = 0.004687247152637194                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.6881e+05 | 262144 |      1 | 3.920e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.0510674247114 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.591594112123255, dt = 0.004687247152637194
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (2.1%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 314.09 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (63.9%)
Info: cfl dt = 0.004687248200669637                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.9777e+05 | 262144 |      1 | 3.757e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.91508796276375 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5962813592758922, dt = 0.004687248200669637
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.35 us    (2.6%)
   patch tree reduce : 1.95 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 264.97 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (64.3%)
Info: cfl dt = 0.00468724917272736                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 6.6399e+05 | 262144 |      1 | 3.948e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.740791976636544 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6009686074765619, dt = 0.0006103398918592129
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.26 us    (2.3%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 298.25 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (65.0%)
Info: cfl dt = 0.004687249297860125                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.5136e+05 | 262144 |      1 | 3.489e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.297670796841371 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 296.48329334000005 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.6015789473684211, dt = 0.004687249297860125
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.93 us   (3.2%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 611.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 344.16 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (70.1%)
Info: cfl dt = 0.004687250185202724                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9133e+05 | 262144 |      1 | 3.313e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.93764657181309 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6062661966662812, dt = 0.004687250185202724
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.51 us    (2.3%)
   patch tree reduce : 2.38 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 303.86 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (64.4%)
Info: cfl dt = 0.004687251006978441                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.7819e+05 | 262144 |      1 | 3.369e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.09146451740539 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.610953446851484, dt = 0.004687251006978441
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (2.0%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 331.08 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (72.4%)
Info: cfl dt = 0.004687251769222992                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8371e+05 | 262144 |      1 | 3.345e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.447366873261 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6156406978584624, dt = 0.004687251769222992
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (2.3%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 284.27 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (70.7%)
Info: cfl dt = 0.004687252477173685                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8818e+05 | 262144 |      1 | 3.326e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.73490132496053 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6203279496276854, dt = 0.004687252477173685
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.2%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.42 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 270.81 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.3%)
Info: cfl dt = 0.004687253135355408                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8539e+05 | 262144 |      1 | 3.338e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.55540272467853 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6250152021048592, dt = 0.004687253135355408
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.26 us    (2.1%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 328.55 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 18.67 us   (95.1%)
Info: cfl dt = 0.004687253747330769                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.8923e+05 | 262144 |      1 | 3.321e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.802748086231844 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6297024552402146, dt = 0.004687253747330769
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (1.7%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.4%)
   LB compute        : 360.77 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (71.6%)
Info: cfl dt = 0.004687254315761985                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.9855e+05 | 262144 |      1 | 3.283e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.40248278899103 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6343897089875454, dt = 0.000610291012454578
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 32768.0 min = 32768.0 factor = 1
 - strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 32768
    max = 32768
    avg = 32768
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.24 us    (2.0%)
   patch tree reduce : 2.28 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 342.99 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (74.6%)
Info: cfl dt = 0.004687254392722073                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) |  Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0    | 7.6681e+05 | 262144 |      1 | 3.419e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.42668328659014 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 299.67224696200003 (s)                                   [Godunov][rank=0]

Total running time of the script: (5 minutes 1.388 seconds)

Estimated memory usage: 1652 MB

Gallery generated by Sphinx-Gallery