Note
Go to the end to download the full example code.
Boundary conditions for linear wave propagation#
8 import os
9
10 import matplotlib
11 import matplotlib.pyplot as plt
12 import numpy as np
13 from matplotlib import animation
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 7.37 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 : 7.04 us (57.2%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (0.2%)
patch tree reduce : 1.52 us (0.2%)
gen split merge : 1.19 us (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.2%)
LB compute : 659.29 us (97.8%)
LB move op cnt : 0
LB apply : 5.00 us (0.7%)
Info: patch count stable after 1 runs npatch = 1 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: defaulting reduction implementation to impl : {"implementation":"group_reduction","parameters":{"group_size":128}} [algs][rank=0]
Info: defaulting sort by key (pow2 len) implementation to impl : {"implementation":"bitonic_sort","parameters":{"stencil_size":16}} [algs][rank=0]
Info: time since start : 8.538229293 (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 : 14.68 us (5.6%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 923.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.6%)
LB compute : 228.33 us (87.7%)
LB move op cnt : 0
LB apply : 4.67 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (69.3%)
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 | 8.2558e+05 | 262144 | 1 | 3.175e-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 : 6.63 us (3.4%)
patch tree reduce : 1.89 us (1.0%)
gen split merge : 1.42 us (0.7%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 171.09 us (88.3%)
LB move op cnt : 0
LB apply : 4.09 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (67.3%)
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 | 1.2278e+06 | 262144 | 1 | 2.135e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.02664758754665 (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.52 us (3.1%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.56 us (0.6%)
LB compute : 217.31 us (89.9%)
LB move op cnt : 0
LB apply : 4.78 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (66.0%)
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 | 1.2826e+06 | 262144 | 1 | 2.044e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.55646864590474 (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 : 8.92 us (4.3%)
patch tree reduce : 1.69 us (0.8%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 1.34 us (0.6%)
LB compute : 179.51 us (87.3%)
LB move op cnt : 0
LB apply : 4.78 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (67.9%)
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 | 1.2232e+06 | 262144 | 1 | 2.143e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.73162920769771 (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.46 us (3.5%)
patch tree reduce : 2.45 us (1.2%)
gen split merge : 1.24 us (0.6%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 186.03 us (88.4%)
LB move op cnt : 0
LB apply : 4.19 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (71.5%)
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 | 1.2347e+06 | 262144 | 1 | 2.123e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.47198616089182 (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.30 us (3.2%)
patch tree reduce : 2.41 us (1.0%)
gen split merge : 1.54 us (0.7%)
split / merge op : 0/0
apply split merge : 1.40 us (0.6%)
LB compute : 206.04 us (89.5%)
LB move op cnt : 0
LB apply : 4.38 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (66.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 | 1.2545e+06 | 262144 | 1 | 2.090e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.74892286382011 (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.45 us (3.3%)
patch tree reduce : 1.38 us (0.6%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 204.00 us (89.5%)
LB move op cnt : 0
LB apply : 4.44 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (71.3%)
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 | 1.2486e+06 | 262144 | 1 | 2.100e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.36854723162898 (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.34 us (3.3%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.33 us (0.6%)
LB compute : 198.52 us (89.3%)
LB move op cnt : 0
LB apply : 4.58 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (64.3%)
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 | 1.2425e+06 | 262144 | 1 | 2.110e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.97882915643086 (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.56 us (3.8%)
patch tree reduce : 2.30 us (1.2%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.39 us (0.7%)
LB compute : 171.69 us (87.4%)
LB move op cnt : 0
LB apply : 4.61 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (64.4%)
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 | 1.1972e+06 | 262144 | 1 | 2.190e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.057551503094919 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 10.92798282 (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 : 15.21 us (3.7%)
patch tree reduce : 2.04 us (0.5%)
gen split merge : 1.02 us (0.2%)
split / merge op : 0/0
apply split merge : 1.80 us (0.4%)
LB compute : 378.47 us (91.7%)
LB move op cnt : 0
LB apply : 5.86 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (72.9%)
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 | 1.2260e+06 | 262144 | 1 | 2.138e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.9118694771335 (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.55 us (3.1%)
patch tree reduce : 1.37 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 220.57 us (90.2%)
LB move op cnt : 0
LB apply : 4.45 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (72.6%)
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 | 1.1816e+06 | 262144 | 1 | 2.218e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.05937620808207 (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.09 us (3.1%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.40 us (0.6%)
split / merge op : 0/0
apply split merge : 1.61 us (0.7%)
LB compute : 205.55 us (89.8%)
LB move op cnt : 0
LB apply : 4.03 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (69.7%)
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 | 1.1816e+06 | 262144 | 1 | 2.218e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.05957058468292 (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 : 8.11 us (3.6%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.55 us (0.7%)
split / merge op : 0/0
apply split merge : 1.30 us (0.6%)
LB compute : 201.85 us (89.2%)
LB move op cnt : 0
LB apply : 3.56 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (68.1%)
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 | 1.1039e+06 | 262144 | 1 | 2.375e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.05714772596387 (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 : 6.84 us (3.2%)
patch tree reduce : 2.24 us (1.0%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 1.37 us (0.6%)
LB compute : 193.72 us (89.2%)
LB move op cnt : 0
LB apply : 4.30 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (62.3%)
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 | 9.2854e+05 | 262144 | 1 | 2.823e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.76831899945113 (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.66 us (3.1%)
patch tree reduce : 2.39 us (1.0%)
gen split merge : 1.37 us (0.6%)
split / merge op : 0/0
apply split merge : 1.53 us (0.6%)
LB compute : 218.88 us (89.6%)
LB move op cnt : 0
LB apply : 4.56 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (68.6%)
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 | 1.1814e+06 | 262144 | 1 | 2.219e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.0421486810873 (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 : 6.93 us (3.3%)
patch tree reduce : 2.28 us (1.1%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 1.41 us (0.7%)
LB compute : 183.45 us (88.4%)
LB move op cnt : 0
LB apply : 4.30 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (68.6%)
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 | 9.1324e+05 | 262144 | 1 | 2.870e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.78400633853196 (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 : 7.09 us (3.3%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.30 us (0.6%)
split / merge op : 0/0
apply split merge : 1.89 us (0.9%)
LB compute : 188.22 us (88.5%)
LB move op cnt : 0
LB apply : 4.85 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (67.5%)
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 | 1.2236e+06 | 262144 | 1 | 2.142e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.270512981380797 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 13.227227629000001 (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 : 12.77 us (4.9%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 1.39 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 231.64 us (88.8%)
LB move op cnt : 0
LB apply : 4.27 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (72.6%)
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 | 1.2697e+06 | 262144 | 1 | 2.065e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.73096513450464 (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 : 6.34 us (2.6%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 218.72 us (90.7%)
LB move op cnt : 0
LB apply : 4.14 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (68.6%)
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 | 1.1759e+06 | 262144 | 1 | 2.229e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.69115751947024 (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.45 us (3.1%)
patch tree reduce : 1.61 us (0.7%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.75 us (0.7%)
LB compute : 218.79 us (90.1%)
LB move op cnt : 0
LB apply : 4.28 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (72.8%)
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 | 1.0718e+06 | 262144 | 1 | 2.446e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.99335765334497 (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 : 7.74 us (3.1%)
patch tree reduce : 2.25 us (0.9%)
gen split merge : 1.41 us (0.6%)
split / merge op : 0/0
apply split merge : 1.71 us (0.7%)
LB compute : 228.15 us (90.1%)
LB move op cnt : 0
LB apply : 4.63 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (65.3%)
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 | 1.0778e+06 | 262144 | 1 | 2.432e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.37992394777878 (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 : 8.23 us (4.0%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 1.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1.66 us (0.8%)
LB compute : 182.37 us (88.1%)
LB move op cnt : 0
LB apply : 4.46 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (69.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 | 1.1815e+06 | 262144 | 1 | 2.219e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.05267364538336 (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.02 us (3.4%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 180.48 us (88.4%)
LB move op cnt : 0
LB apply : 4.53 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (67.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 | 1.1649e+06 | 262144 | 1 | 2.250e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.98138742305235 (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 : 6.83 us (3.3%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.27 us (0.6%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 186.22 us (88.9%)
LB move op cnt : 0
LB apply : 4.45 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (66.5%)
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 | 1.1779e+06 | 262144 | 1 | 2.226e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.81812794954172 (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.23 us (3.1%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.38 us (0.6%)
split / merge op : 0/0
apply split merge : 1.58 us (0.7%)
LB compute : 210.72 us (89.3%)
LB move op cnt : 0
LB apply : 4.63 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (66.1%)
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 | 9.9260e+05 | 262144 | 1 | 2.641e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.323572541053093 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 15.475928332 (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 : 14.89 us (4.9%)
patch tree reduce : 2.21 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 : 273.38 us (89.6%)
LB move op cnt : 0
LB apply : 4.66 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (64.7%)
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 | 1.2432e+06 | 262144 | 1 | 2.109e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.02577161691246 (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 : 6.93 us (3.1%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.45 us (0.6%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 202.69 us (89.2%)
LB move op cnt : 0
LB apply : 4.33 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (66.2%)
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 | 1.1032e+06 | 262144 | 1 | 2.376e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.01391958097126 (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 : 6.89 us (3.5%)
patch tree reduce : 1.65 us (0.8%)
gen split merge : 1.35 us (0.7%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 173.61 us (87.8%)
LB move op cnt : 0
LB apply : 4.89 us (2.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (69.6%)
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 | 1.1780e+06 | 262144 | 1 | 2.225e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.8275877997386 (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 : 7.45 us (3.6%)
patch tree reduce : 1.81 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 182.64 us (88.3%)
LB move op cnt : 0
LB apply : 4.61 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (67.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 | 1.1712e+06 | 262144 | 1 | 2.238e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.39208824372386 (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 : 7.33 us (3.5%)
patch tree reduce : 2.29 us (1.1%)
gen split merge : 1.39 us (0.7%)
split / merge op : 0/0
apply split merge : 1.55 us (0.7%)
LB compute : 183.96 us (88.4%)
LB move op cnt : 0
LB apply : 4.01 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (64.9%)
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 | 1.2733e+06 | 262144 | 1 | 2.059e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.95994860550395 (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 : 7.12 us (3.4%)
patch tree reduce : 2.27 us (1.1%)
gen split merge : 1.39 us (0.7%)
split / merge op : 0/0
apply split merge : 1.54 us (0.7%)
LB compute : 185.29 us (88.0%)
LB move op cnt : 0
LB apply : 4.67 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (63.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 | 1.2654e+06 | 262144 | 1 | 2.072e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.45186605372311 (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 : 6.37 us (2.8%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.35 us (0.6%)
LB compute : 202.13 us (89.6%)
LB move op cnt : 0
LB apply : 5.11 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (71.3%)
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 | 1.2781e+06 | 262144 | 1 | 2.051e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.27166388146357 (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.21 us (3.3%)
patch tree reduce : 1.56 us (0.7%)
gen split merge : 1.62 us (0.7%)
split / merge op : 0/0
apply split merge : 1.92 us (0.9%)
LB compute : 198.55 us (89.6%)
LB move op cnt : 0
LB apply : 3.80 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (68.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 | 1.1872e+06 | 262144 | 1 | 2.208e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.947905142721702 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 17.606308594 (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 : 14.54 us (3.6%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.39 us (0.3%)
LB compute : 361.05 us (88.4%)
LB move op cnt : 0
LB apply : 9.74 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (74.8%)
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 | 1.2772e+06 | 262144 | 1 | 2.052e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.21294946829586 (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 : 7.46 us (3.7%)
patch tree reduce : 2.24 us (1.1%)
gen split merge : 1.37 us (0.7%)
split / merge op : 0/0
apply split merge : 1.72 us (0.9%)
LB compute : 175.65 us (87.8%)
LB move op cnt : 0
LB apply : 4.44 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (64.7%)
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 | 1.2373e+06 | 262144 | 1 | 2.119e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.64664613216124 (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.41 us (3.7%)
patch tree reduce : 1.49 us (0.7%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.33 us (0.7%)
LB compute : 176.34 us (88.3%)
LB move op cnt : 0
LB apply : 4.49 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (70.3%)
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 | 1.1811e+06 | 262144 | 1 | 2.220e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.02411094044045 (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.10 us (3.4%)
patch tree reduce : 1.87 us (0.9%)
gen split merge : 1.23 us (0.6%)
split / merge op : 0/0
apply split merge : 1.46 us (0.7%)
LB compute : 185.87 us (88.2%)
LB move op cnt : 0
LB apply : 4.35 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (69.0%)
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 | 1.2586e+06 | 262144 | 1 | 2.083e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.01883962515156 (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.14 us (3.4%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 1.79 us (0.8%)
LB compute : 186.84 us (88.6%)
LB move op cnt : 0
LB apply : 3.80 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (72.9%)
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 | 9.3945e+05 | 262144 | 1 | 2.790e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.47212884906258 (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 : 8.14 us (3.7%)
patch tree reduce : 2.33 us (1.1%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 1.36 us (0.6%)
LB compute : 193.18 us (88.4%)
LB move op cnt : 0
LB apply : 4.41 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (63.7%)
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 | 9.2737e+05 | 262144 | 1 | 2.827e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.6946162947643 (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 : 7.97 us (3.4%)
patch tree reduce : 2.41 us (1.0%)
gen split merge : 1.41 us (0.6%)
split / merge op : 0/0
apply split merge : 1.35 us (0.6%)
LB compute : 208.46 us (89.2%)
LB move op cnt : 0
LB apply : 4.41 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (68.1%)
Info: cfl dt = 0.004687258684509832 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1294e+06 | 262144 | 1 | 2.321e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.69680338068466 (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.62 us (3.5%)
patch tree reduce : 2.39 us (1.1%)
gen split merge : 1.39 us (0.6%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 192.54 us (88.6%)
LB move op cnt : 0
LB apply : 4.32 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (65.1%)
Info: cfl dt = 0.004687258281807403 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.0421e+06 | 262144 | 1 | 2.516e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.732054543682993 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 20.054343868 (s) [Godunov][rank=0]
amr::Godunov: t = 0.16710526315789476, dt = 0.004687258281807403
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 14.23 us (4.8%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 267.83 us (89.5%)
LB move op cnt : 0
LB apply : 4.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (20.4%)
Info: cfl dt = 0.004687255242611124 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 9.2092e+05 | 262144 | 1 | 2.847e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.279594459963846 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17179252143970217, dt = 0.004687255242611124
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.0%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.74 us (0.7%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 215.64 us (89.8%)
LB move op cnt : 0
LB apply : 4.07 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (66.8%)
Info: cfl dt = 0.004687252271916805 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.0915e+06 | 262144 | 1 | 2.402e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.25780273896432 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1764797766823133, dt = 0.004687252271916805
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.40 us (0.6%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 220.98 us (90.3%)
LB move op cnt : 0
LB apply : 4.54 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (67.4%)
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 | 1.0857e+06 | 262144 | 1 | 2.415e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.88498782676048 (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.10 us (3.1%)
patch tree reduce : 2.30 us (1.0%)
gen split merge : 1.40 us (0.6%)
split / merge op : 0/0
apply split merge : 1.52 us (0.7%)
LB compute : 204.19 us (89.2%)
LB move op cnt : 0
LB apply : 4.89 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (71.9%)
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 | 1.0240e+06 | 262144 | 1 | 2.560e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.9149402684496 (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 : 6.66 us (2.8%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.37 us (0.6%)
split / merge op : 0/0
apply split merge : 1.54 us (0.6%)
LB compute : 212.98 us (89.8%)
LB move op cnt : 0
LB apply : 4.53 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (60.7%)
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 | 1.2499e+06 | 262144 | 1 | 2.097e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.45520358867923 (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.61 us (3.4%)
patch tree reduce : 2.39 us (1.1%)
gen split merge : 1.38 us (0.6%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 199.02 us (88.5%)
LB move op cnt : 0
LB apply : 4.65 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (62.8%)
Info: cfl dt = 0.0046872417188972525 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2344e+06 | 262144 | 1 | 2.124e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.46014485693038 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1952287690971273, dt = 0.0046872417188972525
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.1%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.40 us (0.6%)
LB compute : 195.63 us (89.1%)
LB move op cnt : 0
LB apply : 4.32 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (64.8%)
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 | 1.2234e+06 | 262144 | 1 | 2.143e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.7496722282778 (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 : 6.58 us (2.7%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 1.31 us (0.5%)
split / merge op : 0/0
apply split merge : 1.58 us (0.7%)
LB compute : 218.22 us (90.2%)
LB move op cnt : 0
LB apply : 4.94 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (74.7%)
Info: cfl dt = 0.004687239271247985 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1879e+06 | 262144 | 1 | 2.207e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.955922443498084 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 22.319847062 (s) [Godunov][rank=0]
amr::Godunov: t = 0.2005263157894737, dt = 0.004687239271247985
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 14.26 us (4.6%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 274.96 us (89.5%)
LB move op cnt : 0
LB apply : 5.24 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (74.6%)
Info: cfl dt = 0.004687237308141552 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.0635e+06 | 262144 | 1 | 2.465e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.45863535883828 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20521355506072167, dt = 0.004687237308141552
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1.53 us (0.3%)
gen split merge : 1.57 us (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.3%)
LB compute : 504.92 us (95.2%)
LB move op cnt : 0
LB apply : 5.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (84.7%)
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 | 1.2117e+06 | 262144 | 1 | 2.163e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.99945831048034 (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.88 us (4.0%)
patch tree reduce : 1.46 us (0.7%)
gen split merge : 1.55 us (0.8%)
split / merge op : 0/0
apply split merge : 1.38 us (0.7%)
LB compute : 175.37 us (88.2%)
LB move op cnt : 0
LB apply : 4.09 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (69.6%)
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 | 1.2510e+06 | 262144 | 1 | 2.095e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.52835001300208 (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 : 6.81 us (3.6%)
patch tree reduce : 1.55 us (0.8%)
gen split merge : 1.07 us (0.6%)
split / merge op : 0/0
apply split merge : 1.33 us (0.7%)
LB compute : 167.89 us (87.9%)
LB move op cnt : 0
LB apply : 4.89 us (2.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (68.0%)
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 | 1.2733e+06 | 262144 | 1 | 2.059e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.95835264795102 (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 : 7.44 us (3.5%)
patch tree reduce : 2.41 us (1.1%)
gen split merge : 1.25 us (0.6%)
split / merge op : 0/0
apply split merge : 1.59 us (0.8%)
LB compute : 186.23 us (88.3%)
LB move op cnt : 0
LB apply : 4.59 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (66.7%)
Info: cfl dt = 0.004687231164622711 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1777e+06 | 262144 | 1 | 2.226e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.80653733481724 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22396249435967644, dt = 0.004687231164622711
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.7%)
patch tree reduce : 2.44 us (1.2%)
gen split merge : 1.38 us (0.7%)
split / merge op : 0/0
apply split merge : 1.38 us (0.7%)
LB compute : 178.19 us (87.5%)
LB move op cnt : 0
LB apply : 4.79 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (66.5%)
Info: cfl dt = 0.004687230008255322 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2653e+06 | 262144 | 1 | 2.072e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.44923068848897 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22864972552429916, dt = 0.004687230008255322
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.7%)
patch tree reduce : 2.38 us (1.2%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 1.72 us (0.9%)
LB compute : 176.28 us (88.0%)
LB move op cnt : 0
LB apply : 4.20 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (68.1%)
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 | 1.2593e+06 | 262144 | 1 | 2.082e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.05890729276929 (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.32 us (2.9%)
patch tree reduce : 1.59 us (0.6%)
gen split merge : 1.49 us (0.6%)
split / merge op : 0/0
apply split merge : 1.88 us (0.8%)
LB compute : 223.53 us (90.0%)
LB move op cnt : 0
LB apply : 4.84 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (65.9%)
Info: cfl dt = 0.004687228920633912 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2016e+06 | 262144 | 1 | 2.182e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.073041063379902 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 24.435386970000003 (s) [Godunov][rank=0]
amr::Godunov: t = 0.23394736842105263, dt = 0.004687228920633912
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 14.47 us (5.7%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 918.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.57 us (0.6%)
LB compute : 223.47 us (87.7%)
LB move op cnt : 0
LB apply : 4.80 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (67.4%)
Info: cfl dt = 0.004687228110852185 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2775e+06 | 262144 | 1 | 2.052e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.2343413592637 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23863459734168654, dt = 0.004687228110852185
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.3%)
patch tree reduce : 2.41 us (1.1%)
gen split merge : 1.27 us (0.6%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 189.31 us (88.6%)
LB move op cnt : 0
LB apply : 4.67 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (66.3%)
Info: cfl dt = 0.004687227451969248 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.0329e+06 | 262144 | 1 | 2.538e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.48598974841963 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24332182545253872, dt = 0.004687227451969248
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.4%)
patch tree reduce : 2.40 us (1.2%)
gen split merge : 1.39 us (0.7%)
split / merge op : 0/0
apply split merge : 1.63 us (0.8%)
LB compute : 182.05 us (88.3%)
LB move op cnt : 0
LB apply : 4.14 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (66.0%)
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 | 9.8201e+05 | 262144 | 1 | 2.669e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.21122741587858 (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.05 us (3.0%)
patch tree reduce : 2.61 us (1.1%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.46 us (0.6%)
LB compute : 208.48 us (89.2%)
LB move op cnt : 0
LB apply : 4.66 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (71.8%)
Info: cfl dt = 0.004687226540084675 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2633e+06 | 262144 | 1 | 2.075e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.31835021428677 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2526962798365931, dt = 0.004687226540084675
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.3%)
patch tree reduce : 1.53 us (0.7%)
gen split merge : 1.48 us (0.7%)
split / merge op : 0/0
apply split merge : 1.36 us (0.6%)
LB compute : 197.20 us (89.5%)
LB move op cnt : 0
LB apply : 3.91 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (69.2%)
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 | 1.2819e+06 | 262144 | 1 | 2.045e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.51246228131554 (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.13 us (3.2%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.99 us (0.9%)
LB compute : 197.69 us (88.8%)
LB move op cnt : 0
LB apply : 4.50 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (72.6%)
Info: cfl dt = 0.004687226096696861 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2663e+06 | 262144 | 1 | 2.070e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.507606723237 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26207073264174935, dt = 0.004687226096696861
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance 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 (3.6%)
patch tree reduce : 2.41 us (1.1%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.37 us (0.6%)
LB compute : 196.70 us (88.1%)
LB move op cnt : 0
LB apply : 4.60 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.6%)
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 | 1.2356e+06 | 262144 | 1 | 2.122e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.53208714835873 (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.22 us (3.0%)
patch tree reduce : 2.50 us (1.0%)
gen split merge : 1.39 us (0.6%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 218.58 us (89.6%)
LB move op cnt : 0
LB apply : 4.60 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (67.6%)
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 | 1.1361e+06 | 262144 | 1 | 2.307e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.524668099205552 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 26.626993462 (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 : 14.22 us (4.6%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.75 us (0.6%)
LB compute : 275.72 us (89.6%)
LB move op cnt : 0
LB apply : 5.21 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (70.9%)
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 | 1.2726e+06 | 262144 | 1 | 2.060e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.91500146307334 (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.07 us (3.2%)
patch tree reduce : 1.73 us (0.8%)
gen split merge : 1.25 us (0.6%)
split / merge op : 0/0
apply split merge : 1.44 us (0.7%)
LB compute : 195.98 us (89.3%)
LB move op cnt : 0
LB apply : 4.57 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (65.6%)
Info: cfl dt = 0.0046872261535240885 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2766e+06 | 262144 | 1 | 2.054e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.17112287910093 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.276742873139546, dt = 0.0046872261535240885
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.1%)
patch tree reduce : 2.39 us (1.0%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.44 us (0.6%)
LB compute : 217.11 us (90.0%)
LB move op cnt : 0
LB apply : 4.14 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (67.5%)
Info: cfl dt = 0.004687226324148573 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1677e+06 | 262144 | 1 | 2.245e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.16376346994055 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28143009929307006, dt = 0.004687226324148573
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.5%)
patch tree reduce : 1.98 us (1.0%)
gen split merge : 1.38 us (0.7%)
split / merge op : 0/0
apply split merge : 1.77 us (0.9%)
LB compute : 180.56 us (88.1%)
LB move op cnt : 0
LB apply : 4.41 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (64.5%)
Info: cfl dt = 0.004687226555453986 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2895e+06 | 262144 | 1 | 2.033e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.00151701659647 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28611732561721864, dt = 0.004687226555453986
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.3%)
patch tree reduce : 2.30 us (1.0%)
gen split merge : 1.39 us (0.6%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 202.40 us (88.9%)
LB move op cnt : 0
LB apply : 4.81 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (69.4%)
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 | 1.1006e+06 | 262144 | 1 | 2.382e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.84613912487914 (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.22 us (3.4%)
patch tree reduce : 2.29 us (1.1%)
gen split merge : 1.51 us (0.7%)
split / merge op : 0/0
apply split merge : 1.43 us (0.7%)
LB compute : 186.48 us (88.0%)
LB move op cnt : 0
LB apply : 4.77 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (64.2%)
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 | 1.2113e+06 | 262144 | 1 | 2.164e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.96911248431589 (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.40 us (3.5%)
patch tree reduce : 2.40 us (1.2%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.40 us (0.7%)
LB compute : 183.58 us (88.1%)
LB move op cnt : 0
LB apply : 4.45 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (63.8%)
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 | 1.2877e+06 | 262144 | 1 | 2.036e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.89045566281077 (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 : 7.51 us (3.2%)
patch tree reduce : 2.19 us (0.9%)
gen split merge : 1.47 us (0.6%)
split / merge op : 0/0
apply split merge : 1.37 us (0.6%)
LB compute : 206.04 us (89.0%)
LB move op cnt : 0
LB apply : 4.42 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (54.5%)
Info: cfl dt = 0.0046872275681792445 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 9.4010e+05 | 262144 | 1 | 2.788e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.881343655804767 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 28.787174283000002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.30078947368421055, dt = 0.0046872275681792445
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 14.27 us (5.5%)
patch tree reduce : 2.20 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 230.87 us (88.3%)
LB move op cnt : 0
LB apply : 4.25 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (70.5%)
Info: cfl dt = 0.004687227950262357 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2609e+06 | 262144 | 1 | 2.079e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.1608587119064 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3054767012523898, dt = 0.004687227950262357
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.0%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.49 us (0.7%)
split / merge op : 0/0
apply split merge : 1.67 us (0.7%)
LB compute : 201.37 us (89.0%)
LB move op cnt : 0
LB apply : 4.73 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (66.5%)
Info: cfl dt = 0.0046872283525386345 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2800e+06 | 262144 | 1 | 2.048e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.39069990767402 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3101639292026521, dt = 0.0046872283525386345
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.0%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.53 us (0.6%)
LB compute : 209.57 us (88.7%)
LB move op cnt : 0
LB apply : 5.04 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (65.1%)
Info: cfl dt = 0.004687228763321002 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1821e+06 | 262144 | 1 | 2.218e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.09040553386517 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3148511575551908, dt = 0.004687228763321002
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.7%)
patch tree reduce : 2.49 us (1.2%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.46 us (0.7%)
LB compute : 179.54 us (87.5%)
LB move op cnt : 0
LB apply : 4.27 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (73.4%)
Info: cfl dt = 0.004687229174705337 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2720e+06 | 262144 | 1 | 2.061e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.8800230105913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3195383863185118, dt = 0.004687229174705337
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.9%)
patch tree reduce : 1.83 us (0.9%)
gen split merge : 1.29 us (0.6%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 176.41 us (87.7%)
LB move op cnt : 0
LB apply : 4.62 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (68.0%)
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 | 1.2360e+06 | 262144 | 1 | 2.121e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.55930973164324 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3242256154932171, 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 : 5.92 us (2.7%)
patch tree reduce : 1.68 us (0.8%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 195.69 us (90.3%)
LB move op cnt : 0
LB apply : 3.80 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (67.2%)
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 | 1.1683e+06 | 262144 | 1 | 2.244e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.20228808888486 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32891284507520463, 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 : 7.23 us (3.3%)
patch tree reduce : 1.71 us (0.8%)
gen split merge : 1.33 us (0.6%)
split / merge op : 0/0
apply split merge : 1.35 us (0.6%)
LB compute : 192.56 us (89.0%)
LB move op cnt : 0
LB apply : 4.38 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (67.2%)
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 | 1.2079e+06 | 262144 | 1 | 2.170e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.75361995176414 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33360007505645856, dt = 0.0006104512593309575
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.0%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.40 us (0.6%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 208.51 us (89.3%)
LB move op cnt : 0
LB apply : 4.91 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (59.6%)
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 | 1.2793e+06 | 262144 | 1 | 2.049e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.724839861185767 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 30.869039557 (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 : 15.23 us (5.6%)
patch tree reduce : 2.14 us (0.8%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 237.23 us (87.8%)
LB move op cnt : 0
LB apply : 5.01 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (68.2%)
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 | 1.0113e+06 | 262144 | 1 | 2.592e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.0938858876701 (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 : 7.19 us (3.3%)
patch tree reduce : 2.44 us (1.1%)
gen split merge : 1.35 us (0.6%)
split / merge op : 0/0
apply split merge : 1.53 us (0.7%)
LB compute : 195.57 us (88.7%)
LB move op cnt : 0
LB apply : 4.20 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (65.8%)
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 | 1.0968e+06 | 262144 | 1 | 2.390e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.5977398176698 (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.59 us (3.9%)
patch tree reduce : 2.01 us (1.0%)
gen split merge : 1.24 us (0.6%)
split / merge op : 0/0
apply split merge : 1.86 us (1.0%)
LB compute : 170.33 us (87.0%)
LB move op cnt : 0
LB apply : 4.67 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (63.9%)
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 | 1.2003e+06 | 262144 | 1 | 2.184e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.26234966752688 (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 : 7.69 us (3.0%)
patch tree reduce : 2.39 us (0.9%)
gen split merge : 1.68 us (0.6%)
split / merge op : 0/0
apply split merge : 1.48 us (0.6%)
LB compute : 234.65 us (90.3%)
LB move op cnt : 0
LB apply : 4.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (68.6%)
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 | 9.3289e+05 | 262144 | 1 | 2.810e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.04970305453132 (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.38 us (3.0%)
patch tree reduce : 1.54 us (0.6%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.53 us (0.6%)
LB compute : 218.24 us (89.8%)
LB move op cnt : 0
LB apply : 4.96 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (68.6%)
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 | 1.2661e+06 | 262144 | 1 | 2.071e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.49559761164184 (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.12 us (3.3%)
patch tree reduce : 2.31 us (1.1%)
gen split merge : 1.52 us (0.7%)
split / merge op : 0/0
apply split merge : 1.40 us (0.7%)
LB compute : 189.47 us (88.6%)
LB move op cnt : 0
LB apply : 4.29 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (69.4%)
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 | 1.1701e+06 | 262144 | 1 | 2.240e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.31584879526055 (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 : 8.00 us (3.6%)
patch tree reduce : 2.32 us (1.1%)
gen split merge : 1.52 us (0.7%)
split / merge op : 0/0
apply split merge : 1.42 us (0.6%)
LB compute : 193.62 us (88.3%)
LB move op cnt : 0
LB apply : 4.34 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (66.5%)
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 | 1.2568e+06 | 262144 | 1 | 2.086e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.89782976592123 (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 : 7.38 us (3.8%)
patch tree reduce : 2.35 us (1.2%)
gen split merge : 1.40 us (0.7%)
split / merge op : 0/0
apply split merge : 1.53 us (0.8%)
LB compute : 171.98 us (87.4%)
LB move op cnt : 0
LB apply : 4.30 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (67.2%)
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 | 1.0938e+06 | 262144 | 1 | 2.397e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.169446760994447 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 33.128426425 (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 : 15.21 us (5.3%)
patch tree reduce : 2.25 us (0.8%)
gen split merge : 1.38 us (0.5%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 254.90 us (88.4%)
LB move op cnt : 0
LB apply : 4.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (71.7%)
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 | 1.1268e+06 | 262144 | 1 | 2.327e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.52939795367666 (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 : 7.14 us (2.9%)
patch tree reduce : 1.62 us (0.7%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.58 us (0.6%)
LB compute : 220.47 us (90.2%)
LB move op cnt : 0
LB apply : 4.75 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (70.4%)
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 | 1.2805e+06 | 262144 | 1 | 2.047e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.42266037043873 (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 : 7.60 us (3.9%)
patch tree reduce : 2.40 us (1.2%)
gen split merge : 1.41 us (0.7%)
split / merge op : 0/0
apply split merge : 1.52 us (0.8%)
LB compute : 172.06 us (87.3%)
LB move op cnt : 0
LB apply : 4.50 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (64.6%)
Info: cfl dt = 0.004687234016395931 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 9.5843e+05 | 262144 | 1 | 2.735e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.69348926593027 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38169327886069004, dt = 0.004687234016395931
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.8%)
patch tree reduce : 2.25 us (1.1%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 1.40 us (0.7%)
LB compute : 178.14 us (87.8%)
LB move op cnt : 0
LB apply : 3.91 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.8%)
Info: cfl dt = 0.004687234378236732 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2151e+06 | 262144 | 1 | 2.157e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.21526353550388 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38638051287708597, dt = 0.004687234378236732
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.8%)
patch tree reduce : 2.36 us (1.1%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.41 us (0.7%)
LB compute : 180.89 us (87.9%)
LB move op cnt : 0
LB apply : 4.21 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (66.8%)
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 | 1.2747e+06 | 262144 | 1 | 2.057e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.04904396993767 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3910677472553227, 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.29 us (3.6%)
patch tree reduce : 2.36 us (1.2%)
gen split merge : 1.39 us (0.7%)
split / merge op : 0/0
apply split merge : 1.53 us (0.8%)
LB compute : 176.15 us (87.7%)
LB move op cnt : 0
LB apply : 4.18 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (62.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 | 1.2784e+06 | 262144 | 1 | 2.051e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.2898229945592 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3957549819962706, 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 : 6.94 us (3.2%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.62 us (0.7%)
LB compute : 195.69 us (89.1%)
LB move op cnt : 0
LB apply : 4.57 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (70.7%)
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 | 1.1825e+06 | 262144 | 1 | 2.217e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.11533396948006 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40044221709883887, dt = 0.0006104144801085121
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.1%)
patch tree reduce : 2.39 us (1.0%)
gen split merge : 1.43 us (0.6%)
split / merge op : 0/0
apply split merge : 1.50 us (0.7%)
LB compute : 204.12 us (89.1%)
LB move op cnt : 0
LB apply : 4.54 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (65.1%)
Info: cfl dt = 0.004687235519148093 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2149e+06 | 262144 | 1 | 2.158e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.184571129096296 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 35.435679236000006 (s) [Godunov][rank=0]
amr::Godunov: t = 0.4010526315789474, dt = 0.004687235519148093
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 14.37 us (3.7%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 1.46 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.3%)
LB compute : 360.89 us (92.0%)
LB move op cnt : 0
LB apply : 4.51 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (69.2%)
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 | 1.2136e+06 | 262144 | 1 | 2.160e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.11798081996118 (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.80 us (3.0%)
patch tree reduce : 2.30 us (1.0%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.38 us (0.6%)
LB compute : 204.64 us (89.2%)
LB move op cnt : 0
LB apply : 4.91 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.3%)
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 | 9.7845e+05 | 262144 | 1 | 2.679e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.98203452900329 (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 : 7.23 us (3.2%)
patch tree reduce : 1.43 us (0.6%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.87 us (0.8%)
LB compute : 203.26 us (89.2%)
LB move op cnt : 0
LB apply : 4.66 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (67.9%)
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 | 1.2694e+06 | 262144 | 1 | 2.065e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.71136569573966 (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 : 8.15 us (4.0%)
patch tree reduce : 2.40 us (1.2%)
gen split merge : 1.60 us (0.8%)
split / merge op : 0/0
apply split merge : 1.37 us (0.7%)
LB compute : 179.35 us (87.5%)
LB move op cnt : 0
LB apply : 4.92 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (59.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 | 1.2650e+06 | 262144 | 1 | 2.072e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.42674948074443 (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 (3.3%)
patch tree reduce : 1.39 us (0.6%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 195.58 us (89.0%)
LB move op cnt : 0
LB apply : 5.04 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (70.9%)
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 | 1.2752e+06 | 262144 | 1 | 2.056e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.08181258947049 (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 : 6.95 us (3.5%)
patch tree reduce : 1.43 us (0.7%)
gen split merge : 1.08 us (0.6%)
split / merge op : 0/0
apply split merge : 1.35 us (0.7%)
LB compute : 173.95 us (88.7%)
LB move op cnt : 0
LB apply : 4.18 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (70.4%)
Info: cfl dt = 0.004687237572693471 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1050e+06 | 262144 | 1 | 2.372e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.1296010226018 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42917604988150687, dt = 0.004687237572693471
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.72 us (4.0%)
patch tree reduce : 2.31 us (1.2%)
gen split merge : 1.23 us (0.6%)
split / merge op : 0/0
apply split merge : 1.34 us (0.7%)
LB compute : 170.16 us (87.1%)
LB move op cnt : 0
LB apply : 4.41 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.4%)
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 | 1.2664e+06 | 262144 | 1 | 2.070e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.51689400306365 (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.75 us (3.9%)
patch tree reduce : 2.28 us (1.1%)
gen split merge : 1.37 us (0.7%)
split / merge op : 0/0
apply split merge : 1.54 us (0.8%)
LB compute : 174.84 us (87.5%)
LB move op cnt : 0
LB apply : 4.49 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.1%)
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 | 1.2912e+06 | 262144 | 1 | 2.030e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.823876533254724 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 37.580773284 (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 : 14.29 us (3.5%)
patch tree reduce : 2.14 us (0.5%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.3%)
LB compute : 372.49 us (92.0%)
LB move op cnt : 0
LB apply : 5.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (70.4%)
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 | 1.2350e+06 | 262144 | 1 | 2.123e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.49544755727007 (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 : 8.01 us (3.4%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 1.43 us (0.6%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 208.84 us (89.6%)
LB move op cnt : 0
LB apply : 4.34 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (67.8%)
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 | 1.0448e+06 | 262144 | 1 | 2.509e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.25341424662959 (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 : 7.33 us (3.3%)
patch tree reduce : 2.39 us (1.1%)
gen split merge : 1.25 us (0.6%)
split / merge op : 0/0
apply split merge : 1.53 us (0.7%)
LB compute : 195.43 us (89.0%)
LB move op cnt : 0
LB apply : 4.38 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (64.0%)
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 | 1.1068e+06 | 262144 | 1 | 2.369e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.24175236850611 (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.24 us (3.0%)
patch tree reduce : 1.64 us (0.7%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 220.66 us (90.6%)
LB move op cnt : 0
LB apply : 4.06 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (74.3%)
Info: cfl dt = 0.004687239258879411 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1023e+06 | 262144 | 1 | 2.378e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.95380963121814 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.453222638011753, dt = 0.004687239258879411
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance 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.06 us (3.6%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.32 us (0.6%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 202.63 us (89.2%)
LB move op cnt : 0
LB apply : 4.20 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (67.2%)
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 | 1.2375e+06 | 262144 | 1 | 2.118e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.6571285837883 (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 : 6.82 us (3.3%)
patch tree reduce : 2.10 us (1.0%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 181.65 us (88.5%)
LB move op cnt : 0
LB apply : 4.27 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (73.2%)
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 | 1.2751e+06 | 262144 | 1 | 2.056e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.07942035833571 (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 : 7.66 us (3.8%)
patch tree reduce : 1.59 us (0.8%)
gen split merge : 1.51 us (0.8%)
split / merge op : 0/0
apply split merge : 1.94 us (1.0%)
LB compute : 175.99 us (87.8%)
LB move op cnt : 0
LB apply : 4.74 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (70.5%)
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 | 1.2573e+06 | 262144 | 1 | 2.085e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.93346975510798 (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.62 us (3.3%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.41 us (0.6%)
split / merge op : 0/0
apply split merge : 1.53 us (0.7%)
LB compute : 204.79 us (89.3%)
LB move op cnt : 0
LB apply : 4.43 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.7%)
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 | 1.2579e+06 | 262144 | 1 | 2.084e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.544427467561384 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 39.732896834 (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 : 15.16 us (5.8%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 230.27 us (87.5%)
LB move op cnt : 0
LB apply : 5.24 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (70.4%)
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 | 1.2455e+06 | 262144 | 1 | 2.105e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.17405042606833 (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.79 us (3.2%)
patch tree reduce : 1.85 us (0.9%)
gen split merge : 1.78 us (0.8%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 177.43 us (83.2%)
LB move op cnt : 0
LB apply : 4.25 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (72.7%)
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 | 1.2719e+06 | 262144 | 1 | 2.061e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.86944919879693 (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 : 7.28 us (3.4%)
patch tree reduce : 2.45 us (1.1%)
gen split merge : 1.40 us (0.7%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 189.76 us (88.6%)
LB move op cnt : 0
LB apply : 4.16 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (66.1%)
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 | 1.2364e+06 | 262144 | 1 | 2.120e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.58359729149448 (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 : 7.61 us (3.7%)
patch tree reduce : 2.18 us (1.1%)
gen split merge : 1.51 us (0.7%)
split / merge op : 0/0
apply split merge : 1.44 us (0.7%)
LB compute : 177.52 us (87.4%)
LB move op cnt : 0
LB apply : 4.54 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.0%)
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 | 1.0771e+06 | 262144 | 1 | 2.434e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.33039317270979 (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 : 7.48 us (3.5%)
patch tree reduce : 2.38 us (1.1%)
gen split merge : 1.50 us (0.7%)
split / merge op : 0/0
apply split merge : 1.43 us (0.7%)
LB compute : 187.77 us (88.4%)
LB move op cnt : 0
LB apply : 4.10 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (72.2%)
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 | 9.8965e+05 | 262144 | 1 | 2.649e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.70297083174321 (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.59 us (3.5%)
patch tree reduce : 2.38 us (1.1%)
gen split merge : 1.39 us (0.6%)
split / merge op : 0/0
apply split merge : 1.65 us (0.8%)
LB compute : 191.20 us (88.2%)
LB move op cnt : 0
LB apply : 4.34 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (65.1%)
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 | 9.0024e+05 | 262144 | 1 | 2.912e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.94810169807774 (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.05 us (2.9%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.39 us (0.6%)
split / merge op : 0/0
apply split merge : 1.55 us (0.6%)
LB compute : 215.08 us (89.8%)
LB move op cnt : 0
LB apply : 4.11 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (68.0%)
Info: cfl dt = 0.004687242337221156 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.0622e+06 | 262144 | 1 | 2.468e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.37567948404894 (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.53 us (3.2%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.40 us (0.6%)
split / merge op : 0/0
apply split merge : 1.54 us (0.6%)
LB compute : 213.20 us (89.6%)
LB move op cnt : 0
LB apply : 4.40 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (62.4%)
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 | 1.1165e+06 | 262144 | 1 | 2.348e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.358234036719766 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 42.023716400000005 (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 : 14.82 us (4.8%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 273.82 us (89.5%)
LB move op cnt : 0
LB apply : 4.75 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (69.5%)
Info: cfl dt = 0.004687242681793463 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1577e+06 | 262144 | 1 | 2.264e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.51847967758643 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5060030318597921, dt = 0.004687242681793463
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.3%)
patch tree reduce : 2.41 us (1.1%)
gen split merge : 1.41 us (0.7%)
split / merge op : 0/0
apply split merge : 1.53 us (0.7%)
LB compute : 186.79 us (88.3%)
LB move op cnt : 0
LB apply : 4.73 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (66.7%)
Info: cfl dt = 0.004687242979524212 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1315e+06 | 262144 | 1 | 2.317e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.83228779973072 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5106902745415856, dt = 0.004687242979524212
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.6%)
patch tree reduce : 2.14 us (1.0%)
gen split merge : 1.41 us (0.7%)
split / merge op : 0/0
apply split merge : 1.64 us (0.8%)
LB compute : 189.64 us (88.1%)
LB move op cnt : 0
LB apply : 4.60 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (64.4%)
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 | 1.1011e+06 | 262144 | 1 | 2.381e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.8746121362116 (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.04 us (3.3%)
patch tree reduce : 2.27 us (1.1%)
gen split merge : 1.39 us (0.6%)
split / merge op : 0/0
apply split merge : 1.54 us (0.7%)
LB compute : 189.49 us (88.5%)
LB move op cnt : 0
LB apply : 4.37 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (68.2%)
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 | 1.1851e+06 | 262144 | 1 | 2.212e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.28554158908632 (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.12 us (3.4%)
patch tree reduce : 2.60 us (1.2%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.37 us (0.6%)
LB compute : 187.98 us (88.5%)
LB move op cnt : 0
LB apply : 4.26 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (68.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 | 1.2833e+06 | 262144 | 1 | 2.043e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.60487176324287 (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.15 us (3.1%)
patch tree reduce : 1.63 us (0.8%)
gen split merge : 1.28 us (0.6%)
split / merge op : 0/0
apply split merge : 1.64 us (0.8%)
LB compute : 175.62 us (88.7%)
LB move op cnt : 0
LB apply : 4.11 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (70.5%)
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 | 1.2694e+06 | 262144 | 1 | 2.065e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.7089080993708 (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.75 us (3.8%)
patch tree reduce : 2.03 us (1.0%)
gen split merge : 1.27 us (0.6%)
split / merge op : 0/0
apply split merge : 1.56 us (0.8%)
LB compute : 177.18 us (87.5%)
LB move op cnt : 0
LB apply : 4.94 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.1%)
Info: cfl dt = 0.004687244488732921 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2867e+06 | 262144 | 1 | 2.037e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.82162068756222 (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.30 us (3.3%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.28 us (0.6%)
split / merge op : 0/0
apply split merge : 1.74 us (0.8%)
LB compute : 197.88 us (88.8%)
LB move op cnt : 0
LB apply : 4.46 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (67.0%)
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 | 1.2633e+06 | 262144 | 1 | 2.075e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.588753300486555 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 44.168860241000004 (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 : 15.25 us (4.0%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 1.31 us (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 341.50 us (90.4%)
LB move op cnt : 0
LB apply : 4.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (71.9%)
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 | 1.2638e+06 | 262144 | 1 | 2.074e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.35270251285765 (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.34 us (3.4%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.27 us (0.6%)
split / merge op : 0/0
apply split merge : 1.87 us (0.9%)
LB compute : 193.27 us (88.9%)
LB move op cnt : 0
LB apply : 4.04 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (70.8%)
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 | 1.2762e+06 | 262144 | 1 | 2.054e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.15128079713848 (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 : 7.52 us (3.8%)
patch tree reduce : 2.21 us (1.1%)
gen split merge : 1.50 us (0.8%)
split / merge op : 0/0
apply split merge : 1.58 us (0.8%)
LB compute : 174.07 us (87.8%)
LB move op cnt : 0
LB apply : 4.03 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (62.1%)
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 | 1.0916e+06 | 262144 | 1 | 2.401e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.26542832837379 (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.92 us (3.6%)
patch tree reduce : 1.87 us (0.9%)
gen split merge : 1.33 us (0.6%)
split / merge op : 0/0
apply split merge : 1.48 us (0.7%)
LB compute : 192.13 us (88.5%)
LB move op cnt : 0
LB apply : 4.26 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (65.4%)
Info: cfl dt = 0.004687245719181296 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.0858e+06 | 262144 | 1 | 2.414e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.88976390884908 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.553485822040213, dt = 0.004687245719181296
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.0%)
patch tree reduce : 1.86 us (0.8%)
gen split merge : 1.34 us (0.6%)
split / merge op : 0/0
apply split merge : 1.62 us (0.7%)
LB compute : 214.53 us (89.8%)
LB move op cnt : 0
LB apply : 4.55 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (65.2%)
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 | 1.2618e+06 | 262144 | 1 | 2.078e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.22097408774471 (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 : 7.10 us (3.4%)
patch tree reduce : 2.59 us (1.2%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 1.37 us (0.7%)
LB compute : 183.59 us (88.0%)
LB move op cnt : 0
LB apply : 4.35 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (65.1%)
Info: cfl dt = 0.004687246296724088 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2501e+06 | 262144 | 1 | 2.097e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.46651358274484 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5628603137684345, dt = 0.004687246296724088
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.4%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 835.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.7%)
LB compute : 179.91 us (89.1%)
LB move op cnt : 0
LB apply : 3.77 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (64.2%)
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 | 1.0783e+06 | 262144 | 1 | 2.431e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.4088814711175 (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 : 7.51 us (3.7%)
patch tree reduce : 2.29 us (1.1%)
gen split merge : 1.53 us (0.8%)
split / merge op : 0/0
apply split merge : 1.83 us (0.9%)
LB compute : 176.49 us (87.2%)
LB move op cnt : 0
LB apply : 4.48 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (63.9%)
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 | 1.2691e+06 | 262144 | 1 | 2.066e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.636796160551583 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 46.308905908 (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 : 15.35 us (3.7%)
patch tree reduce : 2.20 us (0.5%)
gen split merge : 1.31 us (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 379.21 us (92.1%)
LB move op cnt : 0
LB apply : 4.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (74.3%)
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 | 1.2682e+06 | 262144 | 1 | 2.067e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.63042158144778 (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.35 us (3.2%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 1.36 us (0.6%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 206.57 us (90.0%)
LB move op cnt : 0
LB apply : 4.16 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (67.6%)
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 | 1.2352e+06 | 262144 | 1 | 2.122e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.51188120649117 (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 : 7.11 us (3.3%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 1.53 us (0.7%)
split / merge op : 0/0
apply split merge : 1.68 us (0.8%)
LB compute : 191.83 us (88.6%)
LB move op cnt : 0
LB apply : 4.64 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 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 | 1.2739e+06 | 262144 | 1 | 2.058e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.00077141111872 (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.82 us (3.2%)
patch tree reduce : 2.21 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.54 us (0.7%)
LB compute : 191.40 us (88.6%)
LB move op cnt : 0
LB apply : 5.01 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (65.3%)
Info: cfl dt = 0.00468724774210254 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.0964e+06 | 262144 | 1 | 2.391e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.57359644802133 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5869068829292532, dt = 0.00468724774210254
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance 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.69 us (4.4%)
patch tree reduce : 1.80 us (0.9%)
gen split merge : 1.32 us (0.7%)
split / merge op : 0/0
apply split merge : 1.79 us (0.9%)
LB compute : 172.05 us (86.9%)
LB move op cnt : 0
LB apply : 4.69 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (69.4%)
Info: cfl dt = 0.004687248018594976 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2716e+06 | 262144 | 1 | 2.062e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.85139032841758 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5915941306713557, dt = 0.004687248018594976
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.6%)
patch tree reduce : 2.40 us (1.2%)
gen split merge : 1.40 us (0.7%)
split / merge op : 0/0
apply split merge : 1.54 us (0.8%)
LB compute : 167.91 us (87.2%)
LB move op cnt : 0
LB apply : 4.42 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (67.2%)
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 | 9.8300e+05 | 262144 | 1 | 2.667e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.2752371192784 (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 : 7.29 us (3.7%)
patch tree reduce : 2.40 us (1.2%)
gen split merge : 1.48 us (0.7%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 172.78 us (87.2%)
LB move op cnt : 0
LB apply : 4.96 us (2.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (68.9%)
Info: cfl dt = 0.004687248571882757 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 9.6774e+05 | 262144 | 1 | 2.709e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.293176654941206 (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.39 us (3.6%)
patch tree reduce : 1.66 us (0.8%)
gen split merge : 1.50 us (0.7%)
split / merge op : 0/0
apply split merge : 1.55 us (0.8%)
LB compute : 179.90 us (87.4%)
LB move op cnt : 0
LB apply : 5.31 us (2.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (71.9%)
Info: cfl dt = 0.00468724861806652 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 9.5579e+05 | 262144 | 1 | 2.743e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.010908790991733 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 48.57303866 (s) [Godunov][rank=0]
amr::Godunov: t = 0.6015789473684211, dt = 0.00468724861806652
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 14.93 us (4.9%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 1.71 us (0.6%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 271.82 us (89.0%)
LB move op cnt : 0
LB apply : 4.89 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (67.5%)
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 | 1.0531e+06 | 262144 | 1 | 2.489e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.79044937514952 (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 : 7.99 us (3.3%)
patch tree reduce : 1.50 us (0.6%)
gen split merge : 1.35 us (0.6%)
split / merge op : 0/0
apply split merge : 1.44 us (0.6%)
LB compute : 220.27 us (89.8%)
LB move op cnt : 0
LB apply : 4.66 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (66.3%)
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 | 1.0592e+06 | 262144 | 1 | 2.475e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.18236958841452 (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.47 us (2.7%)
patch tree reduce : 2.41 us (0.9%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 248.46 us (90.9%)
LB move op cnt : 0
LB apply : 4.41 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (68.5%)
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 | 1.0427e+06 | 262144 | 1 | 2.514e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.11956986572045 (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.93 us (3.2%)
patch tree reduce : 2.50 us (1.1%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.54 us (0.7%)
LB compute : 194.60 us (88.6%)
LB move op cnt : 0
LB apply : 5.19 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (55.8%)
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 | 1.1446e+06 | 262144 | 1 | 2.290e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.67995024199462 (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 : 7.44 us (3.5%)
patch tree reduce : 1.61 us (0.8%)
gen split merge : 1.74 us (0.8%)
split / merge op : 0/0
apply split merge : 1.46 us (0.7%)
LB compute : 186.26 us (88.0%)
LB move op cnt : 0
LB apply : 4.88 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (67.9%)
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 | 8.8434e+05 | 262144 | 1 | 2.964e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.924719933422615 (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 : 7.52 us (3.3%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.50 us (0.7%)
split / merge op : 0/0
apply split merge : 1.72 us (0.8%)
LB compute : 199.65 us (88.6%)
LB move op cnt : 0
LB apply : 4.85 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (63.7%)
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 | 1.0446e+06 | 262144 | 1 | 2.510e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.23818860268157 (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 : 7.71 us (3.6%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.23 us (0.6%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 189.29 us (88.6%)
LB move op cnt : 0
LB apply : 4.29 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (64.8%)
Info: cfl dt = 0.004687250551355561 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2603e+06 | 262144 | 1 | 2.080e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.12235759792787 (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 : 7.00 us (2.9%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 220.96 us (90.1%)
LB move op cnt : 0
LB apply : 4.88 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (72.9%)
Info: cfl dt = 0.004687250597882412 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2017e+06 | 262144 | 1 | 2.181e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.071582833933164 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 51.060407238 (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 27.63 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.15 us (53.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.46 us (0.3%)
patch tree reduce : 1.84 us (0.4%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 408.00 us (96.9%)
LB move op cnt : 0
LB apply : 4.31 us (1.0%)
Info: patch count stable after 1 runs npatch = 1 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: time since start : 58.990779031 (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.21 us (4.5%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 1.40 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 259.69 us (89.2%)
LB move op cnt : 0
LB apply : 5.76 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (74.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 | 5.4614e+05 | 262144 | 1 | 4.800e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.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.37 us (2.8%)
patch tree reduce : 2.20 us (0.8%)
gen split merge : 1.39 us (0.5%)
split / merge op : 0/0
apply split merge : 1.55 us (0.6%)
LB compute : 234.80 us (90.6%)
LB move op cnt : 0
LB apply : 4.15 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (66.8%)
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 | 1.1659e+06 | 262144 | 1 | 2.248e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.047859241869 (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 (3.8%)
patch tree reduce : 2.28 us (1.1%)
gen split merge : 1.41 us (0.7%)
split / merge op : 0/0
apply split merge : 1.53 us (0.8%)
LB compute : 174.23 us (87.9%)
LB move op cnt : 0
LB apply : 4.21 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (71.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 | 1.1547e+06 | 262144 | 1 | 2.270e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.32101520968706 (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.78 us (3.8%)
patch tree reduce : 2.30 us (1.1%)
gen split merge : 1.14 us (0.6%)
split / merge op : 0/0
apply split merge : 1.37 us (0.7%)
LB compute : 181.68 us (88.2%)
LB move op cnt : 0
LB apply : 4.15 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (71.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 | 1.1938e+06 | 262144 | 1 | 2.196e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.84339559794725 (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.87 us (2.8%)
patch tree reduce : 2.21 us (0.9%)
gen split merge : 1.38 us (0.6%)
split / merge op : 0/0
apply split merge : 1.52 us (0.6%)
LB compute : 220.46 us (90.1%)
LB move op cnt : 0
LB apply : 4.53 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (70.5%)
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 | 8.9375e+05 | 262144 | 1 | 2.933e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.52756517413146 (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.27 us (3.1%)
patch tree reduce : 2.23 us (1.0%)
gen split merge : 1.39 us (0.6%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 209.42 us (89.5%)
LB move op cnt : 0
LB apply : 4.28 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (65.4%)
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 | 1.1677e+06 | 262144 | 1 | 2.245e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.1609156466553 (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.06 us (3.2%)
patch tree reduce : 2.41 us (1.1%)
gen split merge : 1.27 us (0.6%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 197.11 us (88.8%)
LB move op cnt : 0
LB apply : 4.69 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (63.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 | 1.2448e+06 | 262144 | 1 | 2.106e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.1263903061594 (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.10 us (3.0%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.31 us (0.5%)
split / merge op : 0/0
apply split merge : 1.52 us (0.6%)
LB compute : 202.20 us (84.3%)
LB move op cnt : 0
LB apply : 3.99 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (78.4%)
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 | 1.2485e+06 | 262144 | 1 | 2.100e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.36262908428255 (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.56 us (3.7%)
patch tree reduce : 2.03 us (1.0%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 182.50 us (88.2%)
LB move op cnt : 0
LB apply : 4.61 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.6%)
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 | 1.2327e+06 | 262144 | 1 | 2.127e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.35541887157538 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 61.692159865 (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 : 14.80 us (5.4%)
patch tree reduce : 2.12 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 242.33 us (88.4%)
LB move op cnt : 0
LB apply : 4.72 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (68.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 | 1.2414e+06 | 262144 | 1 | 2.112e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.9067532730964 (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.36 us (2.7%)
patch tree reduce : 2.43 us (0.9%)
gen split merge : 1.28 us (0.5%)
split / merge op : 0/0
apply split merge : 1.55 us (0.6%)
LB compute : 244.23 us (91.0%)
LB move op cnt : 0
LB apply : 4.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (67.0%)
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 | 1.2422e+06 | 262144 | 1 | 2.110e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.95455287272145 (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.09 us (3.1%)
patch tree reduce : 2.31 us (1.0%)
gen split merge : 1.51 us (0.7%)
split / merge op : 0/0
apply split merge : 1.41 us (0.6%)
LB compute : 199.69 us (88.7%)
LB move op cnt : 0
LB apply : 4.89 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (64.4%)
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 | 1.1807e+06 | 262144 | 1 | 2.220e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.99914078687904 (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.20 us (3.2%)
patch tree reduce : 2.45 us (1.1%)
gen split merge : 1.24 us (0.6%)
split / merge op : 0/0
apply split merge : 1.55 us (0.7%)
LB compute : 198.52 us (88.7%)
LB move op cnt : 0
LB apply : 5.23 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (65.9%)
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 | 1.2536e+06 | 262144 | 1 | 2.091e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.6887466885184 (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.23 us (3.1%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.28 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 211.25 us (89.6%)
LB move op cnt : 0
LB apply : 4.94 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (68.0%)
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 | 1.1208e+06 | 262144 | 1 | 2.339e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.14552175563264 (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.50 us (3.2%)
patch tree reduce : 2.46 us (1.1%)
gen split merge : 1.28 us (0.6%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 206.15 us (89.3%)
LB move op cnt : 0
LB apply : 4.52 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (63.0%)
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 | 1.2455e+06 | 262144 | 1 | 2.105e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.17319187556582 (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.10 us (3.4%)
patch tree reduce : 2.41 us (1.2%)
gen split merge : 1.40 us (0.7%)
split / merge op : 0/0
apply split merge : 1.54 us (0.7%)
LB compute : 182.76 us (87.7%)
LB move op cnt : 0
LB apply : 5.37 us (2.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.3%)
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 | 1.2546e+06 | 262144 | 1 | 2.089e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.75653607463468 (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.20 us (3.3%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.51 us (0.7%)
LB compute : 197.13 us (89.1%)
LB move op cnt : 0
LB apply : 4.21 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (64.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 | 1.2243e+06 | 262144 | 1 | 2.141e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.27609360490808 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 63.843751211000004 (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 : 14.58 us (3.8%)
patch tree reduce : 2.19 us (0.6%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 354.42 us (91.7%)
LB move op cnt : 0
LB apply : 5.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (65.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 | 1.2275e+06 | 262144 | 1 | 2.136e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.01064038371698 (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.06 us (3.5%)
patch tree reduce : 2.40 us (1.2%)
gen split merge : 1.41 us (0.7%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 179.04 us (87.8%)
LB move op cnt : 0
LB apply : 4.81 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (66.2%)
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 | 1.1039e+06 | 262144 | 1 | 2.375e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.05788086348608 (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 : 6.65 us (3.2%)
patch tree reduce : 2.23 us (1.1%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 182.26 us (88.7%)
LB move op cnt : 0
LB apply : 4.90 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (64.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 | 1.2414e+06 | 262144 | 1 | 2.112e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.9058087163165 (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.56 us (3.5%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.48 us (0.7%)
split / merge op : 0/0
apply split merge : 1.36 us (0.6%)
LB compute : 190.77 us (88.3%)
LB move op cnt : 0
LB apply : 5.04 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (63.2%)
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 | 1.1203e+06 | 262144 | 1 | 2.340e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.10953108818333 (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.86 us (2.7%)
patch tree reduce : 2.55 us (1.0%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 231.21 us (90.7%)
LB move op cnt : 0
LB apply : 4.04 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (67.2%)
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 | 1.2123e+06 | 262144 | 1 | 2.162e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.03763326088487 (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.22 us (3.2%)
patch tree reduce : 2.53 us (1.1%)
gen split merge : 1.39 us (0.6%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 199.59 us (89.0%)
LB move op cnt : 0
LB apply : 4.81 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (71.7%)
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 | 1.1725e+06 | 262144 | 1 | 2.236e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.47436904145536 (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.52 us (3.6%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.52 us (0.7%)
LB compute : 181.61 us (88.0%)
LB move op cnt : 0
LB apply : 4.83 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (67.4%)
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 | 1.1287e+06 | 262144 | 1 | 2.323e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.65245246176578 (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.39 us (3.4%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 193.62 us (89.2%)
LB move op cnt : 0
LB apply : 4.63 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (65.1%)
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 | 1.2106e+06 | 262144 | 1 | 2.165e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.151608213614265 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 66.020995966 (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 : 15.60 us (5.1%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 1.40 us (0.5%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 274.79 us (89.0%)
LB move op cnt : 0
LB apply : 5.20 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (73.5%)
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 | 1.2059e+06 | 262144 | 1 | 2.174e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.62506848612544 (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.70 us (3.6%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.38 us (0.6%)
split / merge op : 0/0
apply split merge : 1.57 us (0.7%)
LB compute : 190.70 us (88.6%)
LB move op cnt : 0
LB apply : 4.14 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (70.8%)
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 | 1.2185e+06 | 262144 | 1 | 2.151e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.43408831248028 (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.49 us (3.1%)
patch tree reduce : 1.79 us (0.9%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 1.35 us (0.7%)
LB compute : 183.28 us (88.8%)
LB move op cnt : 0
LB apply : 4.85 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (73.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 | 1.2489e+06 | 262144 | 1 | 2.099e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.39323633858177 (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.15 us (3.5%)
patch tree reduce : 1.79 us (0.9%)
gen split merge : 1.14 us (0.6%)
split / merge op : 0/0
apply split merge : 1.92 us (0.9%)
LB compute : 176.68 us (87.4%)
LB move op cnt : 0
LB apply : 4.42 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.9%)
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 | 1.2514e+06 | 262144 | 1 | 2.095e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.54993163599448 (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.09 us (3.4%)
patch tree reduce : 1.81 us (0.9%)
gen split merge : 1.30 us (0.6%)
split / merge op : 0/0
apply split merge : 1.44 us (0.7%)
LB compute : 186.62 us (88.8%)
LB move op cnt : 0
LB apply : 4.00 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (72.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 | 1.2376e+06 | 262144 | 1 | 2.118e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.66499600139174 (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.28 us (3.7%)
patch tree reduce : 2.09 us (1.1%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 173.64 us (88.0%)
LB move op cnt : 0
LB apply : 4.24 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (72.3%)
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 | 1.1418e+06 | 262144 | 1 | 2.296e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.49735266907993 (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.70 us (3.3%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.56 us (0.7%)
LB compute : 208.78 us (89.3%)
LB move op cnt : 0
LB apply : 4.78 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (67.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 | 1.2656e+06 | 262144 | 1 | 2.071e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.46389756488634 (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 : 8.02 us (3.9%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.25 us (0.6%)
split / merge op : 0/0
apply split merge : 1.90 us (0.9%)
LB compute : 181.44 us (87.3%)
LB move op cnt : 0
LB apply : 4.70 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (69.8%)
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 | 1.2141e+06 | 262144 | 1 | 2.159e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.173771785383948 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 68.337855 (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 : 14.96 us (5.4%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 242.92 us (88.0%)
LB move op cnt : 0
LB apply : 4.87 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (72.8%)
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 | 1.2666e+06 | 262144 | 1 | 2.070e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.531540803026 (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.64 us (3.5%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.24 us (0.6%)
split / merge op : 0/0
apply split merge : 1.52 us (0.7%)
LB compute : 192.14 us (88.9%)
LB move op cnt : 0
LB apply : 4.05 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (70.2%)
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 | 1.2172e+06 | 262144 | 1 | 2.154e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.34889145089743 (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.39 us (3.5%)
patch tree reduce : 2.33 us (1.1%)
gen split merge : 1.29 us (0.6%)
split / merge op : 0/0
apply split merge : 1.54 us (0.7%)
LB compute : 188.65 us (88.5%)
LB move op cnt : 0
LB apply : 4.23 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (71.4%)
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 | 1.2407e+06 | 262144 | 1 | 2.113e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.8624063908879 (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 : 7.86 us (3.9%)
patch tree reduce : 1.94 us (1.0%)
gen split merge : 1.27 us (0.6%)
split / merge op : 0/0
apply split merge : 1.53 us (0.8%)
LB compute : 174.90 us (87.5%)
LB move op cnt : 0
LB apply : 4.38 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (66.6%)
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 | 1.2662e+06 | 262144 | 1 | 2.070e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.5023743287603 (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 : 6.86 us (3.1%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.44 us (0.6%)
split / merge op : 0/0
apply split merge : 1.94 us (0.9%)
LB compute : 200.59 us (89.4%)
LB move op cnt : 0
LB apply : 3.94 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (73.5%)
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 | 1.2134e+06 | 262144 | 1 | 2.160e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.10405547531161 (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.51 us (3.5%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.41 us (0.7%)
split / merge op : 0/0
apply split merge : 1.52 us (0.7%)
LB compute : 191.86 us (88.4%)
LB move op cnt : 0
LB apply : 4.55 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (68.1%)
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 | 1.2721e+06 | 262144 | 1 | 2.061e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.8863693760107 (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 : 8.40 us (4.3%)
patch tree reduce : 1.94 us (1.0%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.41 us (0.7%)
LB compute : 169.51 us (87.1%)
LB move op cnt : 0
LB apply : 4.32 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (67.7%)
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 | 1.2364e+06 | 262144 | 1 | 2.120e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.5883972655597 (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 : 6.69 us (3.5%)
patch tree reduce : 2.28 us (1.2%)
gen split merge : 1.39 us (0.7%)
split / merge op : 0/0
apply split merge : 1.60 us (0.8%)
LB compute : 169.60 us (87.8%)
LB move op cnt : 0
LB apply : 4.25 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (66.4%)
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 | 1.1273e+06 | 262144 | 1 | 2.325e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.446158354521968 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 70.451262875 (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 : 14.27 us (3.4%)
patch tree reduce : 2.32 us (0.6%)
gen split merge : 1.00 us (0.2%)
split / merge op : 0/0
apply split merge : 1.40 us (0.3%)
LB compute : 388.17 us (92.0%)
LB move op cnt : 0
LB apply : 5.52 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (73.9%)
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 | 1.2484e+06 | 262144 | 1 | 2.100e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.35670303463466 (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.49 us (3.7%)
patch tree reduce : 2.23 us (1.1%)
gen split merge : 1.50 us (0.7%)
split / merge op : 0/0
apply split merge : 1.58 us (0.8%)
LB compute : 177.42 us (87.6%)
LB move op cnt : 0
LB apply : 4.30 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (67.6%)
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 | 1.1849e+06 | 262144 | 1 | 2.212e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.2692485245703 (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 : 7.60 us (3.5%)
patch tree reduce : 2.32 us (1.1%)
gen split merge : 1.49 us (0.7%)
split / merge op : 0/0
apply split merge : 1.44 us (0.7%)
LB compute : 191.97 us (88.5%)
LB move op cnt : 0
LB apply : 4.41 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (66.1%)
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 | 9.8233e+05 | 262144 | 1 | 2.669e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.23195483758199 (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.59 us (3.7%)
patch tree reduce : 1.78 us (0.9%)
gen split merge : 1.38 us (0.7%)
split / merge op : 0/0
apply split merge : 1.53 us (0.8%)
LB compute : 178.35 us (88.0%)
LB move op cnt : 0
LB apply : 4.77 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (68.2%)
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 | 1.2428e+06 | 262144 | 1 | 2.109e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.00121070777115 (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.57 us (3.1%)
patch tree reduce : 2.39 us (1.0%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.6%)
LB compute : 216.86 us (89.9%)
LB move op cnt : 0
LB apply : 4.84 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (70.2%)
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 | 1.1975e+06 | 262144 | 1 | 2.189e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.08043926392038 (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 : 8.55 us (3.9%)
patch tree reduce : 2.63 us (1.2%)
gen split merge : 1.29 us (0.6%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 193.30 us (88.7%)
LB move op cnt : 0
LB apply : 3.94 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (65.8%)
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 | 9.5362e+05 | 262144 | 1 | 2.749e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.384200951214645 (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.57 us (3.3%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.53 us (0.7%)
LB compute : 209.02 us (89.8%)
LB move op cnt : 0
LB apply : 3.98 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 730.00 ns (57.5%)
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 | 1.1736e+06 | 262144 | 1 | 2.234e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.54325409971402 (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.05 us (3.4%)
patch tree reduce : 2.25 us (1.1%)
gen split merge : 1.27 us (0.6%)
split / merge op : 0/0
apply split merge : 1.54 us (0.7%)
LB compute : 183.38 us (88.2%)
LB move op cnt : 0
LB apply : 4.46 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (64.6%)
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 | 1.2653e+06 | 262144 | 1 | 2.072e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.60504656515902 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 72.673291112 (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 : 15.25 us (4.0%)
patch tree reduce : 2.41 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 347.44 us (91.5%)
LB move op cnt : 0
LB apply : 4.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (64.8%)
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 | 1.2187e+06 | 262144 | 1 | 2.151e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.44819669033593 (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.31 us (3.5%)
patch tree reduce : 2.34 us (1.1%)
gen split merge : 1.23 us (0.6%)
split / merge op : 0/0
apply split merge : 1.29 us (0.6%)
LB compute : 183.16 us (87.9%)
LB move op cnt : 0
LB apply : 4.40 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (65.7%)
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 | 1.1316e+06 | 262144 | 1 | 2.317e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.83849600215196 (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 : 8.44 us (3.5%)
patch tree reduce : 2.60 us (1.1%)
gen split merge : 1.31 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 216.51 us (89.3%)
LB move op cnt : 0
LB apply : 4.27 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (70.6%)
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 | 1.0800e+06 | 262144 | 1 | 2.427e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.51777720629552 (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.25 us (3.2%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.25 us (0.6%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 203.00 us (89.4%)
LB move op cnt : 0
LB apply : 4.86 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (69.2%)
Info: cfl dt = 0.004687235271899178 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5381e+05 | 262144 | 1 | 3.070e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.95948191328603 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2192752688295347, dt = 0.004687235271899178
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 15.02 us (6.0%)
patch tree reduce : 2.63 us (1.1%)
gen split merge : 1.55 us (0.6%)
split / merge op : 0/0
apply split merge : 1.75 us (0.7%)
LB compute : 215.00 us (86.5%)
LB move op cnt : 0
LB apply : 4.76 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (70.8%)
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 | 1.1703e+06 | 262144 | 1 | 2.240e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.32930846680695 (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.84 us (3.7%)
patch tree reduce : 1.71 us (0.8%)
gen split merge : 1.33 us (0.6%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 189.68 us (89.0%)
LB move op cnt : 0
LB apply : 4.04 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (71.3%)
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 | 1.2308e+06 | 262144 | 1 | 2.130e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.2232634465491 (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.93 us (3.6%)
patch tree reduce : 2.30 us (1.0%)
gen split merge : 1.54 us (0.7%)
split / merge op : 0/0
apply split merge : 1.64 us (0.7%)
LB compute : 195.31 us (88.1%)
LB move op cnt : 0
LB apply : 4.82 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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 | 1.1887e+06 | 262144 | 1 | 2.205e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.51783306553011 (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 : 8.03 us (3.3%)
patch tree reduce : 2.84 us (1.2%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 1.36 us (0.6%)
LB compute : 214.43 us (89.3%)
LB move op cnt : 0
LB apply : 4.71 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (64.3%)
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 | 1.0607e+06 | 262144 | 1 | 2.471e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.891244319210218 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 74.968698427 (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 : 13.73 us (5.0%)
patch tree reduce : 2.45 us (0.9%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 241.39 us (88.1%)
LB move op cnt : 0
LB apply : 5.02 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (71.3%)
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 | 1.2355e+06 | 262144 | 1 | 2.122e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.52645890585698 (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.56 us (2.4%)
patch tree reduce : 2.39 us (0.9%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 241.19 us (89.4%)
LB move op cnt : 0
LB apply : 4.61 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (69.4%)
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 | 1.2155e+06 | 262144 | 1 | 2.157e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.2440829752073 (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 : 7.88 us (3.6%)
patch tree reduce : 2.49 us (1.2%)
gen split merge : 1.32 us (0.6%)
split / merge op : 0/0
apply split merge : 1.34 us (0.6%)
LB compute : 189.70 us (87.8%)
LB move op cnt : 0
LB apply : 4.64 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (71.7%)
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 | 1.2342e+06 | 262144 | 1 | 2.124e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.44644022763818 (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 : 8.03 us (3.8%)
patch tree reduce : 2.42 us (1.2%)
gen split merge : 1.38 us (0.7%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 183.57 us (87.9%)
LB move op cnt : 0
LB apply : 4.51 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (64.4%)
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 | 1.2434e+06 | 262144 | 1 | 2.108e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.03597291763418 (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.79 us (3.8%)
patch tree reduce : 2.39 us (1.2%)
gen split merge : 1.42 us (0.7%)
split / merge op : 0/0
apply split merge : 1.34 us (0.7%)
LB compute : 178.50 us (87.4%)
LB move op cnt : 0
LB apply : 4.64 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.1%)
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 | 1.2601e+06 | 262144 | 1 | 2.080e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.11033566145458 (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.86 us (3.5%)
patch tree reduce : 2.33 us (1.0%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.31 us (0.6%)
LB compute : 199.50 us (89.1%)
LB move op cnt : 0
LB apply : 4.12 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (66.4%)
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 | 1.0419e+06 | 262144 | 1 | 2.516e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.06915872403376 (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.26 us (3.3%)
patch tree reduce : 2.33 us (1.1%)
gen split merge : 1.28 us (0.6%)
split / merge op : 0/0
apply split merge : 1.59 us (0.7%)
LB compute : 192.62 us (88.6%)
LB move op cnt : 0
LB apply : 4.85 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (68.0%)
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 | 1.2530e+06 | 262144 | 1 | 2.092e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.6526336017665 (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 : 8.00 us (3.6%)
patch tree reduce : 2.38 us (1.1%)
gen split merge : 1.25 us (0.6%)
split / merge op : 0/0
apply split merge : 1.38 us (0.6%)
LB compute : 198.67 us (88.7%)
LB move op cnt : 0
LB apply : 4.52 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (66.0%)
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 | 1.2267e+06 | 262144 | 1 | 2.137e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.28322279746208 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 77.109706981 (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.35 us (3.5%)
patch tree reduce : 2.06 us (0.5%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.4%)
LB compute : 346.93 us (91.7%)
LB move op cnt : 0
LB apply : 5.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (72.0%)
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 | 1.2616e+06 | 262144 | 1 | 2.078e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.20913899716342 (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.54 us (3.3%)
patch tree reduce : 2.38 us (1.0%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 203.72 us (89.3%)
LB move op cnt : 0
LB apply : 4.19 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (70.6%)
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 | 1.2511e+06 | 262144 | 1 | 2.095e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.5338233845887 (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.47 us (3.7%)
patch tree reduce : 2.28 us (1.1%)
gen split merge : 1.31 us (0.6%)
split / merge op : 0/0
apply split merge : 1.46 us (0.7%)
LB compute : 179.77 us (88.3%)
LB move op cnt : 0
LB apply : 4.03 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (65.8%)
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 | 9.9019e+05 | 262144 | 1 | 2.647e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.738078116374325 (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.58 us (3.4%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 199.10 us (89.3%)
LB move op cnt : 0
LB apply : 4.36 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (71.3%)
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 | 9.4261e+05 | 262144 | 1 | 2.781e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.67537018975157 (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.21 us (3.3%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.67 us (0.8%)
LB compute : 197.74 us (89.1%)
LB move op cnt : 0
LB apply : 4.50 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (58.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 | 1.1835e+06 | 262144 | 1 | 2.215e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.18379689292532 (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 : 8.09 us (3.7%)
patch tree reduce : 2.41 us (1.1%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.33 us (0.6%)
LB compute : 196.03 us (89.1%)
LB move op cnt : 0
LB apply : 4.10 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.6%)
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 | 1.0566e+06 | 262144 | 1 | 2.481e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.013362616273 (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.88 us (3.5%)
patch tree reduce : 2.44 us (1.1%)
gen split merge : 1.54 us (0.7%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 198.05 us (89.0%)
LB move op cnt : 0
LB apply : 3.93 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (65.7%)
Info: cfl dt = 0.0046872517206266295 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.0438e+06 | 262144 | 1 | 2.511e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.19051394803587 (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.13 us (3.2%)
patch tree reduce : 2.50 us (1.1%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.30 us (0.6%)
LB compute : 199.95 us (89.2%)
LB move op cnt : 0
LB apply : 4.34 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (65.8%)
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 | 1.1233e+06 | 262144 | 1 | 2.334e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.415126830004965 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 79.408413556 (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 : 32.22 us (9.8%)
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.30 us (0.4%)
LB compute : 279.20 us (84.9%)
LB move op cnt : 0
LB apply : 4.71 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (73.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 | 1.2105e+06 | 262144 | 1 | 2.166e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.92205984919065 (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 : 8.10 us (3.6%)
patch tree reduce : 2.41 us (1.1%)
gen split merge : 1.28 us (0.6%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 199.97 us (89.1%)
LB move op cnt : 0
LB apply : 4.12 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (68.5%)
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 | 1.2443e+06 | 262144 | 1 | 2.107e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.09630109710517 (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.63 us (3.7%)
patch tree reduce : 2.43 us (1.2%)
gen split merge : 1.40 us (0.7%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 180.28 us (87.7%)
LB move op cnt : 0
LB apply : 4.46 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (64.6%)
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 | 1.2282e+06 | 262144 | 1 | 2.134e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.05572230355459 (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.28 us (3.6%)
patch tree reduce : 2.01 us (1.0%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.41 us (0.7%)
LB compute : 175.69 us (87.8%)
LB move op cnt : 0
LB apply : 5.14 us (2.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (61.6%)
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 | 1.1997e+06 | 262144 | 1 | 2.185e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.227111778917 (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 : 8.14 us (3.7%)
patch tree reduce : 2.46 us (1.1%)
gen split merge : 1.35 us (0.6%)
split / merge op : 0/0
apply split merge : 1.32 us (0.6%)
LB compute : 194.29 us (88.6%)
LB move op cnt : 0
LB apply : 3.99 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (64.4%)
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 | 1.2591e+06 | 262144 | 1 | 2.082e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.04477458684433 (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 : 8.20 us (3.5%)
patch tree reduce : 2.35 us (1.0%)
gen split merge : 1.39 us (0.6%)
split / merge op : 0/0
apply split merge : 1.80 us (0.8%)
LB compute : 206.22 us (89.1%)
LB move op cnt : 0
LB apply : 3.94 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (67.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 | 9.2540e+05 | 262144 | 1 | 2.833e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.5678550987436 (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 : 9.02 us (3.9%)
patch tree reduce : 2.55 us (1.1%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 1.33 us (0.6%)
LB compute : 203.80 us (88.7%)
LB move op cnt : 0
LB apply : 4.35 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (68.7%)
Info: cfl dt = 0.004687267381699239 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2412e+06 | 262144 | 1 | 2.112e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.89735993910817 (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.50 us (3.5%)
patch tree reduce : 2.54 us (1.2%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.49 us (0.7%)
LB compute : 192.17 us (88.7%)
LB move op cnt : 0
LB apply : 3.77 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (67.5%)
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 | 9.8654e+05 | 262144 | 1 | 2.657e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.267593705823195 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 81.623462796 (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 : 14.26 us (3.4%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 385.32 us (92.6%)
LB move op cnt : 0
LB apply : 4.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (69.0%)
Info: cfl dt = 0.004687269882584072 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.0157e+06 | 262144 | 1 | 2.581e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.38108140749466 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33889779400454645, dt = 0.004687269882584072
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.7%)
patch tree reduce : 1.98 us (1.0%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.42 us (0.7%)
LB compute : 182.50 us (87.8%)
LB move op cnt : 0
LB apply : 5.09 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (71.9%)
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 | 1.2329e+06 | 262144 | 1 | 2.126e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.35963612750574 (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 : 7.49 us (3.2%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.30 us (0.6%)
LB compute : 211.02 us (89.8%)
LB move op cnt : 0
LB apply : 4.23 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (70.1%)
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 | 1.1697e+06 | 262144 | 1 | 2.241e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.29332260723005 (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 (3.1%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.39 us (0.6%)
split / merge op : 0/0
apply split merge : 1.53 us (0.7%)
LB compute : 198.95 us (89.3%)
LB move op cnt : 0
LB apply : 4.58 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (62.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 | 1.2443e+06 | 262144 | 1 | 2.107e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.09326130155242 (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 : 6.99 us (3.4%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 6.20 us (3.0%)
LB compute : 177.16 us (85.9%)
LB move op cnt : 0
LB apply : 4.79 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (68.3%)
Info: cfl dt = 0.004687274442042876 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2459e+06 | 262144 | 1 | 2.104e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.19972751280858 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3576468830703232, dt = 0.004687274442042876
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.2%)
patch tree reduce : 2.24 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.42 us (0.6%)
LB compute : 215.60 us (89.8%)
LB move op cnt : 0
LB apply : 4.46 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (62.6%)
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 | 1.2525e+06 | 262144 | 1 | 2.093e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.62038569164702 (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 : 6.92 us (3.2%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 195.43 us (89.4%)
LB move op cnt : 0
LB apply : 4.44 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (67.3%)
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 | 1.2452e+06 | 262144 | 1 | 2.105e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.15394624068091 (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.81 us (4.2%)
patch tree reduce : 2.04 us (1.0%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 1.51 us (0.7%)
LB compute : 186.87 us (88.3%)
LB move op cnt : 0
LB apply : 4.56 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (66.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 | 1.2458e+06 | 262144 | 1 | 2.104e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.438539670002287 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 83.90501204200001 (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 : 14.19 us (4.9%)
patch tree reduce : 2.33 us (0.8%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 256.89 us (89.1%)
LB move op cnt : 0
LB apply : 4.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (72.1%)
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 | 1.0482e+06 | 262144 | 1 | 2.501e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.47499935230718 (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 : 6.79 us (2.8%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 219.48 us (90.4%)
LB move op cnt : 0
LB apply : 4.20 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (69.2%)
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 | 1.1052e+06 | 262144 | 1 | 2.372e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.14386677899732 (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.23 us (3.3%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.60 us (0.7%)
split / merge op : 0/0
apply split merge : 1.36 us (0.6%)
LB compute : 195.97 us (88.7%)
LB move op cnt : 0
LB apply : 4.82 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (66.4%)
Info: cfl dt = 0.004687269537391583 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1787e+06 | 262144 | 1 | 2.224e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.87373080384236 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38169339946409037, dt = 0.004687269537391583
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.5%)
patch tree reduce : 1.86 us (0.9%)
gen split merge : 1.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 178.41 us (83.4%)
LB move op cnt : 0
LB apply : 4.93 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (65.8%)
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 | 1.2674e+06 | 262144 | 1 | 2.068e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.58024164965445 (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.60 us (3.6%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.40 us (0.7%)
LB compute : 185.59 us (89.1%)
LB move op cnt : 0
LB apply : 4.03 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (75.7%)
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 | 1.2109e+06 | 262144 | 1 | 2.165e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.94523127141521 (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 : 11.54 us (4.5%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.56 us (0.6%)
LB compute : 230.07 us (88.9%)
LB move op cnt : 0
LB apply : 5.02 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (64.4%)
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 | 1.1521e+06 | 262144 | 1 | 2.275e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.15746349485222 (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.92 us (3.6%)
patch tree reduce : 2.45 us (1.1%)
gen split merge : 1.49 us (0.7%)
split / merge op : 0/0
apply split merge : 1.59 us (0.7%)
LB compute : 195.21 us (88.4%)
LB move op cnt : 0
LB apply : 4.43 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.6%)
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 | 1.2555e+06 | 262144 | 1 | 2.088e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.8152355183352 (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.57 us (3.4%)
patch tree reduce : 2.61 us (1.2%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.37 us (0.6%)
LB compute : 197.69 us (88.7%)
LB move op cnt : 0
LB apply : 4.18 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (68.5%)
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 | 1.1454e+06 | 262144 | 1 | 2.289e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.59764947865439 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 86.08792012500001 (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 : 14.04 us (4.0%)
patch tree reduce : 2.16 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 : 313.02 us (90.2%)
LB move op cnt : 0
LB apply : 5.75 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (69.3%)
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 | 1.0442e+06 | 262144 | 1 | 2.510e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.2145979393478 (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.66 us (3.2%)
patch tree reduce : 2.32 us (1.0%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.35 us (0.6%)
LB compute : 218.01 us (89.7%)
LB move op cnt : 0
LB apply : 4.94 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (71.5%)
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 | 1.2379e+06 | 262144 | 1 | 2.118e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.68281997679041 (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.50 us (3.4%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.31 us (0.6%)
split / merge op : 0/0
apply split merge : 1.52 us (0.7%)
LB compute : 196.73 us (88.8%)
LB move op cnt : 0
LB apply : 4.82 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (67.0%)
Info: cfl dt = 0.004687248322614161 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.0047e+06 | 262144 | 1 | 2.609e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.6728968563718 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41511439412796103, dt = 0.004687248322614161
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.02 us (3.3%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 219.39 us (89.8%)
LB move op cnt : 0
LB apply : 4.64 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (66.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 | 1.1154e+06 | 262144 | 1 | 2.350e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.79901786269103 (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.68 us (3.4%)
patch tree reduce : 2.41 us (1.1%)
gen split merge : 1.29 us (0.6%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 200.32 us (89.2%)
LB move op cnt : 0
LB apply : 4.33 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (63.3%)
Info: cfl dt = 0.004687243050476523 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1097e+06 | 262144 | 1 | 2.362e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.4305741486529 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42448888811429647, dt = 0.004687243050476523
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.4%)
patch tree reduce : 2.02 us (1.0%)
gen split merge : 979.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.36 us (0.6%)
LB compute : 187.81 us (88.6%)
LB move op cnt : 0
LB apply : 5.00 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (67.5%)
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 | 1.0586e+06 | 262144 | 1 | 2.476e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.13992595473613 (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 : 16.97 us (7.2%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 1.45 us (0.6%)
LB compute : 203.13 us (85.6%)
LB move op cnt : 0
LB apply : 5.04 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (72.5%)
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 | 1.0693e+06 | 262144 | 1 | 2.452e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.82944176284839 (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.81 us (3.2%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.35 us (0.5%)
split / merge op : 0/0
apply split merge : 1.41 us (0.6%)
LB compute : 221.75 us (90.0%)
LB move op cnt : 0
LB apply : 4.46 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (67.7%)
Info: cfl dt = 0.004687237481125901 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.0601e+06 | 262144 | 1 | 2.473e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.884721297661777 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 88.416035151 (s) [Godunov][rank=0]
amr::Godunov: t = 0.43447368421052635, dt = 0.004687237481125901
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 14.31 us (4.9%)
patch tree reduce : 2.54 us (0.9%)
gen split merge : 1.45 us (0.5%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 258.51 us (88.9%)
LB move op cnt : 0
LB apply : 4.82 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (67.5%)
Info: cfl dt = 0.004687235103275106 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.8994e+05 | 262144 | 1 | 2.946e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.284903981009975 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4391609216916523, dt = 0.004687235103275106
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.8%)
patch tree reduce : 2.60 us (1.1%)
gen split merge : 1.39 us (0.6%)
split / merge op : 0/0
apply split merge : 1.55 us (0.6%)
LB compute : 216.00 us (89.9%)
LB move op cnt : 0
LB apply : 4.48 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (67.8%)
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 | 1.1341e+06 | 262144 | 1 | 2.311e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.0009001218584 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4438481567949274, 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 : 8.76 us (2.6%)
patch tree reduce : 2.56 us (0.7%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 313.98 us (91.9%)
LB move op cnt : 0
LB apply : 5.35 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (80.2%)
Info: cfl dt = 0.0046872309996511515 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2332e+06 | 262144 | 1 | 2.126e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.38122599431904 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44853538972631346, dt = 0.0046872309996511515
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance 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 (3.2%)
patch tree reduce : 2.42 us (0.9%)
gen split merge : 1.61 us (0.6%)
split / merge op : 0/0
apply split merge : 1.68 us (0.6%)
LB compute : 234.57 us (90.1%)
LB move op cnt : 0
LB apply : 4.18 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.6%)
Info: cfl dt = 0.00468722934594331 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2395e+06 | 262144 | 1 | 2.115e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.78296878671965 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4532226207259646, dt = 0.00468722934594331
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.7%)
patch tree reduce : 2.14 us (1.1%)
gen split merge : 1.40 us (0.7%)
split / merge op : 0/0
apply split merge : 1.35 us (0.7%)
LB compute : 177.75 us (88.2%)
LB move op cnt : 0
LB apply : 4.07 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (63.1%)
Info: cfl dt = 0.004687227997326019 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2543e+06 | 262144 | 1 | 2.090e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.73540225212346 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4579098500719079, dt = 0.004687227997326019
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.7%)
patch tree reduce : 2.46 us (1.2%)
gen split merge : 1.39 us (0.7%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 173.29 us (87.5%)
LB move op cnt : 0
LB apply : 4.88 us (2.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (65.3%)
Info: cfl dt = 0.004687226985147302 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2500e+06 | 262144 | 1 | 2.097e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.46213144797957 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4625970780692339, dt = 0.004687226985147302
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.5%)
patch tree reduce : 2.30 us (1.1%)
gen split merge : 1.33 us (0.6%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 182.52 us (88.3%)
LB move op cnt : 0
LB apply : 4.43 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (70.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 | 1.1788e+06 | 262144 | 1 | 2.224e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.87807557050365 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4672843050543812, dt = 0.000610431787724075
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.4%)
patch tree reduce : 2.40 us (1.1%)
gen split merge : 1.29 us (0.6%)
split / merge op : 0/0
apply split merge : 1.55 us (0.7%)
LB compute : 193.06 us (88.5%)
LB move op cnt : 0
LB apply : 4.83 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (63.9%)
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 | 1.0758e+06 | 262144 | 1 | 2.437e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.018374168491288 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 90.672172523 (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 : 15.16 us (5.7%)
patch tree reduce : 2.45 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 232.21 us (87.9%)
LB move op cnt : 0
LB apply : 4.54 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (64.9%)
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 | 8.9360e+05 | 262144 | 1 | 2.934e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.52041225428725 (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.90 us (2.8%)
patch tree reduce : 2.37 us (0.8%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 259.73 us (91.1%)
LB move op cnt : 0
LB apply : 4.81 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.1%)
Info: cfl dt = 0.004687226080430829 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.8443e+05 | 262144 | 1 | 2.964e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.93027832216065 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47726918914445854, dt = 0.004687226080430829
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.0%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.73 us (0.7%)
LB compute : 227.83 us (90.4%)
LB move op cnt : 0
LB apply : 4.22 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (68.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 | 1.2561e+06 | 262144 | 1 | 2.087e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.85367674605408 (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 : 7.40 us (3.7%)
patch tree reduce : 2.57 us (1.3%)
gen split merge : 1.45 us (0.7%)
split / merge op : 0/0
apply split merge : 1.56 us (0.8%)
LB compute : 174.47 us (87.4%)
LB move op cnt : 0
LB apply : 4.74 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (73.9%)
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 | 1.0548e+06 | 262144 | 1 | 2.485e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.89694985118734 (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 : 8.03 us (3.7%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.48 us (0.7%)
split / merge op : 0/0
apply split merge : 1.68 us (0.8%)
LB compute : 193.33 us (88.1%)
LB move op cnt : 0
LB apply : 4.88 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (68.7%)
Info: cfl dt = 0.004687225044433655 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2423e+06 | 262144 | 1 | 2.110e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.96429218008745 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4913308663120883, dt = 0.004687225044433655
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.6%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 920.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.44 us (0.7%)
LB compute : 177.58 us (88.0%)
LB move op cnt : 0
LB apply : 4.34 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (65.2%)
Info: cfl dt = 0.004687225036305153 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2619e+06 | 262144 | 1 | 2.077e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.22690113176317 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4960180913565219, dt = 0.004687225036305153
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.1%)
patch tree reduce : 2.42 us (1.1%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.54 us (0.7%)
LB compute : 201.60 us (89.5%)
LB move op cnt : 0
LB apply : 3.83 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (73.2%)
Info: cfl dt = 0.004687225236215674 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 9.7501e+05 | 262144 | 1 | 2.689e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.76039469137742 (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 : 8.04 us (3.6%)
patch tree reduce : 2.31 us (1.0%)
gen split merge : 1.53 us (0.7%)
split / merge op : 0/0
apply split merge : 1.44 us (0.7%)
LB compute : 196.02 us (88.9%)
LB move op cnt : 0
LB apply : 4.04 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (68.6%)
Info: cfl dt = 0.004687225287887821 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2264e+06 | 262144 | 1 | 2.137e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.281695612383944 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 93.022424912 (s) [Godunov][rank=0]
amr::Godunov: t = 0.5013157894736843, dt = 0.004687225287887821
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 15.20 us (3.2%)
patch tree reduce : 2.27 us (0.5%)
gen split merge : 1.01 us (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.2%)
LB compute : 449.22 us (93.2%)
LB move op cnt : 0
LB apply : 5.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (74.1%)
Info: cfl dt = 0.004687225687580084 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1849e+06 | 262144 | 1 | 2.212e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.27138694303484 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5060030147615721, dt = 0.004687225687580084
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 18.01 us (7.5%)
patch tree reduce : 2.34 us (1.0%)
gen split merge : 1.51 us (0.6%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 206.24 us (85.4%)
LB move op cnt : 0
LB apply : 4.14 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (60.9%)
Info: cfl dt = 0.004687226248431701 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 9.7093e+05 | 262144 | 1 | 2.700e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.49819013274793 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5106902404491521, dt = 0.004687226248431701
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.2%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.54 us (0.7%)
LB compute : 209.95 us (89.9%)
LB move op cnt : 0
LB apply : 3.95 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (59.4%)
Info: cfl dt = 0.004687226955426765 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 9.6903e+05 | 262144 | 1 | 2.705e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.37595491420066 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5153774666975838, dt = 0.004687226955426765
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.40 us (1.0%)
gen split merge : 1.50 us (0.6%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 225.09 us (90.1%)
LB move op cnt : 0
LB apply : 4.64 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (64.3%)
Info: cfl dt = 0.004687227765702978 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2498e+06 | 262144 | 1 | 2.097e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.45001386436566 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5200646936530106, dt = 0.004687227765702978
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.3%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.54 us (0.7%)
LB compute : 213.03 us (89.8%)
LB move op cnt : 0
LB apply : 4.24 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (74.0%)
Info: cfl dt = 0.004687228666571631 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1291e+06 | 262144 | 1 | 2.322e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.67990829166946 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5247519214187135, dt = 0.004687228666571631
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance 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.10 us (4.1%)
patch tree reduce : 2.49 us (1.3%)
gen split merge : 1.38 us (0.7%)
split / merge op : 0/0
apply split merge : 1.70 us (0.9%)
LB compute : 169.66 us (85.6%)
LB move op cnt : 0
LB apply : 3.97 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (72.4%)
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 | 9.7724e+05 | 262144 | 1 | 2.682e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.90426442146545 (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 : 73.30 us (23.5%)
patch tree reduce : 2.24 us (0.7%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 221.18 us (71.0%)
LB move op cnt : 0
LB apply : 4.67 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (68.8%)
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 | 1.2575e+06 | 262144 | 1 | 2.085e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.94681344824757 (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 : 8.31 us (4.2%)
patch tree reduce : 2.26 us (1.1%)
gen split merge : 1.29 us (0.7%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 171.27 us (86.9%)
LB move op cnt : 0
LB apply : 5.08 us (2.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (65.4%)
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 | 1.0602e+06 | 262144 | 1 | 2.472e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.888451574495896 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 95.352050741 (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.72 us (4.5%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 253.93 us (89.4%)
LB move op cnt : 0
LB apply : 5.24 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (77.3%)
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 | 1.0309e+06 | 262144 | 1 | 2.543e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.35941412001898 (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.68 us (3.6%)
patch tree reduce : 2.41 us (1.1%)
gen split merge : 1.58 us (0.7%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 187.98 us (88.0%)
LB move op cnt : 0
LB apply : 5.00 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (67.2%)
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 | 1.2517e+06 | 262144 | 1 | 2.094e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.57289852983406 (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.22 us (3.1%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 207.14 us (89.5%)
LB move op cnt : 0
LB apply : 4.94 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (65.0%)
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 | 1.2302e+06 | 262144 | 1 | 2.131e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.18890457764164 (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.17 us (3.6%)
patch tree reduce : 2.35 us (1.2%)
gen split merge : 1.29 us (0.6%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 176.80 us (88.2%)
LB move op cnt : 0
LB apply : 4.05 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (71.3%)
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 | 1.2344e+06 | 262144 | 1 | 2.124e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.45946564657945 (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.23 us (3.3%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.27 us (0.6%)
split / merge op : 0/0
apply split merge : 1.44 us (0.7%)
LB compute : 191.43 us (88.6%)
LB move op cnt : 0
LB apply : 5.21 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (66.9%)
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 | 1.2482e+06 | 262144 | 1 | 2.100e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.34505229920912 (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 : 8.14 us (3.4%)
patch tree reduce : 2.60 us (1.1%)
gen split merge : 1.43 us (0.6%)
split / merge op : 0/0
apply split merge : 1.55 us (0.7%)
LB compute : 211.66 us (89.0%)
LB move op cnt : 0
LB apply : 4.38 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (70.4%)
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 | 1.2521e+06 | 262144 | 1 | 2.094e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.59853021903298 (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.29 us (3.6%)
patch tree reduce : 1.98 us (1.0%)
gen split merge : 1.33 us (0.7%)
split / merge op : 0/0
apply split merge : 1.42 us (0.7%)
LB compute : 177.77 us (87.6%)
LB move op cnt : 0
LB apply : 5.12 us (2.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (64.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 | 1.2724e+06 | 262144 | 1 | 2.060e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.90587652151737 (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 : 7.61 us (3.6%)
patch tree reduce : 2.17 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 189.18 us (88.7%)
LB move op cnt : 0
LB apply : 4.32 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (66.8%)
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 | 1.2639e+06 | 262144 | 1 | 2.074e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.594872803429377 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 97.465669457 (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 : 14.92 us (3.7%)
patch tree reduce : 2.32 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.4%)
LB compute : 370.08 us (91.8%)
LB move op cnt : 0
LB apply : 4.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (78.3%)
Info: cfl dt = 0.004687242197886569 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2433e+06 | 262144 | 1 | 2.108e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.02916049085678 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5728451355312181, dt = 0.004687242197886569
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 264.13 us (91.3%)
LB move op cnt : 0
LB apply : 4.79 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (74.6%)
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 | 1.2177e+06 | 262144 | 1 | 2.153e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.38097312537029 (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.40 us (3.2%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.40 us (0.6%)
split / merge op : 0/0
apply split merge : 1.85 us (0.8%)
LB compute : 204.98 us (89.2%)
LB move op cnt : 0
LB apply : 4.65 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (68.1%)
Info: cfl dt = 0.004687244822985127 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2470e+06 | 262144 | 1 | 2.102e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.27021340896881 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5822196212736498, dt = 0.004687244822985127
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.1%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 219.71 us (89.9%)
LB move op cnt : 0
LB apply : 4.43 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (72.0%)
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 | 1.2380e+06 | 262144 | 1 | 2.117e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.68980499930007 (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.44 us (2.9%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.33 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 229.17 us (90.2%)
LB move op cnt : 0
LB apply : 4.80 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (71.2%)
Info: cfl dt = 0.004687247152643581 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2381e+06 | 262144 | 1 | 2.117e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.69623173666344 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5915941121232691, dt = 0.004687247152643581
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.2%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.46 us (0.6%)
split / merge op : 0/0
apply split merge : 1.60 us (0.7%)
LB compute : 215.72 us (89.5%)
LB move op cnt : 0
LB apply : 4.78 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (72.0%)
Info: cfl dt = 0.004687248200677834 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2328e+06 | 262144 | 1 | 2.126e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.3563043868584 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5962813592759126, dt = 0.004687248200677834
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.5%)
patch tree reduce : 2.01 us (1.0%)
gen split merge : 1.52 us (0.7%)
split / merge op : 0/0
apply split merge : 1.74 us (0.8%)
LB compute : 184.16 us (88.1%)
LB move op cnt : 0
LB apply : 4.74 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (66.5%)
Info: cfl dt = 0.004687249172737286 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2588e+06 | 262144 | 1 | 2.082e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.03010640945887 (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 : 8.06 us (3.9%)
patch tree reduce : 1.90 us (0.9%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.49 us (0.7%)
LB compute : 182.51 us (88.0%)
LB move op cnt : 0
LB apply : 4.36 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (64.9%)
Info: cfl dt = 0.004687249297870252 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2333e+06 | 262144 | 1 | 2.125e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.33756370288366 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 99.74111374600001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.6015789473684211, dt = 0.004687249297870252
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 14.26 us (3.4%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 808.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.66 us (0.4%)
LB compute : 385.33 us (92.5%)
LB move op cnt : 0
LB apply : 4.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (69.7%)
Info: cfl dt = 0.0046872501852140884 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2347e+06 | 262144 | 1 | 2.123e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.47661916465773 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6062661966662913, dt = 0.0046872501852140884
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.0%)
patch tree reduce : 2.04 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.45 us (0.6%)
LB compute : 217.79 us (90.1%)
LB move op cnt : 0
LB apply : 4.54 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (71.4%)
Info: cfl dt = 0.004687251006990295 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1894e+06 | 262144 | 1 | 2.204e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.56299498298362 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6109534468515054, dt = 0.004687251006990295
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance 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.55 us (3.6%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.66 us (0.7%)
LB compute : 213.33 us (89.3%)
LB move op cnt : 0
LB apply : 4.45 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (67.0%)
Info: cfl dt = 0.004687251769234125 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 9.0004e+05 | 262144 | 1 | 2.913e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.93538635604644 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6156406978584957, dt = 0.004687251769234125
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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.54 us (0.8%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 302.72 us (92.5%)
LB move op cnt : 0
LB apply : 4.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (70.2%)
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 | 1.1514e+06 | 262144 | 1 | 2.277e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.11748249370001 (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 : 7.91 us (3.5%)
patch tree reduce : 2.49 us (1.1%)
gen split merge : 1.55 us (0.7%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 200.37 us (88.7%)
LB move op cnt : 0
LB apply : 4.12 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (67.8%)
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 | 1.2634e+06 | 262144 | 1 | 2.075e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.32468819591266 (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.14 us (3.0%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.60 us (0.7%)
LB compute : 211.10 us (89.7%)
LB move op cnt : 0
LB apply : 4.49 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (73.4%)
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 | 1.2447e+06 | 262144 | 1 | 2.106e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.12183798498994 (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 : 10.55 us (2.7%)
patch tree reduce : 2.88 us (0.7%)
gen split merge : 1.75 us (0.4%)
split / merge op : 0/0
apply split merge : 2.27 us (0.6%)
LB compute : 355.49 us (91.1%)
LB move op cnt : 0
LB apply : 6.67 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (71.6%)
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 | 1.0815e+06 | 262144 | 1 | 2.424e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.61406308140073 (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.06 us (3.1%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 202.56 us (89.6%)
LB move op cnt : 0
LB apply : 4.44 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (67.3%)
Info: cfl dt = 0.004687254392705211 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.0635e+06 | 262144 | 1 | 2.465e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.913549092944663 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 101.98234933100001 (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 34.60 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.55 us (54.2%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (0.3%)
patch tree reduce : 1.62 us (0.3%)
gen split merge : 920.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.2%)
LB compute : 468.54 us (97.3%)
LB move op cnt : 0
LB apply : 4.85 us (1.0%)
Info: patch count stable after 1 runs npatch = 1 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: time since start : 109.62184552500001 (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 : 14.29 us (5.2%)
patch tree reduce : 2.26 us (0.8%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.54 us (0.6%)
LB compute : 243.22 us (87.9%)
LB move op cnt : 0
LB apply : 5.39 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (70.3%)
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 | 5.9499e+05 | 262144 | 1 | 4.406e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.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.48 us (3.4%)
patch tree reduce : 2.66 us (1.2%)
gen split merge : 1.38 us (0.6%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 194.42 us (88.7%)
LB move op cnt : 0
LB apply : 4.10 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (70.3%)
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 | 1.1105e+06 | 262144 | 1 | 2.361e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.47822480713032 (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.09 us (2.7%)
patch tree reduce : 2.45 us (0.9%)
gen split merge : 1.48 us (0.6%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 227.71 us (86.7%)
LB move op cnt : 0
LB apply : 15.03 us (5.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (68.3%)
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 | 1.1334e+06 | 262144 | 1 | 2.313e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.95270452266402 (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.25 us (3.2%)
patch tree reduce : 2.68 us (1.2%)
gen split merge : 1.32 us (0.6%)
split / merge op : 0/0
apply split merge : 1.51 us (0.7%)
LB compute : 204.18 us (89.3%)
LB move op cnt : 0
LB apply : 4.41 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (66.6%)
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 | 1.1987e+06 | 262144 | 1 | 2.187e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.15514741714642 (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 : 8.22 us (4.2%)
patch tree reduce : 2.54 us (1.3%)
gen split merge : 1.46 us (0.7%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 170.32 us (86.6%)
LB move op cnt : 0
LB apply : 5.01 us (2.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (67.2%)
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 | 1.2026e+06 | 262144 | 1 | 2.180e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.40554085639334 (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 : 8.05 us (3.9%)
patch tree reduce : 2.40 us (1.2%)
gen split merge : 1.57 us (0.8%)
split / merge op : 0/0
apply split merge : 1.53 us (0.7%)
LB compute : 178.15 us (87.4%)
LB move op cnt : 0
LB apply : 4.37 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.6%)
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 | 1.2386e+06 | 262144 | 1 | 2.117e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.72262138979984 (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.45 us (3.5%)
patch tree reduce : 2.64 us (1.2%)
gen split merge : 1.31 us (0.6%)
split / merge op : 0/0
apply split merge : 1.46 us (0.7%)
LB compute : 187.91 us (88.5%)
LB move op cnt : 0
LB apply : 4.08 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (63.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 | 9.5449e+05 | 262144 | 1 | 2.746e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.437372536461154 (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.72 us (3.4%)
patch tree reduce : 2.68 us (1.2%)
gen split merge : 1.38 us (0.6%)
split / merge op : 0/0
apply split merge : 1.54 us (0.7%)
LB compute : 203.48 us (88.7%)
LB move op cnt : 0
LB apply : 4.34 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (66.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 | 1.2225e+06 | 262144 | 1 | 2.144e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.68728825716956 (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 : 6.94 us (2.7%)
patch tree reduce : 2.58 us (1.0%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 1.47 us (0.6%)
LB compute : 234.65 us (90.2%)
LB move op cnt : 0
LB apply : 4.71 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (72.7%)
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 | 1.2628e+06 | 262144 | 1 | 2.076e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.608480041417595 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 112.27084174500001 (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 : 14.30 us (3.9%)
patch tree reduce : 2.80 us (0.8%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.3%)
LB compute : 335.39 us (91.3%)
LB move op cnt : 0
LB apply : 5.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (72.5%)
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 | 1.0056e+06 | 262144 | 1 | 2.607e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.72684592837152 (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.17 us (3.3%)
patch tree reduce : 2.61 us (1.2%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.55 us (0.7%)
LB compute : 195.15 us (88.6%)
LB move op cnt : 0
LB apply : 4.64 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (69.9%)
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 | 1.2567e+06 | 262144 | 1 | 2.086e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.89133066053247 (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.71 us (3.4%)
patch tree reduce : 2.47 us (1.1%)
gen split merge : 1.29 us (0.6%)
split / merge op : 0/0
apply split merge : 1.45 us (0.6%)
LB compute : 199.39 us (89.0%)
LB move op cnt : 0
LB apply : 4.40 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (68.1%)
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 | 1.1267e+06 | 262144 | 1 | 2.327e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.525244693898 (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 : 8.95 us (3.4%)
patch tree reduce : 3.13 us (1.2%)
gen split merge : 1.51 us (0.6%)
split / merge op : 0/0
apply split merge : 1.46 us (0.6%)
LB compute : 231.05 us (88.8%)
LB move op cnt : 0
LB apply : 4.96 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (66.9%)
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 | 1.0854e+06 | 262144 | 1 | 2.415e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.86548507114846 (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 : 8.23 us (3.0%)
patch tree reduce : 3.21 us (1.2%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 243.74 us (89.6%)
LB move op cnt : 0
LB apply : 5.47 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (65.5%)
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 | 1.1775e+06 | 262144 | 1 | 2.226e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.79436830396196 (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.39 us (3.5%)
patch tree reduce : 2.65 us (1.3%)
gen split merge : 1.28 us (0.6%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 186.05 us (88.4%)
LB move op cnt : 0
LB apply : 4.36 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (71.4%)
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 | 1.1452e+06 | 262144 | 1 | 2.289e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.71346577998327 (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 : 8.34 us (4.2%)
patch tree reduce : 2.52 us (1.3%)
gen split merge : 1.55 us (0.8%)
split / merge op : 0/0
apply split merge : 1.39 us (0.7%)
LB compute : 171.90 us (86.7%)
LB move op cnt : 0
LB apply : 4.57 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (63.7%)
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 | 1.0507e+06 | 262144 | 1 | 2.495e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.63337920686354 (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.97 us (4.0%)
patch tree reduce : 2.86 us (1.4%)
gen split merge : 1.55 us (0.8%)
split / merge op : 0/0
apply split merge : 1.40 us (0.7%)
LB compute : 174.45 us (86.6%)
LB move op cnt : 0
LB apply : 4.90 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (65.1%)
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 | 9.9489e+05 | 262144 | 1 | 2.635e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.350675499524367 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 114.62701155600001 (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 : 14.22 us (3.8%)
patch tree reduce : 2.59 us (0.7%)
gen split merge : 997.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 339.09 us (91.3%)
LB move op cnt : 0
LB apply : 5.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (71.8%)
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 | 1.1697e+06 | 262144 | 1 | 2.241e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.28995087863406 (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.22 us (3.0%)
patch tree reduce : 2.60 us (1.1%)
gen split merge : 1.37 us (0.6%)
split / merge op : 0/0
apply split merge : 1.35 us (0.6%)
LB compute : 215.96 us (89.8%)
LB move op cnt : 0
LB apply : 4.46 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (69.8%)
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 | 1.2199e+06 | 262144 | 1 | 2.149e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.52080602587692 (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.69 us (3.8%)
patch tree reduce : 2.47 us (1.2%)
gen split merge : 1.41 us (0.7%)
split / merge op : 0/0
apply split merge : 1.13 us (0.6%)
LB compute : 180.31 us (88.1%)
LB move op cnt : 0
LB apply : 4.17 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (66.9%)
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 | 1.2717e+06 | 262144 | 1 | 2.061e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.85792772020922 (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.61 us (3.5%)
patch tree reduce : 2.49 us (1.1%)
gen split merge : 1.49 us (0.7%)
split / merge op : 0/0
apply split merge : 1.33 us (0.6%)
LB compute : 194.11 us (88.5%)
LB move op cnt : 0
LB apply : 4.44 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (73.9%)
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 | 1.1391e+06 | 262144 | 1 | 2.301e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.32323148323792 (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.29 us (2.9%)
patch tree reduce : 2.45 us (1.0%)
gen split merge : 1.29 us (0.5%)
split / merge op : 0/0
apply split merge : 1.45 us (0.6%)
LB compute : 228.93 us (90.4%)
LB move op cnt : 0
LB apply : 4.50 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.0%)
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 | 1.0451e+06 | 262144 | 1 | 2.508e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.2749698187581 (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 : 7.40 us (3.4%)
patch tree reduce : 2.94 us (1.3%)
gen split merge : 1.32 us (0.6%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 194.18 us (88.4%)
LB move op cnt : 0
LB apply : 5.42 us (2.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (68.4%)
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 | 1.0672e+06 | 262144 | 1 | 2.456e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.69364963930876 (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.69 us (3.3%)
patch tree reduce : 2.42 us (1.0%)
gen split merge : 1.45 us (0.6%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 209.23 us (89.2%)
LB move op cnt : 0
LB apply : 4.82 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (69.7%)
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 | 1.0724e+06 | 262144 | 1 | 2.445e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.02700080496453 (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.70 us (3.1%)
patch tree reduce : 2.95 us (1.2%)
gen split merge : 1.42 us (0.6%)
split / merge op : 0/0
apply split merge : 1.67 us (0.7%)
LB compute : 223.94 us (89.7%)
LB move op cnt : 0
LB apply : 4.20 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.5%)
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 | 9.7546e+05 | 262144 | 1 | 2.687e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.179858141605989 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 116.897982833 (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 : 14.29 us (3.5%)
patch tree reduce : 2.23 us (0.5%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.3%)
LB compute : 381.33 us (92.3%)
LB move op cnt : 0
LB apply : 4.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (72.5%)
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 | 1.2179e+06 | 262144 | 1 | 2.152e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.39856826476253 (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.59 us (3.3%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.45 us (0.6%)
split / merge op : 0/0
apply split merge : 1.50 us (0.7%)
LB compute : 202.72 us (88.9%)
LB move op cnt : 0
LB apply : 4.62 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (64.9%)
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 | 1.0062e+06 | 262144 | 1 | 2.605e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.76833523506336 (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.58 us (3.8%)
patch tree reduce : 2.15 us (1.1%)
gen split merge : 1.39 us (0.7%)
split / merge op : 0/0
apply split merge : 1.53 us (0.8%)
LB compute : 177.52 us (87.8%)
LB move op cnt : 0
LB apply : 4.44 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (73.5%)
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 | 1.2176e+06 | 262144 | 1 | 2.153e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.37674612740865 (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 : 6.65 us (3.2%)
patch tree reduce : 2.29 us (1.1%)
gen split merge : 1.40 us (0.7%)
split / merge op : 0/0
apply split merge : 1.56 us (0.7%)
LB compute : 186.00 us (88.9%)
LB move op cnt : 0
LB apply : 3.84 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (68.2%)
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 | 1.2444e+06 | 262144 | 1 | 2.107e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.10503738764308 (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.77 us (3.4%)
patch tree reduce : 2.20 us (0.9%)
gen split merge : 1.42 us (0.6%)
split / merge op : 0/0
apply split merge : 1.41 us (0.6%)
LB compute : 206.48 us (89.1%)
LB move op cnt : 0
LB apply : 4.93 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (66.2%)
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 | 1.2443e+06 | 262144 | 1 | 2.107e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.09609300403923 (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 : 8.02 us (3.2%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 1.47 us (0.6%)
LB compute : 227.25 us (90.3%)
LB move op cnt : 0
LB apply : 4.23 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (78.3%)
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 | 1.1862e+06 | 262144 | 1 | 2.210e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.35549315416841 (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 : 7.22 us (3.0%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.53 us (0.6%)
split / merge op : 0/0
apply split merge : 1.41 us (0.6%)
LB compute : 213.57 us (89.6%)
LB move op cnt : 0
LB apply : 4.49 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (59.7%)
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 | 1.2753e+06 | 262144 | 1 | 2.056e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.0898844420946 (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 : 7.07 us (3.1%)
patch tree reduce : 2.47 us (1.1%)
gen split merge : 1.35 us (0.6%)
split / merge op : 0/0
apply split merge : 1.41 us (0.6%)
LB compute : 206.01 us (89.4%)
LB move op cnt : 0
LB apply : 4.61 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (66.0%)
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 | 1.1588e+06 | 262144 | 1 | 2.262e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.709990392906517 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 119.24520442000001 (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 : 14.06 us (3.5%)
patch tree reduce : 2.06 us (0.5%)
gen split merge : 1.37 us (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.4%)
LB compute : 368.01 us (91.9%)
LB move op cnt : 0
LB apply : 4.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (73.4%)
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 | 1.1804e+06 | 262144 | 1 | 2.221e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.97941266481523 (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.34 us (2.3%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 293.46 us (92.2%)
LB move op cnt : 0
LB apply : 5.55 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (79.8%)
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 | 1.1765e+06 | 262144 | 1 | 2.228e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.73124898923477 (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 : 7.92 us (3.6%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.27 us (0.6%)
split / merge op : 0/0
apply split merge : 1.60 us (0.7%)
LB compute : 195.42 us (88.4%)
LB move op cnt : 0
LB apply : 5.10 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (66.7%)
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 | 1.0439e+06 | 262144 | 1 | 2.511e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.19502784527684 (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 : 6.97 us (3.4%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.45 us (0.7%)
split / merge op : 0/0
apply split merge : 1.48 us (0.7%)
LB compute : 181.63 us (88.3%)
LB move op cnt : 0
LB apply : 4.28 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (66.8%)
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 | 1.2005e+06 | 262144 | 1 | 2.184e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.27668194588249 (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 : 7.59 us (3.0%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 229.79 us (90.8%)
LB move op cnt : 0
LB apply : 4.27 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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 | 1.2707e+06 | 262144 | 1 | 2.063e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.7966890975516 (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.15 us (3.4%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.27 us (0.6%)
split / merge op : 0/0
apply split merge : 1.54 us (0.7%)
LB compute : 185.97 us (88.1%)
LB move op cnt : 0
LB apply : 4.93 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (66.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 | 1.0687e+06 | 262144 | 1 | 2.453e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.78945905741769 (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.22 us (2.8%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 913.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 232.20 us (90.9%)
LB move op cnt : 0
LB apply : 4.25 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (69.3%)
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 | 1.2535e+06 | 262144 | 1 | 2.091e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.68519920377615 (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.19 us (3.3%)
patch tree reduce : 1.96 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 196.65 us (89.4%)
LB move op cnt : 0
LB apply : 4.57 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (63.5%)
Info: cfl dt = 0.004687258025241744 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2041e+06 | 262144 | 1 | 2.177e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.089418994572222 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 121.418297651 (s) [Godunov][rank=0]
amr::Godunov: t = 0.16710526315789476, dt = 0.004687258025241744
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 14.34 us (5.1%)
patch tree reduce : 2.50 us (0.9%)
gen split merge : 965.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 250.56 us (88.5%)
LB move op cnt : 0
LB apply : 5.03 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (78.1%)
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 | 1.2535e+06 | 262144 | 1 | 2.091e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.68981513987053 (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.48 us (3.4%)
patch tree reduce : 1.81 us (0.8%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.43 us (0.7%)
LB compute : 193.72 us (89.1%)
LB move op cnt : 0
LB apply : 4.63 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (68.3%)
Info: cfl dt = 0.004687251467543439 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2186e+06 | 262144 | 1 | 2.151e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.44320549414732 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17647977591166472, dt = 0.004687251467543439
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.2%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.6%)
LB compute : 211.89 us (89.8%)
LB move op cnt : 0
LB apply : 4.39 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (65.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 | 1.2310e+06 | 262144 | 1 | 2.129e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.2407720256949 (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 : 7.65 us (3.0%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 231.53 us (90.3%)
LB move op cnt : 0
LB apply : 4.89 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (75.3%)
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 | 1.1706e+06 | 262144 | 1 | 2.239e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.35264272757185 (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 : 7.55 us (3.5%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.34 us (0.6%)
split / merge op : 0/0
apply split merge : 1.32 us (0.6%)
LB compute : 193.46 us (88.9%)
LB move op cnt : 0
LB apply : 4.11 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (69.1%)
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 | 9.8605e+05 | 262144 | 1 | 2.659e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.47188259005805 (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 : 8.30 us (3.5%)
patch tree reduce : 2.16 us (0.9%)
gen split merge : 1.47 us (0.6%)
split / merge op : 0/0
apply split merge : 1.47 us (0.6%)
LB compute : 208.29 us (89.1%)
LB move op cnt : 0
LB apply : 4.40 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (56.7%)
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 | 1.0416e+06 | 262144 | 1 | 2.517e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.04925795684562 (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 : 9.18 us (4.3%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.53 us (0.7%)
LB compute : 189.25 us (87.7%)
LB move op cnt : 0
LB apply : 4.74 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (65.7%)
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 | 8.6012e+05 | 262144 | 1 | 3.048e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.365212484199034 (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 : 8.97 us (3.9%)
patch tree reduce : 2.48 us (1.1%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.54 us (0.7%)
LB compute : 202.22 us (88.5%)
LB move op cnt : 0
LB apply : 4.39 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (66.4%)
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 | 9.3990e+05 | 262144 | 1 | 2.789e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.87760703625288 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 123.76333363900001 (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 : 13.65 us (5.2%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.39 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 233.91 us (88.3%)
LB move op cnt : 0
LB apply : 4.49 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (69.5%)
Info: cfl dt = 0.0046872351092796475 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.0424e+06 | 262144 | 1 | 2.515e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.09937772040104 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20521355295959381, dt = 0.0046872351092796475
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.4%)
patch tree reduce : 2.45 us (1.1%)
gen split merge : 1.40 us (0.6%)
split / merge op : 0/0
apply split merge : 1.51 us (0.7%)
LB compute : 186.61 us (84.1%)
LB move op cnt : 0
LB apply : 14.85 us (6.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (63.5%)
Info: cfl dt = 0.004687233301424946 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2663e+06 | 262144 | 1 | 2.070e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.51081701895353 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20990078806887347, dt = 0.004687233301424946
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance 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.07 us (3.2%)
patch tree reduce : 2.51 us (1.0%)
gen split merge : 1.40 us (0.5%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 229.52 us (89.9%)
LB move op cnt : 0
LB apply : 4.60 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (67.8%)
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 | 1.2487e+06 | 262144 | 1 | 2.099e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.38109430426792 (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 : 9.33 us (4.1%)
patch tree reduce : 2.59 us (1.1%)
gen split merge : 1.55 us (0.7%)
split / merge op : 0/0
apply split merge : 1.32 us (0.6%)
LB compute : 198.67 us (87.1%)
LB move op cnt : 0
LB apply : 4.83 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.2%)
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 | 1.2533e+06 | 262144 | 1 | 2.092e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.67421920315392 (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.11 us (3.4%)
patch tree reduce : 2.67 us (1.3%)
gen split merge : 1.52 us (0.7%)
split / merge op : 0/0
apply split merge : 1.50 us (0.7%)
LB compute : 186.91 us (88.5%)
LB move op cnt : 0
LB apply : 4.25 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (71.2%)
Info: cfl dt = 0.0046872291305276375 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2382e+06 | 262144 | 1 | 2.117e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.69967963224283 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22396248354897602, dt = 0.0046872291305276375
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.4%)
patch tree reduce : 2.57 us (1.1%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.53 us (0.7%)
LB compute : 207.17 us (89.0%)
LB move op cnt : 0
LB apply : 4.41 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (69.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 | 1.2130e+06 | 262144 | 1 | 2.161e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.07824084281793 (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.05 us (3.1%)
patch tree reduce : 2.60 us (1.2%)
gen split merge : 1.58 us (0.7%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 199.16 us (88.8%)
LB move op cnt : 0
LB apply : 5.05 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (66.5%)
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 | 9.1397e+05 | 262144 | 1 | 2.868e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.83180554065599 (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.87 us (1.5%)
patch tree reduce : 2.61 us (0.5%)
gen split merge : 1.42 us (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.3%)
LB compute : 514.32 us (95.2%)
LB move op cnt : 0
LB apply : 4.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (80.0%)
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 | 1.2113e+06 | 262144 | 1 | 2.164e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.1542149547063 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 125.963761567 (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 : 13.80 us (4.4%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 281.78 us (89.9%)
LB move op cnt : 0
LB apply : 4.67 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (71.5%)
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 | 1.2157e+06 | 262144 | 1 | 2.156e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.2508357412628 (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.38 us (3.4%)
patch tree reduce : 2.31 us (1.1%)
gen split merge : 1.47 us (0.7%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 190.21 us (88.8%)
LB move op cnt : 0
LB apply : 3.87 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.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 | 8.3796e+05 | 262144 | 1 | 3.128e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.938624963580246 (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 : 8.29 us (2.8%)
patch tree reduce : 2.44 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 268.39 us (91.1%)
LB move op cnt : 0
LB apply : 5.26 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (71.1%)
Info: cfl dt = 0.004687225268946161 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.0311e+06 | 262144 | 1 | 2.542e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.36811853908983 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2480090472156539, dt = 0.004687225268946161
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.4%)
patch tree reduce : 2.10 us (1.1%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 170.90 us (88.7%)
LB move op cnt : 0
LB apply : 4.39 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (73.1%)
Info: cfl dt = 0.004687225011719953 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.0835e+06 | 262144 | 1 | 2.420e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.74111929921247 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2526962724846001, dt = 0.004687225011719953
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.5%)
patch tree reduce : 2.19 us (1.1%)
gen split merge : 1.31 us (0.7%)
split / merge op : 0/0
apply split merge : 1.65 us (0.8%)
LB compute : 175.45 us (87.6%)
LB move op cnt : 0
LB apply : 4.99 us (2.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (67.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 | 1.2169e+06 | 262144 | 1 | 2.154e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.33309193190074 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.25738349749632006, 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.50 us (3.5%)
patch tree reduce : 2.56 us (1.2%)
gen split merge : 1.42 us (0.7%)
split / merge op : 0/0
apply split merge : 1.35 us (0.6%)
LB compute : 188.18 us (88.7%)
LB move op cnt : 0
LB apply : 3.84 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (63.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 | 1.0455e+06 | 262144 | 1 | 2.507e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.30028925096812 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26207072236192286, 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 : 9.24 us (3.9%)
patch tree reduce : 3.13 us (1.3%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.73 us (0.7%)
LB compute : 203.89 us (86.7%)
LB move op cnt : 0
LB apply : 5.07 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (70.3%)
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 | 1.0584e+06 | 262144 | 1 | 2.477e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.12771059048144 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2667579471723852, dt = 0.0006104738802463761
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance 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.58 us (3.7%)
patch tree reduce : 2.74 us (1.2%)
gen split merge : 1.28 us (0.6%)
split / merge op : 0/0
apply split merge : 1.53 us (0.7%)
LB compute : 201.91 us (88.2%)
LB move op cnt : 0
LB apply : 5.02 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (68.7%)
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 | 1.0720e+06 | 262144 | 1 | 2.445e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.986931922922036 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 128.325912297 (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 : 15.05 us (5.3%)
patch tree reduce : 2.49 us (0.9%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 252.52 us (88.5%)
LB move op cnt : 0
LB apply : 4.69 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (73.1%)
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 | 1.2411e+06 | 262144 | 1 | 2.112e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.88784881153508 (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 : 8.06 us (3.9%)
patch tree reduce : 2.41 us (1.2%)
gen split merge : 1.38 us (0.7%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 181.27 us (87.9%)
LB move op cnt : 0
LB apply : 4.55 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (66.8%)
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 | 1.1694e+06 | 262144 | 1 | 2.242e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.27148009852351 (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.89 us (3.7%)
patch tree reduce : 2.42 us (1.1%)
gen split merge : 1.36 us (0.6%)
split / merge op : 0/0
apply split merge : 1.55 us (0.7%)
LB compute : 189.46 us (87.9%)
LB move op cnt : 0
LB apply : 5.01 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (67.9%)
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 | 1.2442e+06 | 262144 | 1 | 2.107e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.09131633975305 (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 : 7.87 us (3.9%)
patch tree reduce : 2.47 us (1.2%)
gen split merge : 968.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.46 us (0.7%)
LB compute : 179.64 us (87.9%)
LB move op cnt : 0
LB apply : 4.50 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (69.3%)
Info: cfl dt = 0.0046872253731090295 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1826e+06 | 262144 | 1 | 2.217e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.12588782842249 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2861173210583578, dt = 0.0046872253731090295
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.3%)
patch tree reduce : 2.90 us (1.3%)
gen split merge : 1.60 us (0.7%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 196.10 us (88.2%)
LB move op cnt : 0
LB apply : 4.95 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (70.7%)
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 | 9.7898e+05 | 262144 | 1 | 2.678e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.016159541753055 (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 : 8.00 us (3.3%)
patch tree reduce : 2.59 us (1.1%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.52 us (0.6%)
LB compute : 217.42 us (89.3%)
LB move op cnt : 0
LB apply : 4.71 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (69.3%)
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 | 1.0511e+06 | 262144 | 1 | 2.494e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.65548072371936 (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 : 9.21 us (4.2%)
patch tree reduce : 2.80 us (1.3%)
gen split merge : 1.31 us (0.6%)
split / merge op : 0/0
apply split merge : 1.54 us (0.7%)
LB compute : 194.43 us (87.7%)
LB move op cnt : 0
LB apply : 5.04 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (71.4%)
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 | 1.1891e+06 | 262144 | 1 | 2.205e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.54134498211766 (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 : 8.77 us (3.7%)
patch tree reduce : 2.78 us (1.2%)
gen split merge : 1.48 us (0.6%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 213.62 us (89.0%)
LB move op cnt : 0
LB apply : 4.48 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (66.6%)
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 | 1.2092e+06 | 262144 | 1 | 2.168e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.1373415636428 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 130.56092118700002 (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 : 14.31 us (3.5%)
patch tree reduce : 2.31 us (0.6%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 380.31 us (92.3%)
LB move op cnt : 0
LB apply : 5.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (76.1%)
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 | 1.0421e+06 | 262144 | 1 | 2.516e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.07604973066536 (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.92 us (3.1%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.56 us (0.7%)
LB compute : 197.10 us (89.0%)
LB move op cnt : 0
LB apply : 4.60 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (67.9%)
Info: cfl dt = 0.00468722636270197 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.9882e+05 | 262144 | 1 | 2.917e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.85607610528221 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31016392587803654, dt = 0.00468722636270197
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.53 us (0.6%)
LB compute : 230.98 us (91.1%)
LB move op cnt : 0
LB apply : 4.09 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (70.5%)
Info: cfl dt = 0.004687226520755043 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1628e+06 | 262144 | 1 | 2.254e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.84892821644628 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3148511522407385, dt = 0.004687226520755043
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.2%)
patch tree reduce : 2.20 us (1.0%)
gen split merge : 1.40 us (0.6%)
split / merge op : 0/0
apply split merge : 1.81 us (0.8%)
LB compute : 205.63 us (89.4%)
LB move op cnt : 0
LB apply : 4.21 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (67.7%)
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 | 1.1936e+06 | 262144 | 1 | 2.196e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.83435059093232 (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 : 8.15 us (3.6%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.30 us (0.6%)
split / merge op : 0/0
apply split merge : 1.78 us (0.8%)
LB compute : 197.50 us (88.5%)
LB move op cnt : 0
LB apply : 4.97 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (65.2%)
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 | 1.2566e+06 | 262144 | 1 | 2.086e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.88394428312724 (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 : 8.07 us (3.8%)
patch tree reduce : 1.93 us (0.9%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.37 us (0.6%)
LB compute : 188.51 us (88.0%)
LB move op cnt : 0
LB apply : 4.66 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (67.8%)
Info: cfl dt = 0.0046872268780977135 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2502e+06 | 262144 | 1 | 2.097e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.47681915497446 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32891283220261486, dt = 0.0046872268780977135
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.44 us (3.2%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.51 us (0.7%)
LB compute : 204.57 us (89.2%)
LB move op cnt : 0
LB apply : 4.96 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (66.0%)
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 | 1.2707e+06 | 262144 | 1 | 2.063e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.79384951072076 (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 : 7.57 us (3.5%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 1.40 us (0.6%)
split / merge op : 0/0
apply split merge : 1.53 us (0.7%)
LB compute : 191.73 us (88.5%)
LB move op cnt : 0
LB apply : 3.95 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (69.2%)
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 | 1.2373e+06 | 262144 | 1 | 2.119e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.372487416558059 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 132.906644876 (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 : 14.82 us (3.6%)
patch tree reduce : 2.43 us (0.6%)
gen split merge : 779.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 380.31 us (92.0%)
LB move op cnt : 0
LB apply : 5.54 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (74.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 | 1.1768e+06 | 262144 | 1 | 2.228e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.74685491353509 (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.53 us (3.5%)
patch tree reduce : 2.35 us (1.1%)
gen split merge : 1.38 us (0.6%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 190.35 us (89.0%)
LB move op cnt : 0
LB apply : 4.20 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (72.8%)
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 | 1.2693e+06 | 262144 | 1 | 2.065e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.70350019196115 (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 : 6.62 us (2.9%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.68 us (0.7%)
LB compute : 207.38 us (90.0%)
LB move op cnt : 0
LB apply : 4.21 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (69.4%)
Info: cfl dt = 0.004687227047887923 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1719e+06 | 262144 | 1 | 2.237e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.43740382876287 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.34827220735159264, dt = 0.004687227047887923
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.0%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 202.52 us (89.5%)
LB move op cnt : 0
LB apply : 4.63 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (61.6%)
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 | 1.2492e+06 | 262144 | 1 | 2.099e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.40898813353701 (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.66 us (3.4%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.34 us (0.6%)
LB compute : 200.83 us (89.3%)
LB move op cnt : 0
LB apply : 4.84 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (67.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 | 1.1876e+06 | 262144 | 1 | 2.207e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.44664841513217 (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.21 us (3.3%)
patch tree reduce : 1.84 us (0.9%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 192.54 us (89.3%)
LB move op cnt : 0
LB apply : 4.25 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (70.5%)
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 | 1.1704e+06 | 262144 | 1 | 2.240e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.33944448924599 (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.53 us (3.7%)
patch tree reduce : 2.12 us (1.1%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.70 us (0.8%)
LB compute : 176.46 us (87.5%)
LB move op cnt : 0
LB apply : 4.61 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (69.5%)
Info: cfl dt = 0.004687226986761983 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2589e+06 | 262144 | 1 | 2.082e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.03728847247315 (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.71 us (3.6%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 1.42 us (0.7%)
LB compute : 191.27 us (88.6%)
LB move op cnt : 0
LB apply : 4.27 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (62.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 | 1.2351e+06 | 262144 | 1 | 2.122e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.354179159421955 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 135.020230709 (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 : 15.42 us (5.7%)
patch tree reduce : 2.45 us (0.9%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 235.32 us (87.7%)
LB move op cnt : 0
LB apply : 4.50 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (72.0%)
Info: cfl dt = 0.004687226983445321 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2672e+06 | 262144 | 1 | 2.069e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.56735213613479 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3723188059409073, dt = 0.004687226983445321
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.93 us (3.5%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.94 us (0.8%)
LB compute : 203.67 us (88.9%)
LB move op cnt : 0
LB apply : 4.37 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (64.4%)
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 | 1.0687e+06 | 262144 | 1 | 2.453e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.79049686465699 (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.26 us (3.5%)
patch tree reduce : 1.76 us (0.9%)
gen split merge : 1.25 us (0.6%)
split / merge op : 0/0
apply split merge : 1.59 us (0.8%)
LB compute : 181.30 us (88.4%)
LB move op cnt : 0
LB apply : 4.32 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (68.0%)
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 | 1.2113e+06 | 262144 | 1 | 2.164e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.97330325629599 (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.83 us (3.4%)
patch tree reduce : 2.32 us (1.2%)
gen split merge : 1.38 us (0.7%)
split / merge op : 0/0
apply split merge : 1.52 us (0.8%)
LB compute : 177.11 us (87.9%)
LB move op cnt : 0
LB apply : 4.12 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (68.5%)
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 | 1.1834e+06 | 262144 | 1 | 2.215e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.17266729788986 (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 : 7.39 us (2.9%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 1.39 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 228.49 us (90.4%)
LB move op cnt : 0
LB apply : 4.80 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (77.1%)
Info: cfl dt = 0.004687227106075874 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.0679e+06 | 262144 | 1 | 2.455e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.742553919705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39106771394817347, dt = 0.004687227106075874
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.37 us (0.9%)
gen split merge : 1.39 us (0.5%)
split / merge op : 0/0
apply split merge : 1.90 us (0.7%)
LB compute : 244.31 us (90.5%)
LB move op cnt : 0
LB apply : 4.27 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (70.9%)
Info: cfl dt = 0.004687227200013707 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.0498e+06 | 262144 | 1 | 2.497e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.57268017791749 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39575494105424935, dt = 0.004687227200013707
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.1%)
patch tree reduce : 2.42 us (1.0%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.38 us (0.6%)
LB compute : 217.31 us (89.5%)
LB move op cnt : 0
LB apply : 5.09 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (69.6%)
Info: cfl dt = 0.004687227330664567 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 9.7492e+05 | 262144 | 1 | 2.689e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.75515143061304 (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 : 8.49 us (3.8%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 196.29 us (88.8%)
LB move op cnt : 0
LB apply : 4.69 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (66.4%)
Info: cfl dt = 0.004687227363953839 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2231e+06 | 262144 | 1 | 2.143e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.2540476461855 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 137.27364288500002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.4010526315789474, dt = 0.004687227363953839
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance 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.81 us (3.7%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 338.09 us (91.6%)
LB move op cnt : 0
LB apply : 5.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (69.2%)
Info: cfl dt = 0.004687227531790343 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2446e+06 | 262144 | 1 | 2.106e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.11623226978693 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4057398589429012, dt = 0.004687227531790343
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.4%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 1.48 us (0.7%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 189.75 us (88.6%)
LB move op cnt : 0
LB apply : 4.12 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (68.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 | 9.3940e+05 | 262144 | 1 | 2.791e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.46821284165154 (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.44 us (3.3%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.60 us (0.7%)
split / merge op : 0/0
apply split merge : 1.33 us (0.6%)
LB compute : 200.31 us (89.0%)
LB move op cnt : 0
LB apply : 4.48 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (66.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 | 9.4843e+05 | 262144 | 1 | 2.764e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.049858277176256 (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 : 7.56 us (3.3%)
patch tree reduce : 2.14 us (0.9%)
gen split merge : 1.49 us (0.6%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 205.24 us (89.3%)
LB move op cnt : 0
LB apply : 4.02 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 996.00 ns (60.3%)
Info: cfl dt = 0.004687228218782791 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2747e+06 | 262144 | 1 | 2.057e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.05162473909174 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4198015421714664, dt = 0.004687228218782791
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.9%)
patch tree reduce : 2.11 us (1.0%)
gen split merge : 1.47 us (0.7%)
split / merge op : 0/0
apply split merge : 1.73 us (0.9%)
LB compute : 176.98 us (87.8%)
LB move op cnt : 0
LB apply : 4.60 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (69.4%)
Info: cfl dt = 0.004687228494835109 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1873e+06 | 262144 | 1 | 2.208e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.42340960272386 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42448877039024924, dt = 0.004687228494835109
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance 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 (3.7%)
patch tree reduce : 1.98 us (0.9%)
gen split merge : 1.74 us (0.8%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 201.27 us (88.9%)
LB move op cnt : 0
LB apply : 4.19 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (68.6%)
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 | 1.0809e+06 | 262144 | 1 | 2.425e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.57400107833534 (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 : 16.85 us (8.0%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.53 us (0.7%)
split / merge op : 0/0
apply split merge : 1.70 us (0.8%)
LB compute : 176.62 us (83.7%)
LB move op cnt : 0
LB apply : 4.46 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (72.7%)
Info: cfl dt = 0.004687229091880904 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.0038e+06 | 262144 | 1 | 2.611e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.61496693204158 (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.31 us (3.6%)
patch tree reduce : 1.93 us (1.0%)
gen split merge : 1.57 us (0.8%)
split / merge op : 0/0
apply split merge : 1.39 us (0.7%)
LB compute : 177.40 us (87.8%)
LB move op cnt : 0
LB apply : 4.80 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (67.8%)
Info: cfl dt = 0.004687229146758798 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1557e+06 | 262144 | 1 | 2.268e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.688593858950702 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 139.57755255700002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.43447368421052635, dt = 0.004687229146758798
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 14.23 us (4.9%)
patch tree reduce : 2.36 us (0.8%)
gen split merge : 805.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 258.65 us (89.2%)
LB move op cnt : 0
LB apply : 4.55 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (65.6%)
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 | 1.2280e+06 | 262144 | 1 | 2.135e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.04262374135931 (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 : 7.49 us (3.3%)
patch tree reduce : 2.44 us (1.1%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.55 us (0.7%)
LB compute : 200.07 us (89.1%)
LB move op cnt : 0
LB apply : 4.69 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (65.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 | 1.1875e+06 | 262144 | 1 | 2.208e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.43600898682183 (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.44 us (3.5%)
patch tree reduce : 2.30 us (1.1%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.37 us (0.6%)
LB compute : 186.74 us (88.3%)
LB move op cnt : 0
LB apply : 4.22 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.4%)
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 | 1.2373e+06 | 262144 | 1 | 2.119e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.6410863634149 (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.85 us (2.8%)
patch tree reduce : 2.26 us (0.9%)
gen split merge : 1.78 us (0.7%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 222.90 us (90.3%)
LB move op cnt : 0
LB apply : 4.34 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (67.1%)
Info: cfl dt = 0.004687230426218875 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1725e+06 | 262144 | 1 | 2.236e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.4732814490626 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45322260267309394, dt = 0.004687230426218875
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.5%)
patch tree reduce : 2.06 us (0.9%)
gen split merge : 1.25 us (0.6%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 193.86 us (89.0%)
LB move op cnt : 0
LB apply : 4.74 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (69.8%)
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 | 1.0809e+06 | 262144 | 1 | 2.425e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.57679522192545 (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.10 us (2.9%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.28 us (0.5%)
split / merge op : 0/0
apply split merge : 1.49 us (0.6%)
LB compute : 219.49 us (90.4%)
LB move op cnt : 0
LB apply : 4.01 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (67.4%)
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 | 1.0585e+06 | 262144 | 1 | 2.477e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.13436959534873 (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 : 7.21 us (3.3%)
patch tree reduce : 2.26 us (1.0%)
gen split merge : 1.39 us (0.6%)
split / merge op : 0/0
apply split merge : 1.53 us (0.7%)
LB compute : 184.56 us (85.7%)
LB move op cnt : 0
LB apply : 4.43 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (67.8%)
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 | 1.0895e+06 | 262144 | 1 | 2.406e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.12851325585406 (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.46 us (3.6%)
patch tree reduce : 2.23 us (1.1%)
gen split merge : 1.38 us (0.7%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 183.19 us (87.9%)
LB move op cnt : 0
LB apply : 5.01 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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 | 1.2581e+06 | 262144 | 1 | 2.084e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.547079369088992 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 141.77229714700002 (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 : 14.34 us (3.6%)
patch tree reduce : 2.22 us (0.6%)
gen split merge : 924.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 364.02 us (91.8%)
LB move op cnt : 0
LB apply : 4.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (66.7%)
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 | 1.1213e+06 | 262144 | 1 | 2.338e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.1775379044321 (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 : 7.15 us (3.5%)
patch tree reduce : 2.25 us (1.1%)
gen split merge : 1.57 us (0.8%)
split / merge op : 0/0
apply split merge : 1.42 us (0.7%)
LB compute : 182.12 us (88.1%)
LB move op cnt : 0
LB apply : 4.46 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (73.0%)
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 | 1.2697e+06 | 262144 | 1 | 2.065e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.72964254381465 (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.88 us (3.8%)
patch tree reduce : 2.55 us (1.2%)
gen split merge : 1.55 us (0.8%)
split / merge op : 0/0
apply split merge : 1.63 us (0.8%)
LB compute : 179.31 us (87.5%)
LB move op cnt : 0
LB apply : 3.98 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (69.3%)
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 | 1.2035e+06 | 262144 | 1 | 2.178e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.46920338723136 (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 : 6.85 us (3.4%)
patch tree reduce : 2.46 us (1.2%)
gen split merge : 1.53 us (0.8%)
split / merge op : 0/0
apply split merge : 1.67 us (0.8%)
LB compute : 177.51 us (87.6%)
LB move op cnt : 0
LB apply : 4.85 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (66.4%)
Info: cfl dt = 0.004687233099297411 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.0928e+06 | 262144 | 1 | 2.399e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.34457039148485 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48664366529002423, dt = 0.004687233099297411
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.5%)
patch tree reduce : 2.53 us (1.2%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 184.09 us (88.0%)
LB move op cnt : 0
LB apply : 5.11 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (71.9%)
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 | 1.1638e+06 | 262144 | 1 | 2.252e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.9161739394073 (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.05 us (3.2%)
patch tree reduce : 2.56 us (1.1%)
gen split merge : 1.30 us (0.6%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 197.85 us (88.6%)
LB move op cnt : 0
LB apply : 4.76 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (68.9%)
Info: cfl dt = 0.004687233947733764 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2000e+06 | 262144 | 1 | 2.185e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.24286902395556 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4960181319080773, dt = 0.004687233947733764
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance 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.72 us (4.2%)
patch tree reduce : 2.66 us (1.3%)
gen split merge : 1.42 us (0.7%)
split / merge op : 0/0
apply split merge : 1.34 us (0.6%)
LB compute : 181.16 us (87.2%)
LB move op cnt : 0
LB apply : 4.66 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (67.2%)
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 | 8.6182e+05 | 262144 | 1 | 3.042e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.4749401505386 (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 : 9.09 us (4.0%)
patch tree reduce : 3.21 us (1.4%)
gen split merge : 1.40 us (0.6%)
split / merge op : 0/0
apply split merge : 1.86 us (0.8%)
LB compute : 201.13 us (87.4%)
LB move op cnt : 0
LB apply : 5.13 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (68.7%)
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 | 1.2347e+06 | 262144 | 1 | 2.123e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.350738245780649 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 144.036627882 (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 : 15.21 us (4.7%)
patch tree reduce : 2.66 us (0.8%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 291.82 us (89.7%)
LB move op cnt : 0
LB apply : 4.96 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (74.9%)
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 | 1.2114e+06 | 262144 | 1 | 2.164e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.97909020095565 (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.64 us (3.4%)
patch tree reduce : 2.67 us (1.2%)
gen split merge : 999.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 199.37 us (88.8%)
LB move op cnt : 0
LB apply : 4.16 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (68.0%)
Info: cfl dt = 0.00468723533242547 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2438e+06 | 262144 | 1 | 2.108e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.06366437769151 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5106902588186694, dt = 0.00468723533242547
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance 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.83 us (4.1%)
patch tree reduce : 2.78 us (1.3%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 190.85 us (87.7%)
LB move op cnt : 0
LB apply : 4.58 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (67.0%)
Info: cfl dt = 0.004687235775687336 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2558e+06 | 262144 | 1 | 2.087e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.83667224439274 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5153774941510948, dt = 0.004687235775687336
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.1%)
patch tree reduce : 2.47 us (1.1%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 207.47 us (89.5%)
LB move op cnt : 0
LB apply : 4.54 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (63.1%)
Info: cfl dt = 0.0046872362178140515 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1721e+06 | 262144 | 1 | 2.237e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.44796222781355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5200647299267821, dt = 0.0046872362178140515
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.5%)
patch tree reduce : 2.54 us (1.2%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.30 us (0.6%)
LB compute : 179.75 us (88.2%)
LB move op cnt : 0
LB apply : 4.69 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (65.7%)
Info: cfl dt = 0.0046872366560250685 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1371e+06 | 262144 | 1 | 2.305e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.1917527417106 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5247519661445962, dt = 0.0046872366560250685
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (2.8%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.42 us (0.6%)
LB compute : 214.31 us (89.6%)
LB move op cnt : 0
LB apply : 4.41 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (67.4%)
Info: cfl dt = 0.004687237087854086 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1605e+06 | 262144 | 1 | 2.259e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.6992107100925 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5294392028006213, dt = 0.004687237087854086
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.4%)
patch tree reduce : 2.42 us (1.2%)
gen split merge : 996.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 175.93 us (89.1%)
LB move op cnt : 0
LB apply : 3.65 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 885.00 ns (56.6%)
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 | 1.1750e+06 | 262144 | 1 | 2.231e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.63322416829786 (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.58 us (3.5%)
patch tree reduce : 2.40 us (1.1%)
gen split merge : 1.41 us (0.7%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 189.08 us (88.0%)
LB move op cnt : 0
LB apply : 4.70 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (70.3%)
Info: cfl dt = 0.004687237577557927 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2662e+06 | 262144 | 1 | 2.070e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.613825205958856 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 146.17825172300002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.5347368421052632, dt = 0.004687237577557927
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 15.17 us (5.2%)
patch tree reduce : 2.35 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 259.44 us (88.6%)
LB move op cnt : 0
LB apply : 5.16 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (73.5%)
Info: cfl dt = 0.004687237984114847 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1507e+06 | 262144 | 1 | 2.278e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.06844066193835 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5394240796828211, dt = 0.004687237984114847
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.8%)
patch tree reduce : 1.88 us (0.9%)
gen split merge : 1.45 us (0.7%)
split / merge op : 0/0
apply split merge : 1.29 us (0.6%)
LB compute : 183.39 us (88.2%)
LB move op cnt : 0
LB apply : 4.31 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (68.0%)
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 | 1.2624e+06 | 262144 | 1 | 2.077e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.25827775741435 (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.53 us (2.9%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 1.67 us (0.7%)
LB compute : 232.46 us (90.3%)
LB move op cnt : 0
LB apply : 4.85 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (71.9%)
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 | 1.0597e+06 | 262144 | 1 | 2.474e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.21446883649656 (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.68 us (3.1%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.91 us (0.8%)
LB compute : 221.44 us (90.2%)
LB move op cnt : 0
LB apply : 3.97 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (70.8%)
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 | 1.0887e+06 | 262144 | 1 | 2.408e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.07895293937052 (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 : 7.49 us (3.5%)
patch tree reduce : 2.05 us (1.0%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.38 us (0.6%)
LB compute : 187.76 us (88.2%)
LB move op cnt : 0
LB apply : 4.32 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (63.7%)
Info: cfl dt = 0.004687239508306828 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2609e+06 | 262144 | 1 | 2.079e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.1626862383186 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5581730339600104, dt = 0.004687239508306828
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.2%)
patch tree reduce : 1.91 us (0.8%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 1.84 us (0.8%)
LB compute : 208.84 us (89.4%)
LB move op cnt : 0
LB apply : 4.57 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (66.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 | 1.2596e+06 | 262144 | 1 | 2.081e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.0828990631696 (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.77 us (3.5%)
patch tree reduce : 1.80 us (0.8%)
gen split merge : 1.40 us (0.6%)
split / merge op : 0/0
apply split merge : 1.52 us (0.7%)
LB compute : 197.82 us (89.0%)
LB move op cnt : 0
LB apply : 4.41 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (69.6%)
Info: cfl dt = 0.004687240205519913 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.0797e+06 | 262144 | 1 | 2.428e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.49988653684898 (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 : 8.12 us (3.6%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 1.34 us (0.6%)
split / merge op : 0/0
apply split merge : 1.72 us (0.8%)
LB compute : 201.13 us (88.4%)
LB move op cnt : 0
LB apply : 4.61 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (71.7%)
Info: cfl dt = 0.004687240262040079 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2377e+06 | 262144 | 1 | 2.118e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.374519716201176 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 148.50936450100002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.5681578947368421, dt = 0.004687240262040079
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance 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.02 us (3.0%)
patch tree reduce : 2.13 us (0.5%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.3%)
LB compute : 402.50 us (92.9%)
LB move op cnt : 0
LB apply : 5.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (77.1%)
Info: cfl dt = 0.004687240589022536 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1011e+06 | 262144 | 1 | 2.381e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.87715983428689 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5728451349988821, dt = 0.004687240589022536
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance 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.48 us (3.1%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.63 us (0.6%)
split / merge op : 0/0
apply split merge : 1.66 us (0.6%)
LB compute : 244.88 us (90.3%)
LB move op cnt : 0
LB apply : 4.25 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (76.2%)
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 | 1.1378e+06 | 262144 | 1 | 2.304e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.23972169987543 (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 : 8.07 us (1.5%)
patch tree reduce : 2.41 us (0.4%)
gen split merge : 1.37 us (0.2%)
split / merge op : 0/0
apply split merge : 1.41 us (0.3%)
LB compute : 528.65 us (95.3%)
LB move op cnt : 0
LB apply : 4.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (75.9%)
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 | 1.1179e+06 | 262144 | 1 | 2.345e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.95782062212257 (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 : 7.35 us (3.6%)
patch tree reduce : 1.98 us (1.0%)
gen split merge : 1.79 us (0.9%)
split / merge op : 0/0
apply split merge : 1.53 us (0.8%)
LB compute : 177.75 us (88.0%)
LB move op cnt : 0
LB apply : 4.31 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (67.7%)
Info: cfl dt = 0.0046872415282238015 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2307e+06 | 262144 | 1 | 2.130e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.22065370557934 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5869068577188016, dt = 0.0046872415282238015
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.5%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.38 us (0.6%)
split / merge op : 0/0
apply split merge : 1.29 us (0.6%)
LB compute : 191.26 us (89.1%)
LB move op cnt : 0
LB apply : 4.30 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (71.0%)
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 | 1.0550e+06 | 262144 | 1 | 2.485e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.90833163786834 (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.55 us (3.4%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.44 us (0.6%)
split / merge op : 0/0
apply split merge : 1.64 us (0.7%)
LB compute : 197.57 us (88.9%)
LB move op cnt : 0
LB apply : 4.65 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (73.0%)
Info: cfl dt = 0.004687242122853475 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2579e+06 | 262144 | 1 | 2.084e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.97287597626307 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.596281341075402, dt = 0.004687242122853475
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance 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.33 us (4.3%)
patch tree reduce : 2.25 us (1.2%)
gen split merge : 1.15 us (0.6%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 167.90 us (86.9%)
LB move op cnt : 0
LB apply : 4.23 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (68.8%)
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 | 1.2579e+06 | 262144 | 1 | 2.084e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.97133345420524 (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 : 6.25 us (3.0%)
patch tree reduce : 2.15 us (1.0%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 183.53 us (89.3%)
LB move op cnt : 0
LB apply : 4.26 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (68.5%)
Info: cfl dt = 0.004687242462414055 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1890e+06 | 262144 | 1 | 2.205e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.96637002019744 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 150.70247190700002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.6015789473684211, dt = 0.004687242462414055
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 14.66 us (5.0%)
patch tree reduce : 2.20 us (0.8%)
gen split merge : 715.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 260.15 us (89.2%)
LB move op cnt : 0
LB apply : 4.83 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (70.7%)
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 | 1.1888e+06 | 262144 | 1 | 2.205e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.52109931045598 (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 : 6.66 us (3.2%)
patch tree reduce : 2.08 us (1.0%)
gen split merge : 775.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 189.71 us (89.8%)
LB move op cnt : 0
LB apply : 4.24 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (77.6%)
Info: cfl dt = 0.004687243016226041 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2276e+06 | 262144 | 1 | 2.135e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.01950803059033 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6109534325714205, dt = 0.004687243016226041
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (1.7%)
patch tree reduce : 2.37 us (0.5%)
gen split merge : 1.56 us (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.3%)
LB compute : 435.79 us (94.5%)
LB move op cnt : 0
LB apply : 4.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (70.8%)
Info: cfl dt = 0.0046872432890084255 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.0473e+06 | 262144 | 1 | 2.503e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.41245209538856 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6156406755876466, dt = 0.0046872432890084255
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.1%)
patch tree reduce : 2.50 us (1.0%)
gen split merge : 1.45 us (0.6%)
split / merge op : 0/0
apply split merge : 1.66 us (0.7%)
LB compute : 217.37 us (89.4%)
LB move op cnt : 0
LB apply : 5.01 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (63.7%)
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 | 1.2589e+06 | 262144 | 1 | 2.082e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.03726191926067 (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 : 8.18 us (3.8%)
patch tree reduce : 2.32 us (1.1%)
gen split merge : 1.77 us (0.8%)
split / merge op : 0/0
apply split merge : 1.71 us (0.8%)
LB compute : 188.17 us (87.7%)
LB move op cnt : 0
LB apply : 4.51 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (69.0%)
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 | 1.1330e+06 | 262144 | 1 | 2.314e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.9283966698711 (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.86 us (3.3%)
patch tree reduce : 2.42 us (1.0%)
gen split merge : 1.38 us (0.6%)
split / merge op : 0/0
apply split merge : 1.54 us (0.7%)
LB compute : 210.56 us (89.2%)
LB move op cnt : 0
LB apply : 4.69 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (65.1%)
Info: cfl dt = 0.004687244091311442 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.0819e+06 | 262144 | 1 | 2.423e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.63899747927735 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6297024062619985, dt = 0.004687244091311442
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.2%)
patch tree reduce : 2.68 us (1.1%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.36 us (0.6%)
LB compute : 210.36 us (89.1%)
LB move op cnt : 0
LB apply : 4.69 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (64.0%)
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 | 1.1333e+06 | 262144 | 1 | 2.313e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.94717118973341 (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.43 us (3.7%)
patch tree reduce : 2.41 us (1.2%)
gen split merge : 1.39 us (0.7%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 175.43 us (87.7%)
LB move op cnt : 0
LB apply : 4.37 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (66.4%)
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 | 9.0181e+05 | 262144 | 1 | 2.907e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.558839316423709 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 152.97040067400002 (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 33.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 : 7.13 us (55.7%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (0.4%)
patch tree reduce : 1.81 us (0.4%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 394.95 us (96.5%)
LB move op cnt : 0
LB apply : 5.64 us (1.4%)
Info: patch count stable after 1 runs npatch = 1 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: time since start : 160.703662619 (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 : 14.39 us (5.0%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 257.59 us (89.1%)
LB move op cnt : 0
LB apply : 4.61 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (68.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 | 5.7846e+05 | 262144 | 1 | 4.532e-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 : 9.51 us (3.6%)
patch tree reduce : 2.35 us (0.9%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.96 us (0.7%)
LB compute : 235.79 us (88.8%)
LB move op cnt : 0
LB apply : 5.08 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.9%)
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 | 1.0643e+06 | 262144 | 1 | 2.463e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.50316341789134 (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.31 us (3.4%)
patch tree reduce : 2.36 us (1.0%)
gen split merge : 1.35 us (0.6%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 217.66 us (89.4%)
LB move op cnt : 0
LB apply : 4.40 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.5%)
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 | 1.1137e+06 | 262144 | 1 | 2.354e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.68295665419761 (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 : 8.20 us (3.4%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.45 us (0.6%)
LB compute : 213.49 us (89.3%)
LB move op cnt : 0
LB apply : 4.89 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.9%)
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 | 1.1245e+06 | 262144 | 1 | 2.331e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.37850478806097 (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.60 us (3.4%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.73 us (0.8%)
LB compute : 197.45 us (88.8%)
LB move op cnt : 0
LB apply : 4.41 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (68.2%)
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 | 1.1592e+06 | 262144 | 1 | 2.261e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.61229262092913 (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.50 us (3.0%)
patch tree reduce : 2.80 us (1.1%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.61 us (0.6%)
LB compute : 223.51 us (89.8%)
LB move op cnt : 0
LB apply : 4.38 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (65.5%)
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 | 1.1634e+06 | 262144 | 1 | 2.253e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.8857618812845 (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.33 us (3.1%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 214.29 us (90.0%)
LB move op cnt : 0
LB apply : 4.74 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (64.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 | 1.0737e+06 | 262144 | 1 | 2.441e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.11393963705038 (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.60 us (3.6%)
patch tree reduce : 2.47 us (1.2%)
gen split merge : 1.42 us (0.7%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 185.97 us (88.6%)
LB move op cnt : 0
LB apply : 4.10 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (67.4%)
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 | 1.1994e+06 | 262144 | 1 | 2.186e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.19894584622453 (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 (3.0%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.28 us (0.5%)
split / merge op : 0/0
apply split merge : 1.73 us (0.7%)
LB compute : 230.81 us (90.4%)
LB move op cnt : 0
LB apply : 4.36 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (76.1%)
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 | 1.0552e+06 | 262144 | 1 | 2.484e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.86456453625231 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 163.42055882600002 (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 : 14.37 us (3.5%)
patch tree reduce : 2.17 us (0.5%)
gen split merge : 774.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 373.56 us (92.2%)
LB move op cnt : 0
LB apply : 4.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (71.8%)
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 | 1.1857e+06 | 262144 | 1 | 2.211e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.31754468988757 (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.12 us (2.9%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.38 us (0.6%)
LB compute : 220.66 us (90.4%)
LB move op cnt : 0
LB apply : 4.24 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (66.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 | 1.2077e+06 | 262144 | 1 | 2.171e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.73639844813195 (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 : 8.70 us (3.9%)
patch tree reduce : 2.45 us (1.1%)
gen split merge : 1.41 us (0.6%)
split / merge op : 0/0
apply split merge : 1.51 us (0.7%)
LB compute : 196.04 us (88.3%)
LB move op cnt : 0
LB apply : 4.24 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (66.3%)
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 | 1.1696e+06 | 262144 | 1 | 2.241e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.28603287995028 (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.22 us (3.3%)
patch tree reduce : 1.89 us (0.9%)
gen split merge : 1.36 us (0.6%)
split / merge op : 0/0
apply split merge : 1.30 us (0.6%)
LB compute : 198.07 us (89.2%)
LB move op cnt : 0
LB apply : 4.66 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (68.5%)
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 | 1.2212e+06 | 262144 | 1 | 2.147e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.60908534970639 (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 : 6.68 us (3.4%)
patch tree reduce : 2.22 us (1.1%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.35 us (0.7%)
LB compute : 176.11 us (88.7%)
LB move op cnt : 0
LB apply : 3.95 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (67.3%)
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 | 1.2158e+06 | 262144 | 1 | 2.156e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.25585477525699 (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.84 us (3.2%)
patch tree reduce : 2.63 us (1.2%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.67 us (0.8%)
LB compute : 191.24 us (88.8%)
LB move op cnt : 0
LB apply : 4.20 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (69.7%)
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 | 1.2094e+06 | 262144 | 1 | 2.168e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.84652117902014 (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.29 us (3.7%)
patch tree reduce : 3.07 us (1.5%)
gen split merge : 1.15 us (0.6%)
split / merge op : 0/0
apply split merge : 1.76 us (0.9%)
LB compute : 173.43 us (87.2%)
LB move op cnt : 0
LB apply : 4.63 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.9%)
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 | 1.0523e+06 | 262144 | 1 | 2.491e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.73244377036771 (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.18 us (3.5%)
patch tree reduce : 2.40 us (1.2%)
gen split merge : 939.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.49 us (0.7%)
LB compute : 181.88 us (88.4%)
LB move op cnt : 0
LB apply : 4.45 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (60.4%)
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 | 1.1926e+06 | 262144 | 1 | 2.198e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.0104988193434 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 165.59776179000002 (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 : 14.71 us (5.3%)
patch tree reduce : 2.37 us (0.8%)
gen split merge : 987.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 247.74 us (88.4%)
LB move op cnt : 0
LB apply : 5.16 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (73.8%)
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 | 1.1840e+06 | 262144 | 1 | 2.214e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.21364596341544 (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.55 us (3.3%)
patch tree reduce : 1.88 us (0.8%)
gen split merge : 1.35 us (0.6%)
split / merge op : 0/0
apply split merge : 1.36 us (0.6%)
LB compute : 203.48 us (89.2%)
LB move op cnt : 0
LB apply : 4.54 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (64.6%)
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 | 1.2179e+06 | 262144 | 1 | 2.152e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.39760644554853 (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.49 us (3.7%)
patch tree reduce : 5.43 us (2.6%)
gen split merge : 1.18 us (0.6%)
split / merge op : 0/0
apply split merge : 1.37 us (0.7%)
LB compute : 176.75 us (86.2%)
LB move op cnt : 0
LB apply : 5.30 us (2.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (62.3%)
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 | 1.1203e+06 | 262144 | 1 | 2.340e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.11091569853191 (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.70 us (3.2%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.77 us (0.7%)
LB compute : 217.30 us (89.6%)
LB move op cnt : 0
LB apply : 4.71 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (66.5%)
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 | 1.2040e+06 | 262144 | 1 | 2.177e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.50000001933095 (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 : 7.53 us (3.3%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.52 us (0.7%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 203.98 us (89.1%)
LB move op cnt : 0
LB apply : 4.78 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (63.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 | 1.1959e+06 | 262144 | 1 | 2.192e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.97866842606176 (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.42 us (3.8%)
patch tree reduce : 1.60 us (0.8%)
gen split merge : 1.39 us (0.7%)
split / merge op : 0/0
apply split merge : 1.94 us (1.0%)
LB compute : 172.75 us (87.4%)
LB move op cnt : 0
LB apply : 4.52 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (65.4%)
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 | 1.2354e+06 | 262144 | 1 | 2.122e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.5229271001238 (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.01 us (3.0%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.42 us (0.6%)
split / merge op : 0/0
apply split merge : 1.83 us (0.8%)
LB compute : 212.26 us (89.7%)
LB move op cnt : 0
LB apply : 4.39 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (67.6%)
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 | 1.1994e+06 | 262144 | 1 | 2.186e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.20633271157865 (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 (3.1%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.35 us (0.6%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 191.76 us (89.3%)
LB move op cnt : 0
LB apply : 4.63 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (66.1%)
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 | 1.1814e+06 | 262144 | 1 | 2.219e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.906660254867667 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 167.961863415 (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 : 20.03 us (7.4%)
patch tree reduce : 2.48 us (0.9%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.52 us (0.6%)
LB compute : 230.44 us (85.6%)
LB move op cnt : 0
LB apply : 4.82 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (76.5%)
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 | 1.1502e+06 | 262144 | 1 | 2.279e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.03603584345365 (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.87 us (3.3%)
patch tree reduce : 1.60 us (0.8%)
gen split merge : 1.25 us (0.6%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 185.09 us (89.0%)
LB move op cnt : 0
LB apply : 4.44 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (67.2%)
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 | 9.3927e+05 | 262144 | 1 | 2.791e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.46023542049547 (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.32 us (3.0%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 222.98 us (90.5%)
LB move op cnt : 0
LB apply : 4.08 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (66.2%)
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 | 1.1945e+06 | 262144 | 1 | 2.195e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.88719914508364 (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.31 us (3.1%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.45 us (0.6%)
LB compute : 213.37 us (89.7%)
LB move op cnt : 0
LB apply : 4.68 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (69.5%)
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 | 1.1941e+06 | 262144 | 1 | 2.195e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.86258809640022 (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.09 us (3.3%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 983.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.40 us (0.7%)
LB compute : 190.74 us (88.9%)
LB move op cnt : 0
LB apply : 4.77 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (64.3%)
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 | 1.1911e+06 | 262144 | 1 | 2.201e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.67327704640472 (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 : 6.61 us (2.7%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 225.28 us (90.7%)
LB move op cnt : 0
LB apply : 4.71 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (69.9%)
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 | 1.2003e+06 | 262144 | 1 | 2.184e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.2652327886493 (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.52 us (3.8%)
patch tree reduce : 2.24 us (1.1%)
gen split merge : 1.39 us (0.7%)
split / merge op : 0/0
apply split merge : 1.55 us (0.8%)
LB compute : 174.53 us (88.1%)
LB move op cnt : 0
LB apply : 4.07 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (54.9%)
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 | 1.1981e+06 | 262144 | 1 | 2.188e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.12441604927614 (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.32 us (2.9%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.41 us (0.6%)
split / merge op : 0/0
apply split merge : 1.53 us (0.7%)
LB compute : 197.01 us (89.2%)
LB move op cnt : 0
LB apply : 4.74 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (63.6%)
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 | 1.1791e+06 | 262144 | 1 | 2.223e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.88066202669472 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 170.179117315 (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.84 us (4.9%)
patch tree reduce : 2.63 us (1.0%)
gen split merge : 973.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.56 us (0.6%)
LB compute : 232.28 us (88.3%)
LB move op cnt : 0
LB apply : 5.11 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (72.9%)
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 | 1.2063e+06 | 262144 | 1 | 2.173e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.65069088603829 (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.65 us (2.8%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.75 us (0.6%)
LB compute : 246.65 us (90.7%)
LB move op cnt : 0
LB apply : 4.84 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (60.8%)
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 | 1.2149e+06 | 262144 | 1 | 2.158e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.20227065733444 (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.51 us (3.4%)
patch tree reduce : 2.49 us (1.1%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.53 us (0.7%)
LB compute : 192.62 us (88.4%)
LB move op cnt : 0
LB apply : 5.17 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (64.3%)
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 | 1.1932e+06 | 262144 | 1 | 2.197e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.80316937668957 (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.68 us (3.8%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.34 us (0.7%)
LB compute : 177.61 us (87.9%)
LB move op cnt : 0
LB apply : 4.51 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (64.6%)
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 | 1.2108e+06 | 262144 | 1 | 2.165e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.93772410937447 (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 : 8.49 us (4.4%)
patch tree reduce : 1.77 us (0.9%)
gen split merge : 1.36 us (0.7%)
split / merge op : 0/0
apply split merge : 1.41 us (0.7%)
LB compute : 168.98 us (87.1%)
LB move op cnt : 0
LB apply : 4.37 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (69.0%)
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 | 1.1905e+06 | 262144 | 1 | 2.202e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.62989329518354 (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 : 6.58 us (3.3%)
patch tree reduce : 1.85 us (0.9%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.83 us (0.9%)
LB compute : 174.82 us (88.3%)
LB move op cnt : 0
LB apply : 4.38 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (65.7%)
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 | 1.0495e+06 | 262144 | 1 | 2.498e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.554590112448 (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 : 7.16 us (3.5%)
patch tree reduce : 1.85 us (0.9%)
gen split merge : 924.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 183.82 us (89.1%)
LB move op cnt : 0
LB apply : 3.74 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (64.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 | 1.0364e+06 | 262144 | 1 | 2.529e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.71113011009275 (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.21 us (3.3%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 969.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.98 us (0.9%)
LB compute : 195.91 us (89.3%)
LB move op cnt : 0
LB apply : 4.13 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (63.2%)
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 | 1.0241e+06 | 262144 | 1 | 2.560e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.581577639828565 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 172.412029342 (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 : 14.32 us (4.6%)
patch tree reduce : 2.58 us (0.8%)
gen split merge : 1.40 us (0.4%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 280.22 us (89.4%)
LB move op cnt : 0
LB apply : 5.09 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (74.4%)
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 | 9.1976e+05 | 262144 | 1 | 2.850e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.204709699603896 (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.27 us (3.0%)
patch tree reduce : 2.29 us (0.9%)
gen split merge : 1.29 us (0.5%)
split / merge op : 0/0
apply split merge : 1.59 us (0.7%)
LB compute : 216.53 us (89.8%)
LB move op cnt : 0
LB apply : 4.29 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (61.1%)
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 | 1.0222e+06 | 262144 | 1 | 2.565e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.79647436102012 (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.56 us (3.2%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 210.35 us (89.0%)
LB move op cnt : 0
LB apply : 4.97 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (62.1%)
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 | 1.0842e+06 | 262144 | 1 | 2.418e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.79272079135347 (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 : 8.07 us (3.0%)
patch tree reduce : 2.28 us (0.9%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 238.72 us (89.9%)
LB move op cnt : 0
LB apply : 4.81 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (68.1%)
Info: cfl dt = 0.004687247551515 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1920e+06 | 262144 | 1 | 2.199e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.72936158864883 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18585427852263972, dt = 0.004687247551515
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.1%)
patch tree reduce : 2.08 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 208.94 us (89.6%)
LB move op cnt : 0
LB apply : 4.79 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (68.7%)
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 | 1.1869e+06 | 262144 | 1 | 2.209e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.39956964307892 (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 : 7.71 us (3.9%)
patch tree reduce : 1.98 us (1.0%)
gen split merge : 1.41 us (0.7%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 175.76 us (87.9%)
LB move op cnt : 0
LB apply : 4.29 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (66.0%)
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 | 1.2136e+06 | 262144 | 1 | 2.160e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.12056023345707 (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 : 7.35 us (3.7%)
patch tree reduce : 1.78 us (0.9%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.53 us (0.8%)
LB compute : 174.60 us (88.0%)
LB move op cnt : 0
LB apply : 4.67 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (67.2%)
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 | 1.0764e+06 | 262144 | 1 | 2.435e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.28420346156118 (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.54 us (3.4%)
patch tree reduce : 2.25 us (1.0%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.86 us (0.8%)
LB compute : 199.10 us (88.7%)
LB move op cnt : 0
LB apply : 4.23 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (64.2%)
Info: cfl dt = 0.0046872405717315576 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.0168e+06 | 262144 | 1 | 2.578e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.522180943229223 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 174.77731358300002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.2005263157894737, dt = 0.0046872405717315576
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 15.09 us (4.3%)
patch tree reduce : 2.33 us (0.7%)
gen split merge : 878.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 319.18 us (91.0%)
LB move op cnt : 0
LB apply : 4.40 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (76.5%)
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 | 9.3224e+05 | 262144 | 1 | 2.812e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.00803422509167 (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.84 us (3.4%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 1.33 us (0.6%)
split / merge op : 0/0
apply split merge : 1.81 us (0.8%)
LB compute : 204.23 us (89.2%)
LB move op cnt : 0
LB apply : 4.46 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (68.1%)
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 | 9.6380e+05 | 262144 | 1 | 2.720e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.03930200168723 (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.11 us (3.0%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 927.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.60 us (0.7%)
LB compute : 211.72 us (90.0%)
LB move op cnt : 0
LB apply : 4.40 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (69.5%)
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 | 1.2130e+06 | 262144 | 1 | 2.161e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.08048783746672 (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.43 us (4.0%)
patch tree reduce : 2.27 us (1.2%)
gen split merge : 904.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.6%)
LB compute : 160.78 us (87.6%)
LB move op cnt : 0
LB apply : 3.93 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (73.1%)
Info: cfl dt = 0.004687235271899178 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2020e+06 | 262144 | 1 | 2.181e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.37020134853309 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2192752688295347, dt = 0.004687235271899178
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.3%)
patch tree reduce : 2.29 us (1.0%)
gen split merge : 1.40 us (0.6%)
split / merge op : 0/0
apply split merge : 1.52 us (0.7%)
LB compute : 201.16 us (89.0%)
LB move op cnt : 0
LB apply : 4.52 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (67.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 | 8.9973e+05 | 262144 | 1 | 2.914e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.91520510923758 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22396250410143387, 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.59 us (3.5%)
patch tree reduce : 2.04 us (0.9%)
gen split merge : 1.28 us (0.6%)
split / merge op : 0/0
apply split merge : 1.54 us (0.7%)
LB compute : 193.34 us (88.8%)
LB move op cnt : 0
LB apply : 4.35 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (68.5%)
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 | 1.1748e+06 | 262144 | 1 | 2.231e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.62366105009737 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22864973869037333, 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 : 6.59 us (2.9%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 915.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 201.68 us (90.0%)
LB move op cnt : 0
LB apply : 4.21 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (67.6%)
Info: cfl dt = 0.004687233955569734 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1873e+06 | 262144 | 1 | 2.208e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.42496877365376 (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.35 us (3.4%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.44 us (0.7%)
split / merge op : 0/0
apply split merge : 1.49 us (0.7%)
LB compute : 187.95 us (88.1%)
LB move op cnt : 0
LB apply : 5.12 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (69.4%)
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 | 1.0556e+06 | 262144 | 1 | 2.483e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.8485805038792 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 177.139151822 (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 : 15.86 us (3.4%)
patch tree reduce : 3.03 us (0.7%)
gen split merge : 787.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.34 us (0.3%)
LB compute : 430.87 us (92.7%)
LB move op cnt : 0
LB apply : 4.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (70.2%)
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 | 9.4935e+05 | 262144 | 1 | 2.761e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.109180592266306 (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 : 8.13 us (3.6%)
patch tree reduce : 2.65 us (1.2%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.72 us (0.8%)
LB compute : 197.30 us (88.3%)
LB move op cnt : 0
LB apply : 4.27 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (62.8%)
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 | 1.0786e+06 | 262144 | 1 | 2.431e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.42614082620757 (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.48 us (2.7%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 1.54 us (0.6%)
split / merge op : 0/0
apply split merge : 1.46 us (0.6%)
LB compute : 213.16 us (89.9%)
LB move op cnt : 0
LB apply : 4.49 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.3%)
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 | 1.1902e+06 | 262144 | 1 | 2.203e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.61077766904657 (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 : 8.30 us (3.0%)
patch tree reduce : 2.28 us (0.8%)
gen split merge : 1.50 us (0.5%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 247.87 us (90.4%)
LB move op cnt : 0
LB apply : 4.93 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (71.3%)
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 | 1.0932e+06 | 262144 | 1 | 2.398e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.37018994050914 (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.91 us (3.0%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.51 us (0.6%)
LB compute : 239.78 us (90.2%)
LB move op cnt : 0
LB apply : 5.39 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (71.1%)
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 | 8.9410e+05 | 262144 | 1 | 2.932e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.55259201131398 (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.61 us (3.1%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 1.79 us (0.7%)
LB compute : 220.89 us (89.5%)
LB move op cnt : 0
LB apply : 4.74 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (67.7%)
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 | 9.6232e+05 | 262144 | 1 | 2.724e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.943882118602616 (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 : 8.03 us (3.2%)
patch tree reduce : 2.11 us (0.8%)
gen split merge : 1.33 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 226.00 us (90.1%)
LB move op cnt : 0
LB apply : 4.52 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (63.5%)
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 | 1.1153e+06 | 262144 | 1 | 2.350e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.79314247988317 (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.47 us (3.7%)
patch tree reduce : 1.92 us (0.9%)
gen split merge : 1.52 us (0.7%)
split / merge op : 0/0
apply split merge : 1.30 us (0.6%)
LB compute : 177.80 us (87.9%)
LB move op cnt : 0
LB apply : 4.50 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (64.6%)
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 | 1.0822e+06 | 262144 | 1 | 2.422e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.071694800234637 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 179.563852381 (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 : 16.23 us (5.8%)
patch tree reduce : 2.82 us (1.0%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 247.99 us (88.0%)
LB move op cnt : 0
LB apply : 4.41 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (71.8%)
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 | 8.4355e+05 | 262144 | 1 | 3.108e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.29883462612629 (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 : 8.09 us (3.4%)
patch tree reduce : 2.61 us (1.1%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 1.44 us (0.6%)
LB compute : 215.33 us (89.4%)
LB move op cnt : 0
LB apply : 4.50 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (69.5%)
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 | 8.4527e+05 | 262144 | 1 | 3.101e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.40941969091743 (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 : 19.41 us (7.6%)
patch tree reduce : 2.62 us (1.0%)
gen split merge : 1.38 us (0.5%)
split / merge op : 0/0
apply split merge : 1.57 us (0.6%)
LB compute : 216.97 us (85.5%)
LB move op cnt : 0
LB apply : 4.13 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (64.9%)
Info: cfl dt = 0.004687243623864015 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1826e+06 | 262144 | 1 | 2.217e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.12055942703898 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28143014217829654, dt = 0.004687243623864015
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.28 us (0.5%)
split / merge op : 0/0
apply split merge : 1.35 us (0.6%)
LB compute : 219.51 us (89.8%)
LB move op cnt : 0
LB apply : 4.77 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (66.1%)
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 | 1.1694e+06 | 262144 | 1 | 2.242e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.27105953614064 (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 : 8.07 us (3.4%)
patch tree reduce : 2.41 us (1.0%)
gen split merge : 1.40 us (0.6%)
split / merge op : 0/0
apply split merge : 1.51 us (0.6%)
LB compute : 211.43 us (89.5%)
LB move op cnt : 0
LB apply : 4.33 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (63.2%)
Info: cfl dt = 0.004687247703464964 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 9.7500e+05 | 262144 | 1 | 2.689e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.76003230358258 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29080463138419343, dt = 0.004687247703464964
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (3.1%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 741.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.56 us (0.8%)
LB compute : 186.37 us (89.7%)
LB move op cnt : 0
LB apply : 3.64 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (62.7%)
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 | 1.1962e+06 | 262144 | 1 | 2.191e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.99896013398397 (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.30 us (2.8%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 239.45 us (91.2%)
LB move op cnt : 0
LB apply : 4.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (61.9%)
Info: cfl dt = 0.0046872517206266295 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.0745e+06 | 262144 | 1 | 2.440e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.16435704622616 (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 : 8.10 us (3.5%)
patch tree reduce : 2.22 us (1.0%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.64 us (0.7%)
LB compute : 206.57 us (89.1%)
LB move op cnt : 0
LB apply : 4.38 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (60.7%)
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 | 1.0670e+06 | 262144 | 1 | 2.457e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.943497024750481 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 182.01805687 (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 : 14.26 us (3.7%)
patch tree reduce : 2.23 us (0.6%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 350.70 us (91.6%)
LB move op cnt : 0
LB apply : 4.88 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (69.1%)
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 | 1.1943e+06 | 262144 | 1 | 2.195e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.87637916301647 (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.46 us (3.4%)
patch tree reduce : 1.99 us (0.9%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.61 us (0.7%)
LB compute : 198.25 us (89.4%)
LB move op cnt : 0
LB apply : 4.04 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (64.9%)
Info: cfl dt = 0.004687256179988796 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.9569e+05 | 262144 | 1 | 2.927e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.654938864665226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3101639797659055, dt = 0.004687256179988796
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (3.4%)
patch tree reduce : 1.70 us (0.9%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 174.94 us (89.3%)
LB move op cnt : 0
LB apply : 3.11 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 950.00 ns (65.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 | 1.2006e+06 | 262144 | 1 | 2.183e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.28410228462482 (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.15 us (3.3%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.55 us (0.7%)
split / merge op : 0/0
apply split merge : 1.31 us (0.6%)
LB compute : 194.88 us (88.7%)
LB move op cnt : 0
LB apply : 4.60 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (70.3%)
Info: cfl dt = 0.004687260558129957 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2013e+06 | 262144 | 1 | 2.182e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.32858170550276 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31953849428607073, dt = 0.004687260558129957
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.3%)
patch tree reduce : 1.73 us (0.8%)
gen split merge : 1.25 us (0.6%)
split / merge op : 0/0
apply split merge : 1.35 us (0.6%)
LB compute : 201.26 us (89.8%)
LB move op cnt : 0
LB apply : 4.09 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (69.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 | 1.1761e+06 | 262144 | 1 | 2.229e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.7032565241734 (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.46 us (3.4%)
patch tree reduce : 2.11 us (0.9%)
gen split merge : 1.30 us (0.6%)
split / merge op : 0/0
apply split merge : 1.40 us (0.6%)
LB compute : 198.64 us (89.2%)
LB move op cnt : 0
LB apply : 4.11 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (66.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 | 9.6942e+05 | 262144 | 1 | 2.704e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.40101672036459 (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 : 8.24 us (4.0%)
patch tree reduce : 1.94 us (0.9%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.94 us (0.9%)
LB compute : 179.76 us (87.7%)
LB move op cnt : 0
LB apply : 4.60 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (65.9%)
Info: cfl dt = 0.004687267381699239 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1660e+06 | 262144 | 1 | 2.248e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.05534199970572 (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.93 us (3.5%)
patch tree reduce : 1.76 us (0.8%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.39 us (0.6%)
LB compute : 202.72 us (89.5%)
LB move op cnt : 0
LB apply : 4.16 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (61.4%)
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 | 1.1833e+06 | 262144 | 1 | 2.215e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.916143534767562 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 184.45721380700002 (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 : 15.23 us (5.6%)
patch tree reduce : 2.55 us (0.9%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 238.87 us (88.4%)
LB move op cnt : 0
LB apply : 4.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (71.8%)
Info: cfl dt = 0.004687269882584072 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 9.8217e+05 | 262144 | 1 | 2.669e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.222036563035104 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33889779400454645, dt = 0.004687269882584072
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.6%)
patch tree reduce : 1.83 us (0.9%)
gen split merge : 1.21 us (0.6%)
split / merge op : 0/0
apply split merge : 2.16 us (1.0%)
LB compute : 183.69 us (88.0%)
LB move op cnt : 0
LB apply : 4.73 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (66.0%)
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 | 1.1151e+06 | 262144 | 1 | 2.351e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.7809342405981 (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 : 7.65 us (3.8%)
patch tree reduce : 2.20 us (1.1%)
gen split merge : 1.32 us (0.6%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 179.54 us (88.1%)
LB move op cnt : 0
LB apply : 4.24 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.1%)
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 | 1.1887e+06 | 262144 | 1 | 2.205e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.51905643042875 (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 : 8.26 us (3.6%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.54 us (0.7%)
LB compute : 203.22 us (89.0%)
LB move op cnt : 0
LB apply : 4.81 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (60.7%)
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 | 1.0742e+06 | 262144 | 1 | 2.440e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.14640008975846 (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 (3.1%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.58 us (0.7%)
LB compute : 202.80 us (89.1%)
LB move op cnt : 0
LB apply : 4.42 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.9%)
Info: cfl dt = 0.004687274442042876 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1907e+06 | 262144 | 1 | 2.202e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.6425496156525 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3576468830703232, dt = 0.004687274442042876
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.9%)
patch tree reduce : 2.31 us (1.2%)
gen split merge : 1.23 us (0.6%)
split / merge op : 0/0
apply split merge : 1.37 us (0.7%)
LB compute : 170.40 us (87.6%)
LB move op cnt : 0
LB apply : 4.07 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (67.0%)
Info: cfl dt = 0.004687274707960915 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2102e+06 | 262144 | 1 | 2.166e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.89780023732091 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3623341575123661, dt = 0.004687274707960915
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.8%)
patch tree reduce : 2.36 us (1.2%)
gen split merge : 1.12 us (0.6%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 175.85 us (87.9%)
LB move op cnt : 0
LB apply : 4.42 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (65.5%)
Info: cfl dt = 0.0046872746972425605 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1752e+06 | 262144 | 1 | 2.231e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.64973705267742 (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 : 6.78 us (3.4%)
patch tree reduce : 1.93 us (1.0%)
gen split merge : 939.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.38 us (0.7%)
LB compute : 177.99 us (88.3%)
LB move op cnt : 0
LB apply : 4.86 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (63.9%)
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 | 1.1621e+06 | 262144 | 1 | 2.256e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.73703251656332 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 186.70130241400003 (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.76 us (4.6%)
patch tree reduce : 2.28 us (0.8%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 246.50 us (89.1%)
LB move op cnt : 0
LB apply : 5.27 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (73.2%)
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 | 1.1765e+06 | 262144 | 1 | 2.228e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.73404487961021 (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.27 us (3.1%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 1.41 us (0.6%)
split / merge op : 0/0
apply split merge : 1.65 us (0.7%)
LB compute : 209.89 us (89.9%)
LB move op cnt : 0
LB apply : 4.00 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (63.8%)
Info: cfl dt = 0.004687271911624213 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1885e+06 | 262144 | 1 | 2.206e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.50082136842296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37700612755246615, dt = 0.004687271911624213
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.3%)
patch tree reduce : 2.03 us (0.9%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 199.91 us (89.8%)
LB move op cnt : 0
LB apply : 3.91 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (68.9%)
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 | 1.2062e+06 | 262144 | 1 | 2.173e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.64512249107045 (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.95 us (3.5%)
patch tree reduce : 2.12 us (0.9%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.77 us (0.8%)
LB compute : 203.16 us (89.2%)
LB move op cnt : 0
LB apply : 4.39 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (66.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 | 1.2314e+06 | 262144 | 1 | 2.129e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.26814628030863 (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.44 us (3.2%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.32 us (0.6%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 208.79 us (89.7%)
LB move op cnt : 0
LB apply : 4.42 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (59.7%)
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 | 1.2123e+06 | 262144 | 1 | 2.162e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.03573997390099 (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.67 us (3.8%)
patch tree reduce : 1.74 us (0.9%)
gen split merge : 1.35 us (0.7%)
split / merge op : 0/0
apply split merge : 1.94 us (0.9%)
LB compute : 179.31 us (87.7%)
LB move op cnt : 0
LB apply : 4.38 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (67.8%)
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 | 1.1802e+06 | 262144 | 1 | 2.221e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.97059067718008 (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.36 us (4.1%)
patch tree reduce : 2.09 us (1.0%)
gen split merge : 1.26 us (0.6%)
split / merge op : 0/0
apply split merge : 1.67 us (0.8%)
LB compute : 177.94 us (87.8%)
LB move op cnt : 0
LB apply : 4.33 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (65.1%)
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 | 1.1977e+06 | 262144 | 1 | 2.189e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.09452661939991 (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.46 us (3.8%)
patch tree reduce : 2.16 us (1.1%)
gen split merge : 1.22 us (0.6%)
split / merge op : 0/0
apply split merge : 1.38 us (0.7%)
LB compute : 169.56 us (87.2%)
LB move op cnt : 0
LB apply : 4.31 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (58.6%)
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 | 1.1838e+06 | 262144 | 1 | 2.214e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.91943782931683 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 188.843890106 (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 : 13.22 us (4.7%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 251.94 us (89.6%)
LB move op cnt : 0
LB apply : 4.69 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (73.3%)
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 | 1.1017e+06 | 262144 | 1 | 2.380e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.91307676420581 (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.67 us (3.9%)
patch tree reduce : 2.26 us (1.2%)
gen split merge : 1.37 us (0.7%)
split / merge op : 0/0
apply split merge : 1.55 us (0.8%)
LB compute : 171.35 us (87.2%)
LB move op cnt : 0
LB apply : 4.77 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (71.6%)
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 | 1.2024e+06 | 262144 | 1 | 2.180e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.39525277607032 (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.32 us (3.7%)
patch tree reduce : 1.92 us (1.0%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 1.38 us (0.7%)
LB compute : 172.52 us (87.9%)
LB move op cnt : 0
LB apply : 4.02 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (68.7%)
Info: cfl dt = 0.004687248322614159 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2014e+06 | 262144 | 1 | 2.182e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.33322700683836 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41511439412796103, dt = 0.004687248322614159
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.3%)
patch tree reduce : 2.68 us (1.3%)
gen split merge : 1.20 us (0.6%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 174.22 us (83.6%)
LB move op cnt : 0
LB apply : 14.70 us (7.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (68.3%)
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 | 1.1980e+06 | 262144 | 1 | 2.188e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.11512031676823 (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.29 us (3.4%)
patch tree reduce : 2.38 us (1.1%)
gen split merge : 1.31 us (0.6%)
split / merge op : 0/0
apply split merge : 1.52 us (0.7%)
LB compute : 191.03 us (88.1%)
LB move op cnt : 0
LB apply : 4.99 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (68.0%)
Info: cfl dt = 0.004687243050476523 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2089e+06 | 262144 | 1 | 2.169e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.8131763831645 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42448888811429647, dt = 0.004687243050476523
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.7%)
patch tree reduce : 2.40 us (1.0%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.91 us (0.8%)
LB compute : 211.43 us (89.7%)
LB move op cnt : 0
LB apply : 4.63 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (75.2%)
Info: cfl dt = 0.004687240359628568 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1935e+06 | 262144 | 1 | 2.196e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.82787754723124 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.429176131164773, dt = 0.004687240359628568
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.3%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.43 us (0.7%)
LB compute : 184.29 us (88.7%)
LB move op cnt : 0
LB apply : 4.74 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (69.3%)
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 | 1.2169e+06 | 262144 | 1 | 2.154e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.33004815391331 (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.72 us (3.8%)
patch tree reduce : 2.32 us (1.1%)
gen split merge : 1.40 us (0.7%)
split / merge op : 0/0
apply split merge : 1.56 us (0.8%)
LB compute : 176.85 us (87.7%)
LB move op cnt : 0
LB apply : 4.41 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (67.7%)
Info: cfl dt = 0.004687237481125901 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 9.7293e+05 | 262144 | 1 | 2.694e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.154458137073103 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 191.04024918300001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.43447368421052635, dt = 0.004687237481125901
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 14.86 us (5.5%)
patch tree reduce : 2.30 us (0.9%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 237.45 us (88.3%)
LB move op cnt : 0
LB apply : 4.71 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (68.9%)
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 | 1.2110e+06 | 262144 | 1 | 2.165e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.95371963644361 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4391609216916523, 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.66 us (3.2%)
patch tree reduce : 2.36 us (1.0%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.35 us (0.6%)
LB compute : 215.91 us (89.2%)
LB move op cnt : 0
LB apply : 5.13 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (68.2%)
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 | 1.2006e+06 | 262144 | 1 | 2.184e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.27950851480716 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4438481567949274, 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.07 us (3.6%)
patch tree reduce : 1.97 us (1.0%)
gen split merge : 1.28 us (0.7%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 173.68 us (88.4%)
LB move op cnt : 0
LB apply : 4.11 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (71.5%)
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 | 1.1955e+06 | 262144 | 1 | 2.193e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.95483137047651 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44853538972631346, 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.31 us (3.1%)
patch tree reduce : 2.02 us (0.9%)
gen split merge : 1.10 us (0.5%)
split / merge op : 0/0
apply split merge : 1.37 us (0.6%)
LB compute : 213.73 us (90.0%)
LB move op cnt : 0
LB apply : 4.51 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (67.8%)
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 | 1.2135e+06 | 262144 | 1 | 2.160e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.11164881894358 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45322262072596464, 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.66 us (3.8%)
patch tree reduce : 2.12 us (1.0%)
gen split merge : 1.39 us (0.7%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 177.90 us (87.8%)
LB move op cnt : 0
LB apply : 4.06 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (64.3%)
Info: cfl dt = 0.004687227997326024 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2045e+06 | 262144 | 1 | 2.176e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.53169688155677 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45790985007190793, dt = 0.004687227997326024
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance 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.38 us (4.5%)
patch tree reduce : 2.47 us (1.2%)
gen split merge : 1.17 us (0.6%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 183.26 us (87.3%)
LB move op cnt : 0
LB apply : 4.27 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.4%)
Info: cfl dt = 0.004687226985147308 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1168e+06 | 262144 | 1 | 2.347e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.88644391987617 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46259707806923395, dt = 0.004687226985147308
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance 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 (3.7%)
patch tree reduce : 3.02 us (1.3%)
gen split merge : 1.40 us (0.6%)
split / merge op : 0/0
apply split merge : 1.53 us (0.7%)
LB compute : 200.65 us (88.2%)
LB move op cnt : 0
LB apply : 4.92 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.1%)
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 | 1.1255e+06 | 262144 | 1 | 2.329e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.44948291275834 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46728430505438123, dt = 0.0006104317877240195
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.5%)
patch tree reduce : 2.91 us (1.3%)
gen split merge : 1.33 us (0.6%)
split / merge op : 0/0
apply split merge : 1.42 us (0.7%)
LB compute : 192.10 us (88.7%)
LB move op cnt : 0
LB apply : 4.06 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (67.3%)
Info: cfl dt = 0.004687226277731659 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1840e+06 | 262144 | 1 | 2.214e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.925103505003428 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 193.195940553 (s) [Godunov][rank=0]
amr::Godunov: t = 0.46789473684210525, dt = 0.004687226277731659
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 14.22 us (5.0%)
patch tree reduce : 2.61 us (0.9%)
gen split merge : 775.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 252.10 us (89.0%)
LB move op cnt : 0
LB apply : 4.50 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (65.0%)
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 | 1.2055e+06 | 262144 | 1 | 2.175e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.59669975568131 (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 : 15.42 us (6.8%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.7%)
LB compute : 195.32 us (86.0%)
LB move op cnt : 0
LB apply : 4.41 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (69.0%)
Info: cfl dt = 0.004687226080430846 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1052e+06 | 262144 | 1 | 2.372e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.13838352786908 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47726918914445854, dt = 0.004687226080430846
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.1%)
patch tree reduce : 2.27 us (0.9%)
gen split merge : 1.52 us (0.6%)
split / merge op : 0/0
apply split merge : 1.40 us (0.6%)
LB compute : 214.73 us (89.6%)
LB move op cnt : 0
LB apply : 4.42 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (67.7%)
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 | 1.0291e+06 | 262144 | 1 | 2.547e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.24066200201666 (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.23 us (1.7%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 1.29 us (0.3%)
split / merge op : 0/0
apply split merge : 1.64 us (0.4%)
LB compute : 390.68 us (94.2%)
LB move op cnt : 0
LB apply : 4.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (64.4%)
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 | 1.0354e+06 | 262144 | 1 | 2.532e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.64942175353767 (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.30 us (3.1%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.42 us (0.6%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 214.94 us (90.0%)
LB move op cnt : 0
LB apply : 4.03 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (70.3%)
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 | 1.0573e+06 | 262144 | 1 | 2.479e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.05998538719585 (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.03 us (3.6%)
patch tree reduce : 2.00 us (1.0%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.36 us (0.7%)
LB compute : 171.24 us (87.7%)
LB move op cnt : 0
LB apply : 4.92 us (2.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (71.3%)
Info: cfl dt = 0.0046872250363051635 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2038e+06 | 262144 | 1 | 2.178e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.48508028506656 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49601809135652203, dt = 0.0046872250363051635
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.4%)
patch tree reduce : 2.32 us (1.0%)
gen split merge : 1.40 us (0.6%)
split / merge op : 0/0
apply split merge : 1.54 us (0.7%)
LB compute : 198.07 us (89.1%)
LB move op cnt : 0
LB apply : 4.13 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (63.4%)
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 | 1.1314e+06 | 262144 | 1 | 2.317e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.82736988293121 (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 : 7.21 us (3.6%)
patch tree reduce : 1.95 us (1.0%)
gen split merge : 1.63 us (0.8%)
split / merge op : 0/0
apply split merge : 1.35 us (0.7%)
LB compute : 174.55 us (87.7%)
LB move op cnt : 0
LB apply : 4.39 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (71.7%)
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 | 1.2066e+06 | 262144 | 1 | 2.173e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.115410057307473 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 195.45692134100003 (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 : 14.61 us (3.7%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 924.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.26 us (0.3%)
LB compute : 362.53 us (91.7%)
LB move op cnt : 0
LB apply : 5.75 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (77.1%)
Info: cfl dt = 0.004687225687580077 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.7805e+05 | 262144 | 1 | 2.986e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.51954174571074 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5060030147615721, dt = 0.004687225687580077
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.1%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.80 us (0.8%)
LB compute : 204.06 us (89.5%)
LB move op cnt : 0
LB apply : 4.38 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.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 | 8.7163e+05 | 262144 | 1 | 3.008e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.10615634466086 (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 : 7.13 us (3.0%)
patch tree reduce : 2.28 us (1.0%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.40 us (0.6%)
LB compute : 213.84 us (89.9%)
LB move op cnt : 0
LB apply : 4.17 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (65.6%)
Info: cfl dt = 0.004687226955426724 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.7366e+05 | 262144 | 1 | 3.001e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.23678825077405 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5153774666975838, dt = 0.004687226955426724
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.55 us (0.6%)
LB compute : 238.90 us (90.9%)
LB move op cnt : 0
LB apply : 4.22 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (58.0%)
Info: cfl dt = 0.004687227765702913 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1112e+06 | 262144 | 1 | 2.359e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.52645333957922 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5200646936530104, dt = 0.004687227765702913
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.4%)
patch tree reduce : 2.13 us (1.0%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.45 us (0.7%)
LB compute : 181.12 us (88.3%)
LB move op cnt : 0
LB apply : 4.49 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (68.8%)
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 | 1.1668e+06 | 262144 | 1 | 2.247e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.10359849752071 (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 : 8.45 us (4.0%)
patch tree reduce : 2.61 us (1.2%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.54 us (0.7%)
LB compute : 187.34 us (87.6%)
LB move op cnt : 0
LB apply : 5.20 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (68.4%)
Info: cfl dt = 0.0046872296623101575 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1883e+06 | 262144 | 1 | 2.206e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.49252594686021 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.529439150085285, dt = 0.0046872296623101575
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.3%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.32 us (0.6%)
split / merge op : 0/0
apply split merge : 1.71 us (0.7%)
LB compute : 207.29 us (89.7%)
LB move op cnt : 0
LB apply : 3.90 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (65.2%)
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 | 1.2157e+06 | 262144 | 1 | 2.156e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.25364947755948 (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 : 7.33 us (3.3%)
patch tree reduce : 2.19 us (1.0%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.32 us (0.6%)
LB compute : 195.82 us (89.0%)
LB move op cnt : 0
LB apply : 4.79 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (65.9%)
Info: cfl dt = 0.004687230893819567 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1243e+06 | 262144 | 1 | 2.332e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.425784219862576 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 198.008465601 (s) [Godunov][rank=0]
amr::Godunov: t = 0.5347368421052632, dt = 0.004687230893819567
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 14.23 us (5.3%)
patch tree reduce : 2.20 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 230.35 us (86.4%)
LB move op cnt : 0
LB apply : 4.80 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (69.5%)
Info: cfl dt = 0.004687232087359085 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1974e+06 | 262144 | 1 | 2.189e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.07650260727182 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5394240729990828, dt = 0.004687232087359085
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.4%)
patch tree reduce : 1.95 us (0.9%)
gen split merge : 1.40 us (0.6%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 201.29 us (89.2%)
LB move op cnt : 0
LB apply : 4.35 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (65.6%)
Info: cfl dt = 0.0046872333860480935 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2185e+06 | 262144 | 1 | 2.151e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.43546844647175 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5441113050864419, dt = 0.0046872333860480935
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.0%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 1.50 us (0.6%)
split / merge op : 0/0
apply split merge : 1.50 us (0.6%)
LB compute : 232.70 us (90.6%)
LB move op cnt : 0
LB apply : 4.15 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (63.5%)
Info: cfl dt = 0.00468723477217877 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1885e+06 | 262144 | 1 | 2.206e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.50173648088523 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5487985384724899, dt = 0.00468723477217877
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.3%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 1.43 us (0.6%)
split / merge op : 0/0
apply split merge : 1.81 us (0.8%)
LB compute : 211.72 us (89.8%)
LB move op cnt : 0
LB apply : 3.99 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (65.0%)
Info: cfl dt = 0.004687236213515616 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.7055e+05 | 262144 | 1 | 3.011e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.03693373269611 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5534857732446687, dt = 0.004687236213515616
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.1%)
patch tree reduce : 1.62 us (0.6%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.76 us (0.7%)
LB compute : 226.55 us (90.3%)
LB move op cnt : 0
LB apply : 4.67 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (63.6%)
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 | 9.4282e+05 | 262144 | 1 | 2.780e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.68852559118839 (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 : 8.58 us (4.0%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.83 us (0.9%)
LB compute : 187.34 us (87.6%)
LB move op cnt : 0
LB apply : 4.54 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (67.6%)
Info: cfl dt = 0.004687239153525045 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.9856e+05 | 262144 | 1 | 2.917e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.83976966086466 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5628602471403548, dt = 0.004687239153525045
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance 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.92 us (4.1%)
patch tree reduce : 2.05 us (0.9%)
gen split merge : 1.40 us (0.6%)
split / merge op : 0/0
apply split merge : 1.64 us (0.7%)
LB compute : 193.66 us (88.1%)
LB move op cnt : 0
LB apply : 4.85 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (62.7%)
Info: cfl dt = 0.004687240606236027 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.2015e+06 | 262144 | 1 | 2.182e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.33970060967775 (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 : 7.59 us (3.6%)
patch tree reduce : 1.84 us (0.9%)
gen split merge : 1.64 us (0.8%)
split / merge op : 0/0
apply split merge : 1.54 us (0.7%)
LB compute : 182.86 us (87.9%)
LB move op cnt : 0
LB apply : 4.69 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (65.6%)
Info: cfl dt = 0.004687240794374504 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1987e+06 | 262144 | 1 | 2.187e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.048236734361028 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 200.359528861 (s) [Godunov][rank=0]
amr::Godunov: t = 0.5681578947368421, dt = 0.004687240794374504
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 14.18 us (5.0%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 253.47 us (89.0%)
LB move op cnt : 0
LB apply : 4.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (63.8%)
Info: cfl dt = 0.004687242197884647 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1151e+06 | 262144 | 1 | 2.351e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.77955962563128 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5728451355312166, dt = 0.004687242197884647
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance 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.28 us (3.2%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.34 us (0.5%)
split / merge op : 0/0
apply split merge : 1.50 us (0.6%)
LB compute : 228.89 us (89.8%)
LB move op cnt : 0
LB apply : 5.09 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (65.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 | 1.1775e+06 | 262144 | 1 | 2.226e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.79481381332958 (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.25 us (3.0%)
patch tree reduce : 2.41 us (1.0%)
gen split merge : 1.35 us (0.6%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 219.85 us (89.5%)
LB move op cnt : 0
LB apply : 5.19 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (70.4%)
Info: cfl dt = 0.004687244822981617 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.0943e+06 | 262144 | 1 | 2.396e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.44051693533588 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5822196212736439, dt = 0.004687244822981617
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.4%)
patch tree reduce : 2.01 us (0.9%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.40 us (0.6%)
LB compute : 195.47 us (88.6%)
LB move op cnt : 0
LB apply : 4.82 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (62.3%)
Info: cfl dt = 0.00468724602662942 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1646e+06 | 262144 | 1 | 2.251e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.96789616726244 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5869068660966256, dt = 0.00468724602662942
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance 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.27 us (4.1%)
patch tree reduce : 1.96 us (1.0%)
gen split merge : 1.35 us (0.7%)
split / merge op : 0/0
apply split merge : 1.40 us (0.7%)
LB compute : 176.39 us (87.4%)
LB move op cnt : 0
LB apply : 4.64 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (65.3%)
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 | 1.1909e+06 | 262144 | 1 | 2.201e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.65616797710575 (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.49 us (3.0%)
patch tree reduce : 1.97 us (0.9%)
gen split merge : 1.39 us (0.6%)
split / merge op : 0/0
apply split merge : 1.54 us (0.7%)
LB compute : 195.44 us (89.3%)
LB move op cnt : 0
LB apply : 4.13 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (64.2%)
Info: cfl dt = 0.004687248200669638 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.0642e+06 | 262144 | 1 | 2.463e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.50082412050618 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5962813592758922, dt = 0.004687248200669638
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.0%)
patch tree reduce : 2.07 us (0.9%)
gen split merge : 1.30 us (0.6%)
split / merge op : 0/0
apply split merge : 1.55 us (0.7%)
LB compute : 211.07 us (89.8%)
LB move op cnt : 0
LB apply : 4.27 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (66.8%)
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 | 1.0872e+06 | 262144 | 1 | 2.411e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.98146286346756 (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.58 us (3.4%)
patch tree reduce : 1.91 us (0.9%)
gen split merge : 1.32 us (0.6%)
split / merge op : 0/0
apply split merge : 1.76 us (0.8%)
LB compute : 199.54 us (89.0%)
LB move op cnt : 0
LB apply : 4.29 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (62.8%)
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 | 1.0951e+06 | 262144 | 1 | 2.394e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.179044286161753 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 202.623034366 (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 : 15.10 us (5.1%)
patch tree reduce : 2.13 us (0.7%)
gen split merge : 989.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 261.36 us (89.0%)
LB move op cnt : 0
LB apply : 4.75 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (65.8%)
Info: cfl dt = 0.004687250185202725 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1897e+06 | 262144 | 1 | 2.203e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.58213827248834 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6062661966662812, dt = 0.004687250185202725
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [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 (3.5%)
patch tree reduce : 2.62 us (1.2%)
gen split merge : 1.38 us (0.6%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 199.42 us (88.8%)
LB move op cnt : 0
LB apply : 4.23 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (65.8%)
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 | 1.1576e+06 | 262144 | 1 | 2.265e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.5156897303795 (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.33 us (3.1%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.67 us (0.7%)
LB compute : 214.36 us (89.7%)
LB move op cnt : 0
LB apply : 4.50 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (67.2%)
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 | 1.0995e+06 | 262144 | 1 | 2.384e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.7734283433542 (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 : 8.48 us (4.2%)
patch tree reduce : 2.03 us (1.0%)
gen split merge : 1.27 us (0.6%)
split / merge op : 0/0
apply split merge : 1.54 us (0.8%)
LB compute : 177.54 us (87.4%)
LB move op cnt : 0
LB apply : 4.58 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (65.4%)
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 | 1.1907e+06 | 262144 | 1 | 2.202e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.64716459311941 (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 : 7.68 us (2.9%)
patch tree reduce : 2.12 us (0.8%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 237.20 us (90.8%)
LB move op cnt : 0
LB apply : 4.28 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (63.9%)
Info: cfl dt = 0.00468725313535541 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 9.5427e+05 | 262144 | 1 | 2.747e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.42588700534308 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6250152021048592, dt = 0.00468725313535541
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance 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.09 us (3.1%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 1.37 us (0.5%)
split / merge op : 0/0
apply split merge : 1.70 us (0.6%)
LB compute : 236.99 us (90.4%)
LB move op cnt : 0
LB apply : 4.50 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (65.6%)
Info: cfl dt = 0.004687253747330771 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 1.1974e+06 | 262144 | 1 | 2.189e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.07865020560402 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6297024552402146, dt = 0.004687253747330771
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance 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.26 us (4.2%)
patch tree reduce : 2.06 us (1.1%)
gen split merge : 1.25 us (0.6%)
split / merge op : 0/0
apply split merge : 1.27 us (0.7%)
LB compute : 169.72 us (87.0%)
LB move op cnt : 0
LB apply : 4.55 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (65.0%)
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 | 1.0664e+06 | 262144 | 1 | 2.458e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.64106067123905 (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.78 us (3.8%)
patch tree reduce : 2.28 us (1.1%)
gen split merge : 1.72 us (0.8%)
split / merge op : 0/0
apply split merge : 1.30 us (0.6%)
LB compute : 178.10 us (87.4%)
LB move op cnt : 0
LB apply : 4.74 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (67.0%)
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 | 1.1932e+06 | 262144 | 1 | 2.197e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.000592534031242 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 204.876214736 (s) [Godunov][rank=0]
Total running time of the script: (3 minutes 24.906 seconds)
Estimated memory usage: 1433 MB