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.animation as animation
12 import matplotlib.pyplot as plt
13 import numpy as np
14
15 import shamrock
16
17 # If we use the shamrock executable to run this script instead of the python interpreter,
18 # we should not initialize the system as the shamrock executable needs to handle specific MPI logic
19 if not shamrock.sys.is_initialized():
20 shamrock.change_loglevel(1)
21 shamrock.sys.init("0:0")
-> modified loglevel to 0 enabled log types :
log status :
- Loglevel: 1, enabled log types :
[xxx] Info: xxx ( logger::info )
[xxx] : xxx ( logger::normal )
[xxx] Warning: xxx ( logger::warn )
[xxx] Error: xxx ( logger::err )
Setup parameters
26 nx, ny = 512, 512
27
28 sim_folder = "_to_trash/ramses_linear_wave_with_bc/"
Create the dump directory if it does not exist
32 if shamrock.sys.world_rank() == 0:
33 os.makedirs(sim_folder, exist_ok=True)
Periodic boundary conditions#
198 def run_case_periodic():
199 def set_bc_func(cfg):
200 cfg.set_boundary_condition("x", "periodic")
201 cfg.set_boundary_condition("y", "periodic")
202 cfg.set_boundary_condition("z", "periodic")
203
204 return run_case(set_bc_func, "periodic")
205
206
207 ani_periodic = run_case_periodic()
208 plt.show()
Info: pushing data in scheduler, N = 32768 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 8.90 ms [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: Compute load ... [DataInserterUtility][rank=0]
Info: run scheduler step ... [DataInserterUtility][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (52.8%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (0.2%)
patch tree reduce : 1483.00 ns (0.2%)
gen split merge : 732.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.1%)
LB compute : 967.88 us (98.6%)
LB move op cnt : 0
LB apply : 4.54 us (0.5%)
Info: patch count stable after 1 runs npatch = 1 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: time since start : 11.595848148 (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 : 10.31 us (2.9%)
patch tree reduce : 1753.00 ns (0.5%)
gen split merge : 662.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 328.70 us (93.8%)
LB move op cnt : 0
LB apply : 2.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1774.00 ns (71.4%)
Info: cfl dt = 0.004687031767311921 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.7927e+05 | 262144 | 1 | 3.859e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 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 : 5.91 us (1.4%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.3%)
LB compute : 398.32 us (95.2%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (64.5%)
Info: cfl dt = 0.00468703492268262 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8568e+05 | 262144 | 1 | 3.337e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.5717181999236 (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 : 6.35 us (1.5%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 395.95 us (95.0%)
LB move op cnt : 0
LB apply : 4.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (67.4%)
Info: cfl dt = 0.004687039583988074 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9785e+05 | 262144 | 1 | 3.286e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.3546319826013 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009374066689994541, dt = 0.004687039583988074
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (1.6%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 367.17 us (94.7%)
LB move op cnt : 0
LB apply : 4.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (66.0%)
Info: cfl dt = 0.004687045796397419 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9111e+05 | 262144 | 1 | 3.793e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.484484712639805 (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.54 us (1.5%)
patch tree reduce : 1833.00 ns (0.4%)
gen split merge : 1102.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 428.76 us (95.3%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (74.1%)
Info: cfl dt = 0.004687053552588433 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7780e+05 | 262144 | 1 | 3.370e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.06468098535045 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018748152070380032, dt = 0.004687053552588433
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (1.7%)
patch tree reduce : 1784.00 ns (0.4%)
gen split merge : 1312.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 389.08 us (94.7%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (72.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 | 8.1851e+05 | 262144 | 1 | 3.203e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.68462239900589 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023435205622968466, dt = 0.004687062799631708
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (1.6%)
patch tree reduce : 1973.00 ns (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 400.60 us (95.0%)
LB move op cnt : 0
LB apply : 4.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.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 | 8.1414e+05 | 262144 | 1 | 3.220e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.40394692310881 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028122268422600172, dt = 0.004687073438769337
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (1.6%)
patch tree reduce : 1923.00 ns (0.5%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 383.18 us (94.8%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (69.0%)
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 | 8.0142e+05 | 262144 | 1 | 3.271e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.58487650321726 (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.39 us (1.5%)
patch tree reduce : 1964.00 ns (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 394.10 us (95.0%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (72.2%)
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 | 8.1125e+05 | 262144 | 1 | 3.231e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.814926808441795 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 15.086944180000001 (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 : 10.25 us (2.6%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 368.49 us (94.1%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (65.7%)
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 | 6.8680e+05 | 262144 | 1 | 3.817e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.20772934200616 (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 : 6.83 us (1.8%)
patch tree reduce : 1903.00 ns (0.5%)
gen split merge : 1283.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 353.97 us (94.3%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (65.7%)
Info: cfl dt = 0.004687108731816181 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2021e+05 | 262144 | 1 | 3.196e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.79500979204868 (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 : 6.61 us (1.5%)
patch tree reduce : 1874.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 406.56 us (95.1%)
LB move op cnt : 0
LB apply : 4.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (66.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 | 8.1417e+05 | 262144 | 1 | 3.220e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.40627701936269 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04748234381583629, dt = 0.004687121456470113
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.4%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 418.36 us (95.2%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (74.6%)
Info: cfl dt = 0.004687134726094165 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0514e+05 | 262144 | 1 | 3.256e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.82495722980025 (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.65 us (1.5%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 410.73 us (95.0%)
LB move op cnt : 0
LB apply : 4.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (68.9%)
Info: cfl dt = 0.004687147322194281 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0810e+05 | 262144 | 1 | 3.244e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.01608690845973 (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 : 6.41 us (1.6%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 373.23 us (94.9%)
LB move op cnt : 0
LB apply : 4.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (66.3%)
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 | 7.8045e+05 | 262144 | 1 | 3.359e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.23591297439432 (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.08 us (1.7%)
patch tree reduce : 1953.00 ns (0.6%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 330.39 us (94.0%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (68.4%)
Info: cfl dt = 0.004687170703493218 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8571e+05 | 262144 | 1 | 3.823e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.137906752440294 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06623090618261276, dt = 0.0006111990805451328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (1.8%)
patch tree reduce : 1924.00 ns (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 347.30 us (94.4%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.2%)
Info: cfl dt = 0.004687172273838671 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0692e+05 | 262144 | 1 | 3.249e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.772900418296852 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 18.269204377 (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 : 10.46 us (2.8%)
patch tree reduce : 1754.00 ns (0.5%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 356.36 us (93.7%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (67.5%)
Info: cfl dt = 0.004687184264635955 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9942e+05 | 262144 | 1 | 3.279e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.45746759806757 (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.56 us (1.7%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 357.78 us (94.7%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (66.4%)
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 | 7.5554e+05 | 262144 | 1 | 3.470e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.632956000397456 (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 : 6.69 us (1.9%)
patch tree reduce : 1763.00 ns (0.5%)
gen split merge : 1112.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 329.38 us (94.0%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (68.5%)
Info: cfl dt = 0.004687205210890904 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1956e+05 | 262144 | 1 | 3.643e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.31748397940972 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0809036566795217, dt = 0.004687205210890904
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.7%)
patch tree reduce : 1653.00 ns (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.4%)
LB compute : 343.92 us (94.4%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (66.9%)
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 | 6.7949e+05 | 262144 | 1 | 3.858e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.73815453309398 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0855908618904126, dt = 0.004687215596405025
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (1.8%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 350.73 us (94.2%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (69.7%)
Info: cfl dt = 0.004687224972615614 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7073e+05 | 262144 | 1 | 3.401e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.61115226367752 (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 : 6.68 us (1.6%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1303.00 ns (0.3%)
LB compute : 387.08 us (94.7%)
LB move op cnt : 0
LB apply : 4.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (68.5%)
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 | 8.0228e+05 | 262144 | 1 | 3.267e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.6424330027315 (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.65 us (1.6%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 399.99 us (95.0%)
LB move op cnt : 0
LB apply : 4.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (71.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 | 8.0438e+05 | 262144 | 1 | 3.259e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.77758417952883 (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 : 6.44 us (1.8%)
patch tree reduce : 1944.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 343.82 us (94.3%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (67.5%)
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 | 7.3315e+05 | 262144 | 1 | 3.576e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.1479040777053955 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 21.507732177 (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 : 10.03 us (2.6%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 571.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 993.00 ns (0.3%)
LB compute : 358.88 us (93.8%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 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 | 7.9765e+05 | 262144 | 1 | 3.286e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.344427808013315 (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.57 us (1.8%)
patch tree reduce : 1704.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1053.00 ns (0.3%)
LB compute : 343.89 us (94.2%)
LB move op cnt : 0
LB apply : 4.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (69.0%)
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 | 8.1919e+05 | 262144 | 1 | 3.200e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.73082825387527 (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.17 us (1.5%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1233.00 ns (0.3%)
LB compute : 377.63 us (94.8%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (68.9%)
Info: cfl dt = 0.004687272009803064 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1230e+05 | 262144 | 1 | 3.227e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.2878666925214 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11432491977149845, dt = 0.004687272009803064
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (1.8%)
patch tree reduce : 1923.00 ns (0.5%)
gen split merge : 1243.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 332.71 us (94.0%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (69.6%)
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 | 6.8797e+05 | 262144 | 1 | 3.810e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.28429342915439 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11901219178130151, dt = 0.004687277553789572
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.5%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.3%)
LB compute : 404.44 us (95.2%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (66.2%)
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 | 8.1419e+05 | 262144 | 1 | 3.220e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.40924607466387 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12369946933509109, dt = 0.004687278860067916
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (1.6%)
patch tree reduce : 1763.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 400.80 us (95.0%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (67.6%)
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 | 8.0363e+05 | 262144 | 1 | 3.262e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.72948834612994 (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.97 us (1.6%)
patch tree reduce : 1614.00 ns (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 414.61 us (95.1%)
LB move op cnt : 0
LB apply : 4.05 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (70.4%)
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 | 8.2173e+05 | 262144 | 1 | 3.190e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.8949368698308 (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 : 6.18 us (1.7%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 340.35 us (94.3%)
LB move op cnt : 0
LB apply : 4.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (66.7%)
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 | 8.2790e+05 | 262144 | 1 | 3.166e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.937506360264997 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 24.611756856000003 (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 : 10.50 us (2.6%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 480.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 385.48 us (94.2%)
LB move op cnt : 0
LB apply : 4.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (68.1%)
Info: cfl dt = 0.00468727556791138 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2121e+05 | 262144 | 1 | 3.192e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.86112258560485 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1383714879804667, dt = 0.00468727556791138
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.5%)
patch tree reduce : 1664.00 ns (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.2%)
LB compute : 400.31 us (95.1%)
LB move op cnt : 0
LB apply : 4.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (63.6%)
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 | 6.7232e+05 | 262144 | 1 | 3.899e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.27708840602958 (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 : 6.54 us (1.5%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 391.09 us (90.1%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (71.2%)
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 | 6.6673e+05 | 262144 | 1 | 3.932e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.917381248282 (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 : 6.22 us (1.5%)
patch tree reduce : 1954.00 ns (0.5%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.2%)
LB compute : 394.84 us (95.1%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (68.6%)
Info: cfl dt = 0.004687267928760189 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1181e+05 | 262144 | 1 | 3.229e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.256013613690406 (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 : 6.32 us (1.6%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 376.37 us (94.8%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (64.6%)
Info: cfl dt = 0.004687264881698464 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0980e+05 | 262144 | 1 | 3.237e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.126802197450665 (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 : 6.22 us (1.7%)
patch tree reduce : 1714.00 ns (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 346.14 us (94.4%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (70.0%)
Info: cfl dt = 0.004687261775572384 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8543e+05 | 262144 | 1 | 3.338e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.557879654167444 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16180784044332752, dt = 0.004687261775572384
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (1.7%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 356.85 us (94.6%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (67.7%)
Info: cfl dt = 0.004687258684509833 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0202e+05 | 262144 | 1 | 3.734e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.18877225913705 (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 : 6.42 us (1.7%)
patch tree reduce : 1894.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 366.93 us (94.7%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.4%)
Info: cfl dt = 0.0046872582818074035 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1285e+05 | 262144 | 1 | 3.225e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.811081282362301 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 27.862851348000003 (s) [Godunov][rank=0]
amr::Godunov: t = 0.16710526315789476, dt = 0.0046872582818074035
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.68 us (2.4%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 422.33 us (94.7%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (70.5%)
Info: cfl dt = 0.004687255242611125 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9094e+05 | 262144 | 1 | 3.314e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.91287698711296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17179252143970217, dt = 0.004687255242611125
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.7%)
patch tree reduce : 1673.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 337.67 us (94.2%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (63.6%)
Info: cfl dt = 0.0046872522719168044 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3145e+05 | 262144 | 1 | 3.584e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.08326481507237 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1764797766823133, dt = 0.0046872522719168044
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (1.9%)
patch tree reduce : 1883.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 343.21 us (94.2%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (65.6%)
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 | 7.0936e+05 | 262144 | 1 | 3.696e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.660925657658346 (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 : 6.71 us (2.0%)
patch tree reduce : 1543.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 317.49 us (94.0%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (63.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 | 8.2649e+05 | 262144 | 1 | 3.172e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.2008497005544 (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.91 us (1.6%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 411.56 us (95.1%)
LB move op cnt : 0
LB apply : 3.61 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (71.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 | 8.2000e+05 | 262144 | 1 | 3.197e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.78318692251348 (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 : 6.73 us (1.6%)
patch tree reduce : 1854.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 412.35 us (94.9%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (71.8%)
Info: cfl dt = 0.004687241718897253 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0089e+05 | 262144 | 1 | 3.273e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.55303820124391 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1952287690971273, dt = 0.004687241718897253
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (1.6%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 379.50 us (94.9%)
LB move op cnt : 0
LB apply : 4.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (67.5%)
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 | 8.1920e+05 | 262144 | 1 | 3.200e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.73125429294769 (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.12 us (1.6%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 366.43 us (94.8%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (74.5%)
Info: cfl dt = 0.004687239271247986 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2747e+05 | 262144 | 1 | 3.168e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.935277550071895 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 30.983536653 (s) [Godunov][rank=0]
amr::Godunov: t = 0.2005263157894737, dt = 0.004687239271247986
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.31 us (2.8%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 551.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 346.90 us (93.7%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.2%)
Info: cfl dt = 0.0046872373081415526 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1557e+05 | 262144 | 1 | 3.663e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.0605281794913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20521355506072167, dt = 0.0046872373081415526
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (1.6%)
patch tree reduce : 1482.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 388.05 us (95.0%)
LB move op cnt : 0
LB apply : 4.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (74.0%)
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 | 8.2910e+05 | 262144 | 1 | 3.162e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.368710836191795 (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 : 6.26 us (1.6%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 363.62 us (94.7%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (69.5%)
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 | 8.1090e+05 | 262144 | 1 | 3.233e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.19741127255771 (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.77 us (1.6%)
patch tree reduce : 1453.00 ns (0.3%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1342.00 ns (0.3%)
LB compute : 411.22 us (95.1%)
LB move op cnt : 0
LB apply : 4.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (61.8%)
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 | 8.2114e+05 | 262144 | 1 | 3.192e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.85602457810505 (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 : 5.84 us (1.6%)
patch tree reduce : 1754.00 ns (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 340.16 us (94.6%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (60.4%)
Info: cfl dt = 0.0046872311646227105 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7201e+05 | 262144 | 1 | 3.396e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.69345563352729 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22396249435967644, dt = 0.0046872311646227105
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (1.9%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 323.87 us (94.1%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (62.0%)
Info: cfl dt = 0.0046872300082553215 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7068e+05 | 262144 | 1 | 3.401e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.608192143285535 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22864972552429916, dt = 0.0046872300082553215
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (1.7%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 351.12 us (94.5%)
LB move op cnt : 0
LB apply : 4.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (67.0%)
Info: cfl dt = 0.004687229023942356 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3675e+05 | 262144 | 1 | 3.558e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.42440912554163 (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 : 30.22 us (8.1%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 328.80 us (88.0%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (58.8%)
Info: cfl dt = 0.004687228920633913 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2205e+05 | 262144 | 1 | 3.189e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.891042592953744 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 34.121996569000004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.23394736842105263, dt = 0.004687228920633913
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.30 us (2.7%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 561.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.2%)
LB compute : 360.63 us (93.9%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.8%)
Info: cfl dt = 0.004687228110852186 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6753e+05 | 262144 | 1 | 3.415e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.40511372436051 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23863459734168654, dt = 0.004687228110852186
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (1.7%)
patch tree reduce : 1743.00 ns (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 362.86 us (94.7%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (61.3%)
Info: cfl dt = 0.004687227451969247 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2177e+05 | 262144 | 1 | 3.190e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.89667787420659 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24332182545253872, dt = 0.004687227451969247
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.5%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1091.00 ns (0.3%)
LB compute : 387.38 us (95.0%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (67.8%)
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 | 7.8761e+05 | 262144 | 1 | 3.328e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.697935219045306 (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 : 6.95 us (1.9%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1283.00 ns (0.3%)
LB compute : 352.53 us (94.3%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (71.6%)
Info: cfl dt = 0.004687226540084672 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1674e+05 | 262144 | 1 | 3.210e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.573189611076195 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2526962798365931, dt = 0.004687226540084672
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (1.6%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 384.50 us (95.0%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (64.7%)
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 | 8.2831e+05 | 262144 | 1 | 3.165e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.317912243564805 (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 : 6.33 us (1.7%)
patch tree reduce : 1843.00 ns (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 360.03 us (94.5%)
LB move op cnt : 0
LB apply : 4.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (69.2%)
Info: cfl dt = 0.00468722609669686 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1455e+05 | 262144 | 1 | 3.218e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.431764770915336 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26207073264174935, dt = 0.00468722609669686
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (1.6%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 384.71 us (94.9%)
LB move op cnt : 0
LB apply : 4.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (65.7%)
Info: cfl dt = 0.004687226025197457 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3077e+05 | 262144 | 1 | 3.155e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.4762959307846 (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 : 6.35 us (1.7%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 1343.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 357.26 us (94.4%)
LB move op cnt : 0
LB apply : 4.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (70.7%)
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 | 8.2413e+05 | 262144 | 1 | 3.181e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.908991716775652 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 37.173867844 (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 : 10.11 us (2.7%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 561.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 358.18 us (94.1%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (68.0%)
Info: cfl dt = 0.004687226053604762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0685e+05 | 262144 | 1 | 3.249e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.93605545934756 (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 : 6.43 us (1.7%)
patch tree reduce : 1654.00 ns (0.4%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 360.56 us (94.5%)
LB move op cnt : 0
LB apply : 4.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (68.2%)
Info: cfl dt = 0.004687226153524088 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7115e+05 | 262144 | 1 | 3.399e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.63857049969913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.276742873139546, dt = 0.004687226153524088
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (1.5%)
patch tree reduce : 1953.00 ns (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 395.46 us (94.9%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (66.9%)
Info: cfl dt = 0.0046872263241485735 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9531e+05 | 262144 | 1 | 3.770e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.75634550217503 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28143009929307006, dt = 0.0046872263241485735
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (1.7%)
patch tree reduce : 2.29 us (0.6%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 384.39 us (94.7%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (70.7%)
Info: cfl dt = 0.004687226555453985 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2052e+05 | 262144 | 1 | 3.195e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.816342837470124 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28611732561721864, dt = 0.004687226555453985
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.8%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.4%)
LB compute : 325.81 us (94.1%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (64.8%)
Info: cfl dt = 0.004687226836976095 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7009e+05 | 262144 | 1 | 3.404e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.57022676520077 (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 : 6.31 us (1.5%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 395.12 us (95.1%)
LB move op cnt : 0
LB apply : 4.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (70.7%)
Info: cfl dt = 0.004687227157802991 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1606e+05 | 262144 | 1 | 3.212e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.529361485923936 (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 : 6.45 us (1.9%)
patch tree reduce : 1653.00 ns (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 324.75 us (94.0%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (62.1%)
Info: cfl dt = 0.004687227509313849 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5958e+05 | 262144 | 1 | 3.451e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.89356609763325 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30017900616745175, dt = 0.0006104675167588058
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (1.7%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 351.71 us (94.4%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (69.3%)
Info: cfl dt = 0.004687227568179243 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9318e+05 | 262144 | 1 | 3.305e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.649641272225156 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 40.332453511000004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.30078947368421055, dt = 0.004687227568179243
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.78 us (2.4%)
patch tree reduce : 1512.00 ns (0.4%)
gen split merge : 551.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 377.69 us (94.3%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.1%)
Info: cfl dt = 0.004687227950262359 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.7729e+05 | 262144 | 1 | 3.870e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.5969030841776 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3054767012523898, dt = 0.004687227950262359
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.6%)
patch tree reduce : 1754.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 376.21 us (94.8%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (65.8%)
Info: cfl dt = 0.004687228352538633 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2219e+05 | 262144 | 1 | 3.188e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.92371065197017 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3101639292026522, dt = 0.004687228352538633
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.8%)
patch tree reduce : 1663.00 ns (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 332.84 us (94.1%)
LB move op cnt : 0
LB apply : 4.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.3%)
Info: cfl dt = 0.004687228763321001 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7631e+05 | 262144 | 1 | 3.377e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.97081082168844 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31485115755519083, dt = 0.004687228763321001
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.8%)
patch tree reduce : 1974.00 ns (0.6%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 338.01 us (94.2%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.6%)
Info: cfl dt = 0.004687229174705336 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5643e+05 | 262144 | 1 | 3.466e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.69098913114875 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31953838631851184, dt = 0.004687229174705336
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (1.8%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 354.41 us (94.6%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (65.9%)
Info: cfl dt = 0.004687229581987548 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1088e+05 | 262144 | 1 | 3.233e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.19585679263329 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32422561549321716, dt = 0.004687229581987548
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.6%)
patch tree reduce : 1893.00 ns (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 366.15 us (94.6%)
LB move op cnt : 0
LB apply : 4.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (72.5%)
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 | 8.1359e+05 | 262144 | 1 | 3.222e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.37044056318815 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3289128450752047, dt = 0.004687229981253937
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.5%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1332.00 ns (0.3%)
LB compute : 392.03 us (95.0%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (70.7%)
Info: cfl dt = 0.0046872303701462545 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1390e+05 | 262144 | 1 | 3.221e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.39003406254466 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3336000750564586, dt = 0.0006104512593309019
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.3%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 409.12 us (95.2%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (64.9%)
Info: cfl dt = 0.0046872304307888505 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0402e+05 | 262144 | 1 | 3.260e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.740294298007925 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 43.478995273 (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 : 10.28 us (2.4%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 551.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 397.17 us (94.6%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (68.0%)
Info: cfl dt = 0.004687230803258661 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6266e+05 | 262144 | 1 | 3.437e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.0921330144152 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33889775674657835, dt = 0.004687230803258661
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (1.7%)
patch tree reduce : 1803.00 ns (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 372.92 us (94.6%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (68.9%)
Info: cfl dt = 0.004687231163819945 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2109e+05 | 262144 | 1 | 3.193e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.852960538196314 (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 : 6.67 us (1.8%)
patch tree reduce : 1783.00 ns (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 334.55 us (92.2%)
LB move op cnt : 0
LB apply : 11.00 us (3.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (66.7%)
Info: cfl dt = 0.004687231514914584 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1452e+05 | 262144 | 1 | 3.669e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.99315039647211 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.348272218713657, dt = 0.004687231514914584
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (1.9%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 337.88 us (94.2%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 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 | 8.0527e+05 | 262144 | 1 | 3.255e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.8345338479987 (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 : 6.39 us (1.6%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.2%)
LB compute : 388.89 us (94.9%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (66.7%)
Info: cfl dt = 0.004687232204076043 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9747e+05 | 262144 | 1 | 3.287e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.33290836056898 (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 : 6.33 us (1.5%)
patch tree reduce : 1753.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 413.71 us (95.2%)
LB move op cnt : 0
LB apply : 4.12 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (67.6%)
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 | 7.7379e+05 | 262144 | 1 | 3.388e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.80866971765151 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3623339142931858, dt = 0.004687232548613277
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (1.6%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 388.54 us (95.0%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (68.2%)
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 | 8.0899e+05 | 262144 | 1 | 3.240e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.07407242123419 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36702114684179904, dt = 0.0006104321055693807
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (1.5%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 424.89 us (95.2%)
LB move op cnt : 0
LB apply : 4.12 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (72.8%)
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 | 8.1679e+05 | 262144 | 1 | 3.209e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.847196728228145 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 46.612977875000006 (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 : 10.90 us (2.7%)
patch tree reduce : 1363.00 ns (0.3%)
gen split merge : 562.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.2%)
LB compute : 384.89 us (94.2%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (67.0%)
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 | 8.1568e+05 | 262144 | 1 | 3.214e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.50485362759721 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37231881190056204, dt = 0.00468723330273299
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.6%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 370.36 us (94.8%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.0%)
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 | 8.0324e+05 | 262144 | 1 | 3.264e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.70376301217616 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.377006045203295, dt = 0.004687233657395065
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (1.4%)
patch tree reduce : 2.04 us (0.4%)
gen split merge : 1152.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 474.72 us (95.5%)
LB move op cnt : 0
LB apply : 3.95 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (72.4%)
Info: cfl dt = 0.0046872340163959325 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7905e+05 | 262144 | 1 | 3.365e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.14679735268063 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38169327886069004, dt = 0.0046872340163959325
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.4%)
patch tree reduce : 1653.00 ns (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 408.74 us (95.2%)
LB move op cnt : 0
LB apply : 4.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (71.9%)
Info: cfl dt = 0.004687234378236733 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1783e+05 | 262144 | 1 | 3.205e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.643050770941734 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38638051287708597, dt = 0.004687234378236733
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.5%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 375.13 us (89.8%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (69.3%)
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 | 7.3915e+05 | 262144 | 1 | 3.547e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.57862803023352 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39106774725532273, dt = 0.004687234740947942
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.4%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 411.82 us (95.3%)
LB move op cnt : 0
LB apply : 4.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (67.1%)
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 | 8.0623e+05 | 262144 | 1 | 3.251e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.896234305356444 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3957549819962707, dt = 0.004687235102568247
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.7%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 337.64 us (94.3%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (64.9%)
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 | 7.6761e+05 | 262144 | 1 | 3.415e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.41040066528954 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4004422170988389, dt = 0.0006104144801084566
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (1.8%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1333.00 ns (0.3%)
LB compute : 361.18 us (94.2%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (65.2%)
Info: cfl dt = 0.004687235519148094 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0621e+05 | 262144 | 1 | 3.252e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.758250422139804 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 49.922205195000004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.4010526315789474, dt = 0.004687235519148094
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.68 us (2.8%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 511.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1133.00 ns (0.3%)
LB compute : 356.55 us (93.8%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (63.3%)
Info: cfl dt = 0.004687235869955299 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1478e+05 | 262144 | 1 | 3.217e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.44704058679256 (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.41 us (1.6%)
patch tree reduce : 1923.00 ns (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 375.46 us (94.7%)
LB move op cnt : 0
LB apply : 4.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (67.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 | 8.1661e+05 | 262144 | 1 | 3.210e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.56456705072782 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41042710296805074, dt = 0.004687236216736206
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.5%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 1312.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 376.35 us (94.8%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.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 | 8.1322e+05 | 262144 | 1 | 3.224e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.3467627711057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41511433918478696, dt = 0.004687236559777988
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (1.6%)
patch tree reduce : 1964.00 ns (0.5%)
gen split merge : 1192.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 384.36 us (94.9%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (74.0%)
Info: cfl dt = 0.00468723689972781 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8905e+05 | 262144 | 1 | 3.322e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.7903577813704 (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 : 6.52 us (1.8%)
patch tree reduce : 1773.00 ns (0.5%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.3%)
LB compute : 346.93 us (94.5%)
LB move op cnt : 0
LB apply : 3.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (70.1%)
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 | 8.1398e+05 | 262144 | 1 | 3.221e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.39542113339969 (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.99 us (1.7%)
patch tree reduce : 1793.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 395.43 us (94.9%)
LB move op cnt : 0
LB apply : 4.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (73.3%)
Info: cfl dt = 0.004687237572693472 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2503e+05 | 262144 | 1 | 3.616e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.67005444514519 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42917604988150687, dt = 0.004687237572693472
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (1.8%)
patch tree reduce : 1813.00 ns (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 329.95 us (94.1%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (69.9%)
Info: cfl dt = 0.004687237906360054 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1773e+05 | 262144 | 1 | 3.206e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.636685541267966 (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 : 6.37 us (1.8%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1603.00 ns (0.4%)
LB compute : 338.81 us (93.7%)
LB move op cnt : 0
LB apply : 4.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (66.2%)
Info: cfl dt = 0.004687237960637028 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2061e+05 | 262144 | 1 | 3.195e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.878757783771485 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 53.001034222 (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 : 10.85 us (2.7%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 532.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 377.83 us (94.0%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.5%)
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 | 8.1901e+05 | 262144 | 1 | 3.201e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.71910446074047 (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 : 6.64 us (1.7%)
patch tree reduce : 1853.00 ns (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 371.23 us (94.7%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.4%)
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 | 8.1340e+05 | 262144 | 1 | 3.223e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.35781990425903 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44384816045961467, dt = 0.004687238614274621
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (1.6%)
patch tree reduce : 1733.00 ns (0.4%)
gen split merge : 23.73 us (5.8%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 362.77 us (89.0%)
LB move op cnt : 0
LB apply : 4.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (71.9%)
Info: cfl dt = 0.004687238937863714 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0315e+05 | 262144 | 1 | 3.264e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.69849049265705 (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 : 6.44 us (1.7%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 359.23 us (94.5%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (68.1%)
Info: cfl dt = 0.00468723925887941 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1237e+05 | 262144 | 1 | 3.227e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.291797217042486 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.453222638011753, dt = 0.00468723925887941
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (1.5%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 404.40 us (95.1%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (66.3%)
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 | 7.9588e+05 | 262144 | 1 | 3.294e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.2305865563447 (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.86 us (1.9%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1051.00 ns (0.3%)
LB compute : 343.43 us (94.2%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (68.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 | 8.1411e+05 | 262144 | 1 | 3.220e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.40384229247558 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4625971168475294, dt = 0.004687239891459609
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (1.8%)
patch tree reduce : 1814.00 ns (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.3%)
LB compute : 364.69 us (94.5%)
LB move op cnt : 0
LB apply : 4.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (66.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 | 8.2113e+05 | 262144 | 1 | 3.192e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.85541802360453 (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 : 6.85 us (1.9%)
patch tree reduce : 1723.00 ns (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 330.67 us (93.8%)
LB move op cnt : 0
LB apply : 4.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (68.6%)
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 | 7.5873e+05 | 262144 | 1 | 3.455e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.359921960771883 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 56.057994492000006 (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 : 9.97 us (2.6%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 561.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.2%)
LB compute : 363.96 us (94.1%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (67.9%)
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 | 6.9352e+05 | 262144 | 1 | 3.780e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.641247839993255 (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.61 us (1.8%)
patch tree reduce : 1784.00 ns (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 343.13 us (94.2%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (61.8%)
Info: cfl dt = 0.0046872408552748445 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1823e+05 | 262144 | 1 | 3.650e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.231854479049936 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4772692176503214, dt = 0.0046872408552748445
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (1.7%)
patch tree reduce : 1913.00 ns (0.5%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 353.28 us (94.3%)
LB move op cnt : 0
LB apply : 4.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (68.6%)
Info: cfl dt = 0.004687241152547965 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5901e+05 | 262144 | 1 | 3.454e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.85701681124189 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4819564585055962, dt = 0.004687241152547965
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (1.7%)
patch tree reduce : 1964.00 ns (0.5%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 351.22 us (94.3%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (72.8%)
Info: cfl dt = 0.004687241448386931 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6541e+05 | 262144 | 1 | 3.425e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.26901273397565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4866436996581442, dt = 0.004687241448386931
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (1.7%)
patch tree reduce : 1864.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 363.08 us (94.6%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (69.0%)
Info: cfl dt = 0.004687241743857922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1256e+05 | 262144 | 1 | 3.226e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.30400300350631 (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 : 6.69 us (1.9%)
patch tree reduce : 2.19 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 333.35 us (93.9%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.6%)
Info: cfl dt = 0.004687242039900038 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1821e+05 | 262144 | 1 | 3.204e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.66788335365449 (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 : 6.36 us (1.7%)
patch tree reduce : 1964.00 ns (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 993.00 ns (0.3%)
LB compute : 359.71 us (94.6%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (68.6%)
Info: cfl dt = 0.004687242337221157 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1205e+05 | 262144 | 1 | 3.228e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.27142397902602 (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 : 6.32 us (1.8%)
patch tree reduce : 1583.00 ns (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 324.61 us (93.9%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (69.3%)
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 | 8.1679e+05 | 262144 | 1 | 3.209e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.8464240390084585 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 59.239110903000004 (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 : 10.31 us (2.7%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 351.87 us (93.9%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.8%)
Info: cfl dt = 0.004687242681793465 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1413e+05 | 262144 | 1 | 3.220e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.40518138609693 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5060030318597921, dt = 0.004687242681793465
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.6%)
patch tree reduce : 1974.00 ns (0.5%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 360.80 us (94.6%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (70.6%)
Info: cfl dt = 0.004687242979524213 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2096e+05 | 262144 | 1 | 3.193e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.84504979697672 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5106902745415856, dt = 0.004687242979524213
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.5%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 381.35 us (95.1%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.09 us (93.9%)
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 | 8.2103e+05 | 262144 | 1 | 3.193e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.849421793859236 (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 : 6.62 us (1.7%)
patch tree reduce : 1974.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 363.99 us (94.4%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (67.0%)
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 | 8.1377e+05 | 262144 | 1 | 3.221e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.381798607524196 (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 : 6.92 us (1.6%)
patch tree reduce : 1823.00 ns (0.4%)
gen split merge : 1232.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 409.17 us (94.9%)
LB move op cnt : 0
LB apply : 4.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (70.2%)
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 | 8.1199e+05 | 262144 | 1 | 3.228e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.26766603184317 (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 : 7.17 us (1.7%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1273.00 ns (0.3%)
LB compute : 410.57 us (94.8%)
LB move op cnt : 0
LB apply : 3.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (68.3%)
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 | 8.0785e+05 | 262144 | 1 | 3.245e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.00113369771569 (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 : 6.00 us (1.5%)
patch tree reduce : 1653.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 372.06 us (94.8%)
LB move op cnt : 0
LB apply : 4.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (64.1%)
Info: cfl dt = 0.004687244488732919 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9529e+05 | 262144 | 1 | 3.296e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.192317984075395 (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 : 6.88 us (1.7%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 381.95 us (94.5%)
LB move op cnt : 0
LB apply : 4.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (67.3%)
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 | 8.0773e+05 | 262144 | 1 | 3.245e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.770282893277976 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 62.277138490000006 (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 : 10.21 us (1.8%)
patch tree reduce : 1473.00 ns (0.3%)
gen split merge : 572.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.2%)
LB compute : 541.86 us (95.9%)
LB move op cnt : 0
LB apply : 3.84 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (65.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 | 7.3656e+05 | 262144 | 1 | 3.559e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.41206168271829 (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 : 29.21 us (6.6%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1292.00 ns (0.3%)
LB compute : 396.90 us (90.0%)
LB move op cnt : 0
LB apply : 4.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (69.0%)
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 | 7.6984e+05 | 262144 | 1 | 3.405e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.553925524398934 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5441113314802959, dt = 0.0046872451328188345
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (1.6%)
patch tree reduce : 1463.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 401.40 us (95.1%)
LB move op cnt : 0
LB apply : 4.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (69.2%)
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 | 8.1205e+05 | 262144 | 1 | 3.228e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.27117445905176 (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 : 5.88 us (1.4%)
patch tree reduce : 1683.00 ns (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 401.81 us (95.4%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (71.2%)
Info: cfl dt = 0.004687245719181295 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1397e+05 | 262144 | 1 | 3.221e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.39509654856916 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.553485822040213, dt = 0.004687245719181295
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.6%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 367.73 us (94.7%)
LB move op cnt : 0
LB apply : 4.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (72.7%)
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 | 6.5565e+05 | 262144 | 1 | 3.998e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.20392944288869 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5581730677593943, dt = 0.004687246009040167
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (1.7%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 352.15 us (94.5%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (65.6%)
Info: cfl dt = 0.004687246296724089 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5347e+05 | 262144 | 1 | 3.479e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.5005624014488 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5628603137684345, dt = 0.004687246296724089
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.6%)
patch tree reduce : 1904.00 ns (0.5%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 373.15 us (94.7%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (71.6%)
Info: cfl dt = 0.00468724658234499 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2260e+05 | 262144 | 1 | 3.187e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.950563917963116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5675475600651586, dt = 0.0006103346716834768
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.6%)
patch tree reduce : 1614.00 ns (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 381.14 us (95.1%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (69.5%)
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 | 8.2739e+05 | 262144 | 1 | 3.168e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.934888530734617 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 65.45370264200001 (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 : 10.51 us (2.6%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 551.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 385.63 us (94.3%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.2%)
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 | 8.1976e+05 | 262144 | 1 | 3.198e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.76730378284908 (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 : 5.95 us (1.4%)
patch tree reduce : 1733.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 409.44 us (95.4%)
LB move op cnt : 0
LB apply : 3.56 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (70.5%)
Info: cfl dt = 0.004687247187974576 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2487e+05 | 262144 | 1 | 3.178e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.09656362012495 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5775323882759213, dt = 0.004687247187974576
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (1.8%)
patch tree reduce : 1864.00 ns (0.5%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 360.19 us (94.4%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1994.00 ns (65.3%)
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 | 8.2187e+05 | 262144 | 1 | 3.190e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.90347758222837 (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 : 5.99 us (1.6%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 362.90 us (94.9%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (67.8%)
Info: cfl dt = 0.004687247742102541 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8517e+05 | 262144 | 1 | 3.339e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.54115911958794 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5869068829292532, dt = 0.004687247742102541
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.8%)
patch tree reduce : 1914.00 ns (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 325.01 us (93.9%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (66.3%)
Info: cfl dt = 0.004687248018594978 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2592e+05 | 262144 | 1 | 3.611e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.727330003212245 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5915941306713557, dt = 0.004687248018594978
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (1.9%)
patch tree reduce : 1863.00 ns (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 334.61 us (93.8%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (70.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 | 8.0270e+05 | 262144 | 1 | 3.266e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.66959662637519 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5962813786899507, dt = 0.004687248295124053
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (1.9%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 326.44 us (94.0%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (70.7%)
Info: cfl dt = 0.004687248571882758 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2166e+05 | 262144 | 1 | 3.190e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.89015544201894 (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 : 6.06 us (1.6%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 359.29 us (94.6%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (66.1%)
Info: cfl dt = 0.0046872486180665205 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1760e+05 | 262144 | 1 | 3.206e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.852668029466659 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 68.543127917 (s) [Godunov][rank=0]
amr::Godunov: t = 0.6015789473684211, dt = 0.0046872486180665205
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.85 us (2.4%)
patch tree reduce : 1522.00 ns (0.4%)
gen split merge : 561.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 382.73 us (94.4%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.0%)
Info: cfl dt = 0.004687248891714632 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1563e+05 | 262144 | 1 | 3.214e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.50188043053575 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6062661959864877, dt = 0.004687248891714632
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (1.7%)
patch tree reduce : 1663.00 ns (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 345.60 us (94.3%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (69.7%)
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 | 8.0811e+05 | 262144 | 1 | 3.244e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.01779501000661 (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 : 6.73 us (1.7%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 377.15 us (94.6%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (64.2%)
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 | 8.0671e+05 | 262144 | 1 | 3.250e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.92771213392452 (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.27 us (1.6%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 367.78 us (95.0%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 25.33 us (95.0%)
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 | 8.1628e+05 | 262144 | 1 | 3.211e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.543571733449134 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6203279434854027, dt = 0.004687249717357094
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (1.7%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 364.37 us (94.6%)
LB move op cnt : 0
LB apply : 4.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (65.5%)
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.1610e+05 | 262144 | 1 | 3.212e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.532116052624765 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6250151932027598, dt = 0.004687249994582407
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (1.8%)
patch tree reduce : 1693.00 ns (0.5%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 353.18 us (94.3%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (71.5%)
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 | 8.1620e+05 | 262144 | 1 | 3.212e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.53863122674378 (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 : 5.65 us (1.5%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 356.94 us (94.8%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (67.8%)
Info: cfl dt = 0.0046872505513555615 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8665e+05 | 262144 | 1 | 3.332e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.636342883822195 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6343896934700302, dt = 0.0006103065299698507
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.6%)
patch tree reduce : 1653.00 ns (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 356.99 us (94.6%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (59.1%)
Info: cfl dt = 0.004687250597882413 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6972e+05 | 262144 | 1 | 3.406e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.451215577820789 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 71.610122961 (s) [Godunov][rank=0]
Reflective boundary conditions#
216 def run_case_reflective():
217 def set_bc_func(cfg):
218 cfg.set_boundary_condition("x", "reflective")
219 cfg.set_boundary_condition("y", "reflective")
220 cfg.set_boundary_condition("z", "reflective")
221
222 return run_case(set_bc_func, "reflective")
223
224
225 ani_reflective = run_case_reflective()
226 plt.show()
Info: pushing data in scheduler, N = 32768 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 43.44 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 : 27.53 us (85.5%)
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 : 2.19 us (0.4%)
patch tree reduce : 1883.00 ns (0.3%)
gen split merge : 802.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.2%)
LB compute : 611.42 us (97.6%)
LB move op cnt : 0
LB apply : 4.01 us (0.6%)
Info: patch count stable after 1 runs npatch = 1 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: time since start : 82.737216742 (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 : 10.62 us (2.2%)
patch tree reduce : 1533.00 ns (0.3%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 451.78 us (94.9%)
LB move op cnt : 0
LB apply : 3.86 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (69.8%)
Info: cfl dt = 0.004687031767311921 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 4.6850e+05 | 262144 | 1 | 5.595e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 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.57 us (1.6%)
patch tree reduce : 1703.00 ns (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.3%)
LB compute : 381.64 us (94.7%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (69.6%)
Info: cfl dt = 0.00468703492268262 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2453e+05 | 262144 | 1 | 4.197e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.19865863275856 (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 : 6.58 us (1.5%)
patch tree reduce : 1704.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.2%)
LB compute : 412.21 us (95.1%)
LB move op cnt : 0
LB apply : 4.09 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (72.4%)
Info: cfl dt = 0.004687039583988074 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.5438e+05 | 262144 | 1 | 4.006e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.12029844154742 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009374066689994541, dt = 0.004687039583988074
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (1.6%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.3%)
LB compute : 398.38 us (94.8%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (72.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 | 7.6721e+05 | 262144 | 1 | 3.417e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.38289781764937 (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.36 us (1.6%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 380.41 us (94.7%)
LB move op cnt : 0
LB apply : 4.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (74.3%)
Info: cfl dt = 0.004687053552588433 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7671e+05 | 262144 | 1 | 3.375e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.99451641681753 (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 (2.0%)
patch tree reduce : 1943.00 ns (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 345.66 us (93.8%)
LB move op cnt : 0
LB apply : 4.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (69.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 | 7.8263e+05 | 262144 | 1 | 3.350e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.37562656400875 (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.04 us (1.8%)
patch tree reduce : 1853.00 ns (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1413.00 ns (0.4%)
LB compute : 366.76 us (94.2%)
LB move op cnt : 0
LB apply : 4.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (70.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 | 7.5289e+05 | 262144 | 1 | 3.482e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.461102396367416 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028122268422600172, dt = 0.004687073438769337
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.41 us (2.1%)
patch tree reduce : 4.06 us (1.0%)
gen split merge : 1804.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1824.00 ns (0.4%)
LB compute : 380.41 us (93.1%)
LB move op cnt : 0
LB apply : 4.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (66.0%)
Info: cfl dt = 0.004687084324050356 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7966e+05 | 262144 | 1 | 3.362e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.18427149478916 (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.60 us (1.6%)
patch tree reduce : 2.18 us (0.5%)
gen split merge : 1152.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 379.70 us (94.5%)
LB move op cnt : 0
LB apply : 4.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (71.7%)
Info: cfl dt = 0.0046870856989237805 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8409e+05 | 262144 | 1 | 3.343e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.586819214399039 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 86.591387963 (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 : 10.55 us (2.6%)
patch tree reduce : 1542.00 ns (0.4%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 382.77 us (94.2%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (69.5%)
Info: cfl dt = 0.0046870967535173926 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8388e+05 | 262144 | 1 | 3.344e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.45637214954754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03810813833050273, dt = 0.0046870967535173926
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (1.6%)
patch tree reduce : 1964.00 ns (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 390.28 us (94.8%)
LB move op cnt : 0
LB apply : 4.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (72.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 | 6.6460e+05 | 262144 | 1 | 3.944e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.77854734631086 (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 : 6.75 us (1.7%)
patch tree reduce : 1873.00 ns (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 387.19 us (94.9%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (66.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 | 7.3711e+05 | 262144 | 1 | 3.556e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.44600852753862 (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 : 6.91 us (1.9%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 338.21 us (94.2%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (62.2%)
Info: cfl dt = 0.0046871347260923416 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6626e+05 | 262144 | 1 | 3.421e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.32223883351506 (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.32 us (1.6%)
patch tree reduce : 1773.00 ns (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 364.56 us (94.6%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (71.5%)
Info: cfl dt = 0.004687147322193695 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8149e+05 | 262144 | 1 | 3.354e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.303025681320015 (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.73 us (1.5%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 435.65 us (95.2%)
LB move op cnt : 0
LB apply : 4.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (71.8%)
Info: cfl dt = 0.004687158862014885 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9276e+05 | 262144 | 1 | 3.307e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.028388948676216 (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.18 us (1.8%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 378.92 us (94.4%)
LB move op cnt : 0
LB apply : 4.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 us (72.2%)
Info: cfl dt = 0.004687170703487903 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9177e+05 | 262144 | 1 | 3.311e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.965169195137086 (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.27 us (1.9%)
patch tree reduce : 1773.00 ns (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 368.54 us (94.6%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.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 | 7.9469e+05 | 262144 | 1 | 3.299e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.670223374645161 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 89.830187959 (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 : 10.50 us (2.7%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 541.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.3%)
LB compute : 360.50 us (93.8%)
LB move op cnt : 0
LB apply : 4.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (67.6%)
Info: cfl dt = 0.004687184264637751 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2493e+05 | 262144 | 1 | 3.616e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.6626957668454 (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.19 us (1.9%)
patch tree reduce : 2.06 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1021.00 ns (0.3%)
LB compute : 363.57 us (94.3%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (66.8%)
Info: cfl dt = 0.004687194877882526 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4771e+05 | 262144 | 1 | 3.506e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.12904221396682 (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.57 us (1.8%)
patch tree reduce : 1733.00 ns (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 344.62 us (94.2%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (68.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 | 7.8967e+05 | 262144 | 1 | 3.320e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.83006902831449 (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 : 6.94 us (1.7%)
patch tree reduce : 1733.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.3%)
LB compute : 391.39 us (94.9%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (71.3%)
Info: cfl dt = 0.004687215596431434 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6857e+05 | 262144 | 1 | 3.411e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.471880798641756 (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.04 us (1.8%)
patch tree reduce : 1863.00 ns (0.5%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 379.92 us (94.6%)
LB move op cnt : 0
LB apply : 4.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (72.0%)
Info: cfl dt = 0.004687224972613222 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6371e+05 | 262144 | 1 | 3.433e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.15921583462347 (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 : 6.89 us (2.0%)
patch tree reduce : 2.25 us (0.6%)
gen split merge : 1203.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 327.98 us (93.6%)
LB move op cnt : 0
LB apply : 4.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (67.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 | 7.8069e+05 | 262144 | 1 | 3.358e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.25234351493023 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09496530245944795, dt = 0.004687234139899544
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (1.8%)
patch tree reduce : 1704.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 337.19 us (94.0%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (69.0%)
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 | 6.8078e+05 | 262144 | 1 | 3.851e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.8214341184585 (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.53 us (1.9%)
patch tree reduce : 1904.00 ns (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 369.85 us (94.4%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (66.2%)
Info: cfl dt = 0.004687244709469211 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9126e+05 | 262144 | 1 | 3.313e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.635211433594164 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 93.07544141400001 (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 : 10.53 us (2.9%)
patch tree reduce : 1663.00 ns (0.5%)
gen split merge : 511.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 344.76 us (93.6%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (68.3%)
Info: cfl dt = 0.00468725401629642 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1212e+05 | 262144 | 1 | 3.681e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.838782299185574 (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.97 us (1.8%)
patch tree reduce : 2.34 us (0.6%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 364.80 us (94.2%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (68.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 | 7.4037e+05 | 262144 | 1 | 3.541e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.65718002151448 (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 (1.8%)
patch tree reduce : 2.42 us (0.7%)
gen split merge : 1172.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 330.36 us (93.8%)
LB move op cnt : 0
LB apply : 4.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (72.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 | 7.9396e+05 | 262144 | 1 | 3.302e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.10691262062705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11432491977198278, dt = 0.004687272009962846
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (1.6%)
patch tree reduce : 2.14 us (0.5%)
gen split merge : 1212.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 387.27 us (94.5%)
LB move op cnt : 0
LB apply : 4.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (69.1%)
Info: cfl dt = 0.004687277562290804 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9212e+05 | 262144 | 1 | 3.309e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.98859050958921 (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 : 6.94 us (1.8%)
patch tree reduce : 1964.00 ns (0.5%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 363.97 us (94.5%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (69.8%)
Info: cfl dt = 0.004687278885336313 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8577e+05 | 262144 | 1 | 3.336e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.58026128592071 (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.92 us (1.6%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.2%)
LB compute : 407.76 us (94.8%)
LB move op cnt : 0
LB apply : 4.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (71.6%)
Info: cfl dt = 0.004687278653859442 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9352e+05 | 262144 | 1 | 3.304e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.078655890502375 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12838674822957274, dt = 0.004687278653859442
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (1.6%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 402.03 us (94.9%)
LB move op cnt : 0
LB apply : 4.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (70.5%)
Info: cfl dt = 0.004687277538147369 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8379e+05 | 262144 | 1 | 3.345e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.45230573603008 (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.75 us (1.6%)
patch tree reduce : 1943.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 412.07 us (95.0%)
LB move op cnt : 0
LB apply : 4.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (72.1%)
Info: cfl dt = 0.004687277315053551 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9072e+05 | 262144 | 1 | 3.315e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.625946016321838 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 96.253140095 (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 : 10.43 us (2.5%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 391.74 us (94.3%)
LB move op cnt : 0
LB apply : 4.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.3%)
Info: cfl dt = 0.00468727536007883 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9086e+05 | 262144 | 1 | 3.794e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.47045332103541 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13837148784136935, dt = 0.00468727536007883
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (1.7%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 368.19 us (94.4%)
LB move op cnt : 0
LB apply : 4.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (73.3%)
Info: cfl dt = 0.004687273042053087 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3949e+05 | 262144 | 1 | 3.545e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.60070550442768 (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 : 6.75 us (1.7%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1153.00 ns (0.3%)
LB compute : 374.02 us (94.7%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (70.2%)
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 | 7.4271e+05 | 262144 | 1 | 3.530e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.8084570639736 (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.79 us (2.0%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 366.75 us (94.0%)
LB move op cnt : 0
LB apply : 4.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.66 us (70.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 | 7.3914e+05 | 262144 | 1 | 3.547e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.57829285995641 (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.43 us (1.7%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 358.14 us (94.6%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (73.6%)
Info: cfl dt = 0.004687264538808771 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9259e+05 | 262144 | 1 | 3.307e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.01884338325171 (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 : 6.46 us (1.9%)
patch tree reduce : 1653.00 ns (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1093.00 ns (0.3%)
LB compute : 325.44 us (94.0%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (68.3%)
Info: cfl dt = 0.004687261426463146 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8677e+05 | 262144 | 1 | 3.332e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.64425273554026 (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 : 6.80 us (1.7%)
patch tree reduce : 1813.00 ns (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 380.14 us (94.6%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (71.9%)
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 | 7.9425e+05 | 262144 | 1 | 3.301e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.125831709317005 (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.50 us (1.8%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1342.00 ns (0.4%)
LB compute : 340.08 us (94.2%)
LB move op cnt : 0
LB apply : 3.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (72.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 | 7.8629e+05 | 262144 | 1 | 3.334e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.588543522476969 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 99.725808833 (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 : 10.40 us (2.5%)
patch tree reduce : 1452.00 ns (0.4%)
gen split merge : 511.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 386.85 us (94.2%)
LB move op cnt : 0
LB apply : 4.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (68.4%)
Info: cfl dt = 0.004687255097017623 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8476e+05 | 262144 | 1 | 3.340e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.51443953922227 (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 : 6.92 us (1.8%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1372.00 ns (0.4%)
LB compute : 355.80 us (94.2%)
LB move op cnt : 0
LB apply : 4.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (68.1%)
Info: cfl dt = 0.004687252393857864 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9274e+05 | 262144 | 1 | 3.307e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.02859779714119 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17647977623817648, dt = 0.004687252393857864
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (1.8%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 1183.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 364.04 us (94.4%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (67.7%)
Info: cfl dt = 0.004687249890605385 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5628e+05 | 262144 | 1 | 3.466e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.68162704700412 (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 : 6.43 us (1.8%)
patch tree reduce : 1703.00 ns (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1332.00 ns (0.4%)
LB compute : 335.07 us (94.0%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (65.5%)
Info: cfl dt = 0.004687247551514999 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2153e+05 | 262144 | 1 | 3.633e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.444807893155705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18585427852263972, dt = 0.004687247551514999
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (1.8%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 378.85 us (94.8%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (67.4%)
Info: cfl dt = 0.004687245049989437 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2534e+05 | 262144 | 1 | 3.614e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.68968022930999 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19054152607415473, dt = 0.004687245049989437
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (1.7%)
patch tree reduce : 1684.00 ns (0.4%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.3%)
LB compute : 372.56 us (94.5%)
LB move op cnt : 0
LB apply : 4.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (69.3%)
Info: cfl dt = 0.0046872428002278175 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9316e+05 | 262144 | 1 | 3.305e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.05550302802672 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19522877112414416, dt = 0.0046872428002278175
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (1.5%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 396.02 us (94.9%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.9%)
Info: cfl dt = 0.004687240804705419 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6716e+05 | 262144 | 1 | 3.417e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.38188465565619 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19991601392437197, dt = 0.00061030186510172
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (1.6%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 1142.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 380.09 us (94.7%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (73.2%)
Info: cfl dt = 0.004687240571731558 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8343e+05 | 262144 | 1 | 3.346e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.56609291958445 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 102.939406692 (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 : 10.01 us (2.3%)
patch tree reduce : 1734.00 ns (0.4%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 411.19 us (94.8%)
LB move op cnt : 0
LB apply : 3.57 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (68.4%)
Info: cfl dt = 0.0046872388575527465 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6057e+05 | 262144 | 1 | 3.447e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.95767037927531 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20521355636120525, dt = 0.0046872388575527465
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.6%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 363.03 us (94.7%)
LB move op cnt : 0
LB apply : 4.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.48 us (75.0%)
Info: cfl dt = 0.004687237402627058 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8947e+05 | 262144 | 1 | 3.321e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.81780473196192 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20990079521875799, dt = 0.004687237402627058
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (1.6%)
patch tree reduce : 1754.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 379.60 us (94.6%)
LB move op cnt : 0
LB apply : 4.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.70 us (68.6%)
Info: cfl dt = 0.0046872362081496295 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3872e+05 | 262144 | 1 | 3.549e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.551285792036616 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21458803262138504, dt = 0.0046872362081496295
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (1.7%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 367.10 us (94.7%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (69.9%)
Info: cfl dt = 0.004687235271899179 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9168e+05 | 262144 | 1 | 3.311e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.95965588068028 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21927526882953466, dt = 0.004687235271899179
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (1.8%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 346.25 us (94.4%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (69.2%)
Info: cfl dt = 0.004687234588939458 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5210e+05 | 262144 | 1 | 3.486e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.41210496195136 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22396250410143384, dt = 0.004687234588939458
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (1.8%)
patch tree reduce : 1903.00 ns (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 347.67 us (94.3%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (71.6%)
Info: cfl dt = 0.004687234153226078 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9305e+05 | 262144 | 1 | 3.306e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.04782051908971 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2286497386903733, dt = 0.004687234153226078
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (1.8%)
patch tree reduce : 1733.00 ns (0.5%)
gen split merge : 1152.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 335.81 us (94.1%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (66.4%)
Info: cfl dt = 0.0046872339555697334 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8474e+05 | 262144 | 1 | 3.341e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.513040286881605 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2333369728435994, dt = 0.0006103955774532377
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (1.6%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 387.27 us (94.8%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (76.5%)
Info: cfl dt = 0.004687233951934075 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9663e+05 | 262144 | 1 | 3.291e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.677747173269412 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 106.14479406000001 (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 : 10.06 us (2.7%)
patch tree reduce : 1813.00 ns (0.5%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 343.90 us (93.6%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (66.7%)
Info: cfl dt = 0.004687234003255571 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8226e+05 | 262144 | 1 | 3.351e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.353527120009915 (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.47 us (1.6%)
patch tree reduce : 1944.00 ns (0.5%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 396.52 us (95.0%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (70.4%)
Info: cfl dt = 0.004687234265528239 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8854e+05 | 262144 | 1 | 3.324e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.75787862320125 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24332183637624227, dt = 0.004687234265528239
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.6%)
patch tree reduce : 1993.00 ns (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1053.00 ns (0.3%)
LB compute : 368.66 us (94.8%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (65.8%)
Info: cfl dt = 0.004687234832706693 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9300e+05 | 262144 | 1 | 3.306e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.04472485282574 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24800907064177052, dt = 0.004687234832706693
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.8%)
patch tree reduce : 1713.00 ns (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 334.17 us (94.2%)
LB move op cnt : 0
LB apply : 4.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (66.9%)
Info: cfl dt = 0.004687235687704397 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5327e+05 | 262144 | 1 | 3.480e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.487330943758074 (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 : 6.96 us (1.8%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 362.54 us (94.5%)
LB move op cnt : 0
LB apply : 4.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (71.3%)
Info: cfl dt = 0.004687236623163013 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8932e+05 | 262144 | 1 | 3.321e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.808204411254835 (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 : 6.91 us (1.9%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1253.00 ns (0.3%)
LB compute : 341.81 us (94.2%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (70.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 | 7.8876e+05 | 262144 | 1 | 3.324e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.771795700575005 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2620707777853446, dt = 0.0046872376461729245
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (1.9%)
patch tree reduce : 1783.00 ns (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 333.48 us (94.0%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (68.5%)
Info: cfl dt = 0.004687238807347736 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8618e+05 | 262144 | 1 | 3.334e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.60613141865401 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2667580154315175, dt = 0.0006104056211140851
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (1.8%)
patch tree reduce : 1714.00 ns (0.4%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 360.88 us (94.4%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (69.8%)
Info: cfl dt = 0.0046872389650835225 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9289e+05 | 262144 | 1 | 3.306e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.6465244326158865 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 109.28166058900001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.2673684210526316, dt = 0.0046872389650835225
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.19 us (2.5%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 581.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 379.09 us (94.3%)
LB move op cnt : 0
LB apply : 4.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.8%)
Info: cfl dt = 0.0046872403041024425 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9031e+05 | 262144 | 1 | 3.317e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.87155736859057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2720556600177151, dt = 0.0046872403041024425
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (1.5%)
patch tree reduce : 1903.00 ns (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1362.00 ns (0.3%)
LB compute : 399.69 us (94.8%)
LB move op cnt : 0
LB apply : 4.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.2%)
Info: cfl dt = 0.004687241856479034 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9025e+05 | 262144 | 1 | 3.317e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.867740940441884 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27674290032181753, dt = 0.004687241856479034
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (1.8%)
patch tree reduce : 1724.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 347.91 us (94.3%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (64.1%)
Info: cfl dt = 0.004687243623864012 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9351e+05 | 262144 | 1 | 3.304e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.077629129880684 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28143014217829654, dt = 0.004687243623864012
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (1.7%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 378.98 us (94.8%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (68.4%)
Info: cfl dt = 0.0046872455820328686 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4491e+05 | 262144 | 1 | 3.519e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.949648398775466 (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 : 6.51 us (1.9%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 325.92 us (93.7%)
LB move op cnt : 0
LB apply : 4.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (69.3%)
Info: cfl dt = 0.004687247703464963 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8415e+05 | 262144 | 1 | 3.343e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.475197643240364 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29080463138419343, dt = 0.004687247703464963
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (1.7%)
patch tree reduce : 1734.00 ns (0.5%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 362.80 us (94.5%)
LB move op cnt : 0
LB apply : 4.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (72.8%)
Info: cfl dt = 0.004687249783434021 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3780e+05 | 262144 | 1 | 3.553e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.49157095330852 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2954918790876584, dt = 0.004687249783434021
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (1.7%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 358.91 us (94.5%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (63.8%)
Info: cfl dt = 0.004687251720626629 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9894e+05 | 262144 | 1 | 3.281e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.42753174784901 (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 : 6.19 us (1.6%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 361.50 us (94.6%)
LB move op cnt : 0
LB apply : 4.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (72.6%)
Info: cfl dt = 0.004687252008098234 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0212e+05 | 262144 | 1 | 3.268e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.7232231743038975 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 112.43782658100001 (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 : 10.06 us (2.7%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 352.39 us (94.0%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.6%)
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 | 8.0539e+05 | 262144 | 1 | 3.255e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.84264253964303 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30547672569230877, dt = 0.0046872540735967095
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (1.8%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 362.60 us (94.7%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (67.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 | 7.7237e+05 | 262144 | 1 | 3.394e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.71744927903147 (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 : 6.64 us (1.7%)
patch tree reduce : 1874.00 ns (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 378.19 us (94.7%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (71.5%)
Info: cfl dt = 0.004687258340176443 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9255e+05 | 262144 | 1 | 3.308e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.015958177253815 (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 : 6.49 us (1.6%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 373.11 us (94.7%)
LB move op cnt : 0
LB apply : 4.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (71.1%)
Info: cfl dt = 0.004687260558129958 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9314e+05 | 262144 | 1 | 3.305e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.053992923031956 (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 : 5.98 us (1.6%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 365.04 us (94.9%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (64.1%)
Info: cfl dt = 0.004687262823120487 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8781e+05 | 262144 | 1 | 3.327e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.71134677019116 (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 : 6.26 us (1.5%)
patch tree reduce : 1783.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 395.73 us (95.2%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (69.6%)
Info: cfl dt = 0.004687265109719916 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9892e+05 | 262144 | 1 | 3.281e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.42632440467765 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3289130176673212, dt = 0.004687265109719916
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (1.8%)
patch tree reduce : 1663.00 ns (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 343.50 us (94.1%)
LB move op cnt : 0
LB apply : 4.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (68.9%)
Info: cfl dt = 0.004687267381699241 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4162e+05 | 262144 | 1 | 3.535e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.73761234295765 (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 : 6.81 us (1.9%)
patch tree reduce : 1713.00 ns (0.5%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 341.69 us (94.2%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (68.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 | 8.0517e+05 | 262144 | 1 | 3.256e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.747625555622359 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 115.55989971000001 (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 : 11.06 us (2.9%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 360.96 us (93.8%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (68.0%)
Info: cfl dt = 0.004687269882584073 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0402e+05 | 262144 | 1 | 3.260e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.75445622440202 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33889779400454645, dt = 0.004687269882584073
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.5%)
patch tree reduce : 2.09 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.2%)
LB compute : 407.67 us (95.2%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (67.2%)
Info: cfl dt = 0.004687271959592287 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0705e+05 | 262144 | 1 | 3.248e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.949910319901335 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3435850638871305, dt = 0.004687271959592287
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (1.7%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 366.08 us (94.7%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (69.3%)
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 | 8.0147e+05 | 262144 | 1 | 3.271e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.590647320043615 (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 : 6.52 us (1.7%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.3%)
LB compute : 357.22 us (94.4%)
LB move op cnt : 0
LB apply : 4.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.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 | 8.0253e+05 | 262144 | 1 | 3.266e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.6589944433683 (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.13 us (1.6%)
patch tree reduce : 1683.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 360.29 us (94.6%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (68.3%)
Info: cfl dt = 0.004687274442042877 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3969e+05 | 262144 | 1 | 3.544e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.61388907917305 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3576468830703232, dt = 0.004687274442042877
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (1.6%)
patch tree reduce : 1572.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 386.55 us (94.9%)
LB move op cnt : 0
LB apply : 4.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (70.2%)
Info: cfl dt = 0.0046872747079609155 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0058e+05 | 262144 | 1 | 3.742e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.09656617942462 (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.13 us (1.6%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 371.86 us (94.7%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (68.2%)
Info: cfl dt = 0.004687274697242561 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5155e+05 | 262144 | 1 | 3.488e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.37706261480351 (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.03 us (1.4%)
patch tree reduce : 1763.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 415.45 us (95.3%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (68.3%)
Info: cfl dt = 0.004687274684117941 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5477e+05 | 262144 | 1 | 3.473e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.324284587990327 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 118.74511234600001 (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 : 10.43 us (2.3%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 562.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 431.49 us (94.8%)
LB move op cnt : 0
LB apply : 3.76 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (71.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 | 6.6397e+05 | 262144 | 1 | 3.948e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.73971100610437 (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.41 us (1.4%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 431.07 us (95.5%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (68.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 | 7.8620e+05 | 262144 | 1 | 3.334e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.60733368692246 (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 : 5.76 us (1.3%)
patch tree reduce : 1583.00 ns (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 437.74 us (95.7%)
LB move op cnt : 0
LB apply : 4.24 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (65.2%)
Info: cfl dt = 0.0046872695373915835 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6172e+05 | 262144 | 1 | 3.441e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.031768910309985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38169339946409037, dt = 0.0046872695373915835
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.6%)
patch tree reduce : 1894.00 ns (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 363.68 us (94.7%)
LB move op cnt : 0
LB apply : 4.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (69.2%)
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 | 8.0154e+05 | 262144 | 1 | 3.270e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.59509999918513 (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 : 6.18 us (1.5%)
patch tree reduce : 1824.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 382.36 us (94.9%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (72.1%)
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 | 8.0240e+05 | 262144 | 1 | 3.267e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.65053141913646 (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 : 6.55 us (1.5%)
patch tree reduce : 1753.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 408.37 us (95.0%)
LB move op cnt : 0
LB apply : 4.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (69.9%)
Info: cfl dt = 0.004687260829759408 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9382e+05 | 262144 | 1 | 3.302e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.097724752412375 (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 : 5.76 us (1.5%)
patch tree reduce : 1803.00 ns (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 372.77 us (95.0%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.0%)
Info: cfl dt = 0.004687257654503339 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5486e+05 | 262144 | 1 | 3.473e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.590227768268846 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40044246068808825, dt = 0.0006101708908591297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (1.8%)
patch tree reduce : 1803.00 ns (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 353.93 us (94.3%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (71.1%)
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 | 8.0227e+05 | 262144 | 1 | 3.268e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.722595052012305 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 121.935611558 (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 : 10.51 us (2.7%)
patch tree reduce : 1873.00 ns (0.5%)
gen split merge : 511.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 362.40 us (93.8%)
LB move op cnt : 0
LB apply : 4.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.5%)
Info: cfl dt = 0.004687254145496255 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.4058e+05 | 262144 | 1 | 4.092e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.23404494452122 (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 : 6.25 us (1.7%)
patch tree reduce : 1703.00 ns (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 338.76 us (94.3%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (72.0%)
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 | 8.0063e+05 | 262144 | 1 | 3.274e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.5360514956622 (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 : 5.95 us (1.7%)
patch tree reduce : 2.21 us (0.6%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 336.44 us (94.2%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (66.6%)
Info: cfl dt = 0.00468724832261416 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8623e+05 | 262144 | 1 | 3.334e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.60922853084887 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41511439412796103, dt = 0.00468724832261416
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (1.0%)
patch tree reduce : 1683.00 ns (0.2%)
gen split merge : 1082.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.1%)
LB compute : 669.83 us (97.0%)
LB move op cnt : 0
LB apply : 3.92 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (70.2%)
Info: cfl dt = 0.004687245663721292 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5594e+05 | 262144 | 1 | 3.468e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.65962627086404 (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 : 6.45 us (1.8%)
patch tree reduce : 1813.00 ns (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 334.80 us (94.2%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (65.8%)
Info: cfl dt = 0.004687243050476522 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0952e+05 | 262144 | 1 | 3.695e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.671500429028605 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42448888811429647, dt = 0.004687243050476522
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (1.9%)
patch tree reduce : 1873.00 ns (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 342.26 us (94.3%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.9%)
Info: cfl dt = 0.004687240359628566 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8965e+05 | 262144 | 1 | 3.320e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.82918905147108 (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 : 6.57 us (1.9%)
patch tree reduce : 1713.00 ns (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 327.31 us (94.1%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (64.1%)
Info: cfl dt = 0.004687237800149439 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0308e+05 | 262144 | 1 | 3.264e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.69356803342546 (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.20 us (1.9%)
patch tree reduce : 1954.00 ns (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 359.37 us (94.2%)
LB move op cnt : 0
LB apply : 4.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (67.9%)
Info: cfl dt = 0.0046872374811259 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7780e+05 | 262144 | 1 | 3.370e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.519059170169428 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 125.180327218 (s) [Godunov][rank=0]
amr::Godunov: t = 0.43447368421052635, dt = 0.0046872374811259
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.68 us (2.2%)
patch tree reduce : 1793.00 ns (0.4%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 424.04 us (94.9%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (67.1%)
Info: cfl dt = 0.004687235103275107 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0298e+05 | 262144 | 1 | 3.265e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.68730435639651 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4391609216916522, dt = 0.004687235103275107
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (1.8%)
patch tree reduce : 1854.00 ns (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 337.30 us (94.2%)
LB move op cnt : 0
LB apply : 4.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (67.3%)
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 | 7.1365e+05 | 262144 | 1 | 3.673e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.93719842458542 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44384815679492734, dt = 0.00468723293138606
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (1.9%)
patch tree reduce : 1773.00 ns (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 348.73 us (94.3%)
LB move op cnt : 0
LB apply : 4.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.7%)
Info: cfl dt = 0.004687230999651152 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9692e+05 | 262144 | 1 | 3.289e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.297493170409254 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4485353897263134, dt = 0.004687230999651152
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (1.6%)
patch tree reduce : 1733.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 392.77 us (94.9%)
LB move op cnt : 0
LB apply : 4.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (69.0%)
Info: cfl dt = 0.004687229345943311 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0577e+05 | 262144 | 1 | 3.253e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.86717882006381 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45322262072596453, dt = 0.004687229345943311
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (1.7%)
patch tree reduce : 1854.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 379.21 us (94.7%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (65.5%)
Info: cfl dt = 0.004687227997326022 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1024e+05 | 262144 | 1 | 3.235e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.15440415346954 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4579098500719078, dt = 0.004687227997326022
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (1.8%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 349.54 us (94.5%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1974.00 ns (65.7%)
Info: cfl dt = 0.004687226985147303 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1162e+05 | 262144 | 1 | 3.230e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.24368757342906 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46259707806923384, dt = 0.004687226985147303
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (2.0%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 335.16 us (94.0%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.66 us (73.9%)
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 | 6.7779e+05 | 262144 | 1 | 3.868e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.628799124704614 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4672843050543811, dt = 0.0006104317877241305
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (1.8%)
patch tree reduce : 1703.00 ns (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 352.85 us (94.3%)
LB move op cnt : 0
LB apply : 4.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (68.8%)
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 | 8.0077e+05 | 262144 | 1 | 3.274e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.712882193350551 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 128.347104669 (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 : 11.17 us (3.0%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 501.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 349.77 us (93.6%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (67.8%)
Info: cfl dt = 0.0046872260246216164 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9650e+05 | 262144 | 1 | 3.291e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.27007758484398 (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 : 6.90 us (1.9%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 1272.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.3%)
LB compute : 349.00 us (93.8%)
LB move op cnt : 0
LB apply : 4.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (73.6%)
Info: cfl dt = 0.0046872260804308305 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8649e+05 | 262144 | 1 | 3.333e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.62602548599729 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47726918914445854, dt = 0.0046872260804308305
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (1.7%)
patch tree reduce : 1894.00 ns (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 375.56 us (94.7%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (69.6%)
Info: cfl dt = 0.004687225798335251 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9979e+05 | 262144 | 1 | 3.278e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.48190369876668 (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 : 6.52 us (1.8%)
patch tree reduce : 1814.00 ns (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 338.55 us (94.2%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (66.8%)
Info: cfl dt = 0.004687225288863646 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9423e+05 | 262144 | 1 | 3.301e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.12378849417966 (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 : 6.15 us (1.5%)
patch tree reduce : 1954.00 ns (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 403.38 us (95.1%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (68.1%)
Info: cfl dt = 0.004687225044433656 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0349e+05 | 262144 | 1 | 3.263e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.71981589936574 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4913308663120883, dt = 0.004687225044433656
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.6%)
patch tree reduce : 1824.00 ns (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 368.94 us (94.9%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1964.00 ns (64.5%)
Info: cfl dt = 0.004687225036305156 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9121e+05 | 262144 | 1 | 3.313e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.92943018178642 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4960180913565219, dt = 0.004687225036305156
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.7%)
patch tree reduce : 1923.00 ns (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 339.81 us (94.3%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.9%)
Info: cfl dt = 0.004687225236215675 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9985e+05 | 262144 | 1 | 3.277e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.48553900470592 (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 : 6.65 us (1.7%)
patch tree reduce : 1734.00 ns (0.5%)
gen split merge : 1232.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 361.00 us (94.5%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (72.0%)
Info: cfl dt = 0.004687225287887822 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0150e+05 | 262144 | 1 | 3.271e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.7194031841816555 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 131.439306166 (s) [Godunov][rank=0]
amr::Godunov: t = 0.5013157894736843, dt = 0.004687225287887822
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.47 us (2.9%)
patch tree reduce : 1733.00 ns (0.5%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 339.82 us (94.0%)
LB move op cnt : 0
LB apply : 3.19 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (75.8%)
Info: cfl dt = 0.0046872256875800855 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0149e+05 | 262144 | 1 | 3.271e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.59130322233021 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5060030147615721, dt = 0.0046872256875800855
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (1.5%)
patch tree reduce : 2.14 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 415.77 us (95.2%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (71.8%)
Info: cfl dt = 0.0046872262484317015 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9271e+05 | 262144 | 1 | 3.784e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.58915573373246 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5106902404491521, dt = 0.0046872262484317015
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (1.0%)
patch tree reduce : 1973.00 ns (0.3%)
gen split merge : 1152.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.1%)
LB compute : 669.86 us (96.9%)
LB move op cnt : 0
LB apply : 3.92 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (70.8%)
Info: cfl dt = 0.0046872269554267655 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9404e+05 | 262144 | 1 | 3.301e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.11179909311536 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5153774666975838, dt = 0.0046872269554267655
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.5%)
patch tree reduce : 1853.00 ns (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 375.78 us (94.7%)
LB move op cnt : 0
LB apply : 4.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (66.1%)
Info: cfl dt = 0.004687227765702979 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0365e+05 | 262144 | 1 | 3.262e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.730197986805685 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5200646936530106, dt = 0.004687227765702979
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (1.9%)
patch tree reduce : 1964.00 ns (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.3%)
LB compute : 348.27 us (94.3%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (65.7%)
Info: cfl dt = 0.004687228666571629 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0170e+05 | 262144 | 1 | 3.270e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.60471941369427 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5247519214187135, dt = 0.004687228666571629
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (1.7%)
patch tree reduce : 1954.00 ns (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 380.62 us (94.7%)
LB move op cnt : 0
LB apply : 4.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (71.3%)
Info: cfl dt = 0.004687229662310289 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9725e+05 | 262144 | 1 | 3.288e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.318132896275614 (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 : 6.46 us (1.7%)
patch tree reduce : 1863.00 ns (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 355.99 us (94.4%)
LB move op cnt : 0
LB apply : 4.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (69.1%)
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 | 8.0709e+05 | 262144 | 1 | 3.248e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.9517859506967 (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 : 6.91 us (2.0%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 327.83 us (93.8%)
LB move op cnt : 0
LB apply : 4.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (68.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 | 8.0497e+05 | 262144 | 1 | 3.257e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.748425113322435 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 134.563862747 (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 : 10.19 us (2.7%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.2%)
LB compute : 360.14 us (94.0%)
LB move op cnt : 0
LB apply : 4.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (68.2%)
Info: cfl dt = 0.0046872320873593545 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0357e+05 | 262144 | 1 | 3.726e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.288585228201505 (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 : 6.83 us (1.9%)
patch tree reduce : 1913.00 ns (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 345.98 us (94.2%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (71.7%)
Info: cfl dt = 0.00468723338604846 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4381e+05 | 262144 | 1 | 3.524e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.878299946480986 (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 : 6.32 us (1.6%)
patch tree reduce : 2.11 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 378.85 us (94.7%)
LB move op cnt : 0
LB apply : 4.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (69.6%)
Info: cfl dt = 0.0046872347721792565 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3000e+05 | 262144 | 1 | 3.591e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.98985862957441 (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 : 6.39 us (1.8%)
patch tree reduce : 1843.00 ns (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 342.93 us (94.5%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.2%)
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 | 8.0855e+05 | 262144 | 1 | 3.242e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.046053792636656 (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 : 6.27 us (1.6%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 363.09 us (94.5%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (67.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 | 7.6237e+05 | 262144 | 1 | 3.439e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.0734367732562 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5581730094581863, dt = 0.004687237682171254
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.09 us (2.0%)
patch tree reduce : 1954.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 335.46 us (93.8%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.2%)
Info: cfl dt = 0.004687239153526117 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0149e+05 | 262144 | 1 | 3.271e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.59168208776067 (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 : 6.70 us (1.7%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 368.96 us (94.8%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (68.4%)
Info: cfl dt = 0.004687240606237432 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9927e+05 | 262144 | 1 | 3.280e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.44843907891266 (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.21 us (1.9%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1372.00 ns (0.4%)
LB compute : 363.31 us (94.1%)
LB move op cnt : 0
LB apply : 4.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (72.7%)
Info: cfl dt = 0.00468724079437596 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5545e+05 | 262144 | 1 | 3.470e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.332733416266129 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 137.77995869 (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 : 10.39 us (2.8%)
patch tree reduce : 1734.00 ns (0.5%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 351.35 us (93.9%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (66.6%)
Info: cfl dt = 0.00468724219788657 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6153e+05 | 262144 | 1 | 3.442e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.0192279055216 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5728451355312181, dt = 0.00468724219788657
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (1.9%)
patch tree reduce : 2.21 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 350.08 us (94.3%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (65.9%)
Info: cfl dt = 0.0046872435445451995 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8980e+05 | 262144 | 1 | 3.319e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.8389192231485 (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 : 6.57 us (1.8%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 342.71 us (94.3%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.12 us (71.1%)
Info: cfl dt = 0.00468724482298513 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6700e+05 | 262144 | 1 | 3.418e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.37135780655799 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5822196212736498, dt = 0.00468724482298513
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.6%)
patch tree reduce : 1914.00 ns (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 366.59 us (94.7%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (67.2%)
Info: cfl dt = 0.004687246026634213 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9989e+05 | 262144 | 1 | 3.277e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.48826962648744 (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 : 6.28 us (1.6%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 368.51 us (94.6%)
LB move op cnt : 0
LB apply : 4.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (69.2%)
Info: cfl dt = 0.004687247152643582 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9325e+05 | 262144 | 1 | 3.305e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.06093300070757 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5915941121232691, dt = 0.004687247152643582
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (1.7%)
patch tree reduce : 1944.00 ns (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 354.98 us (94.5%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (69.0%)
Info: cfl dt = 0.004687248200677837 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8964e+05 | 262144 | 1 | 3.320e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.828969573784896 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5962813592759126, dt = 0.004687248200677837
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (1.7%)
patch tree reduce : 1743.00 ns (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 365.23 us (94.5%)
LB move op cnt : 0
LB apply : 4.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (67.2%)
Info: cfl dt = 0.004687249172737288 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1811e+05 | 262144 | 1 | 3.650e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.224567270334454 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6009686074765904, dt = 0.0006103398918306802
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (1.8%)
patch tree reduce : 1953.00 ns (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 352.29 us (94.4%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.8%)
Info: cfl dt = 0.004687249297870255 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9376e+05 | 262144 | 1 | 3.303e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.6530598659295315 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 140.943437413 (s) [Godunov][rank=0]
amr::Godunov: t = 0.6015789473684211, dt = 0.004687249297870255
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.80 us (2.8%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 356.29 us (93.7%)
LB move op cnt : 0
LB apply : 4.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.9%)
Info: cfl dt = 0.00468725018521409 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9675e+05 | 262144 | 1 | 3.290e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.286184121087686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6062661966662913, dt = 0.00468725018521409
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (1.8%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 342.10 us (94.1%)
LB move op cnt : 0
LB apply : 4.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.56 us (69.9%)
Info: cfl dt = 0.004687251006990297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3442e+05 | 262144 | 1 | 3.569e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.274213297783476 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6109534468515054, dt = 0.004687251006990297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.08 us (1.8%)
patch tree reduce : 1983.00 ns (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1091.00 ns (0.3%)
LB compute : 362.62 us (94.3%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (73.4%)
Info: cfl dt = 0.004687251769234126 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1438e+05 | 262144 | 1 | 3.670e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.984254201742694 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6156406978584957, dt = 0.004687251769234126
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (1.8%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 362.54 us (94.4%)
LB move op cnt : 0
LB apply : 4.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (67.3%)
Info: cfl dt = 0.004687252477182126 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3954e+05 | 262144 | 1 | 3.545e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.60359344900384 (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.31 us (2.0%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 341.45 us (93.8%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (70.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 | 8.0327e+05 | 262144 | 1 | 3.263e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.70625405767879 (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 : 6.54 us (1.5%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 406.62 us (95.1%)
LB move op cnt : 0
LB apply : 4.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (68.8%)
Info: cfl dt = 0.004687253747326559 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9641e+05 | 262144 | 1 | 3.292e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.264890823022164 (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 : 6.36 us (1.7%)
patch tree reduce : 1773.00 ns (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 360.98 us (94.4%)
LB move op cnt : 0
LB apply : 4.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (73.5%)
Info: cfl dt = 0.0046872543157465635 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9142e+05 | 262144 | 1 | 3.312e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.94322676217912 (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 : 6.58 us (1.5%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.2%)
LB compute : 403.93 us (94.8%)
LB move op cnt : 0
LB apply : 4.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (69.9%)
Info: cfl dt = 0.0046872543927052104 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9704e+05 | 262144 | 1 | 3.289e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.680072223753568 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 144.12584301500002 (s) [Godunov][rank=0]
Outflow boundary conditions#
233 def run_case_outflow():
234 def set_bc_func(cfg):
235 cfg.set_boundary_condition("x", "outflow")
236 cfg.set_boundary_condition("y", "outflow")
237 cfg.set_boundary_condition("z", "outflow")
238
239 return run_case(set_bc_func, "outflow")
240
241
242 ani_outflow = run_case_outflow()
243 plt.show()
Info: pushing data in scheduler, N = 32768 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 42.93 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.97 us (61.9%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (0.4%)
patch tree reduce : 2.00 us (0.4%)
gen split merge : 781.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1493.00 ns (0.3%)
LB compute : 532.64 us (97.4%)
LB move op cnt : 0
LB apply : 3.39 us (0.6%)
Info: patch count stable after 1 runs npatch = 1 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: time since start : 155.468246351 (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 : 9.80 us (2.7%)
patch tree reduce : 1703.00 ns (0.5%)
gen split merge : 551.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 347.34 us (94.0%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (66.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 | 4.8623e+05 | 262144 | 1 | 5.391e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 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.05 us (2.0%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 330.49 us (94.1%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (71.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 | 7.0825e+05 | 262144 | 1 | 3.701e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.587761961960524 (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.18 us (1.8%)
patch tree reduce : 1293.00 ns (0.3%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1382.00 ns (0.3%)
LB compute : 384.02 us (94.6%)
LB move op cnt : 0
LB apply : 4.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (68.6%)
Info: cfl dt = 0.004687039583988074 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1723e+05 | 262144 | 1 | 3.655e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.165727877659855 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009374066689994541, dt = 0.004687039583988074
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (1.9%)
patch tree reduce : 1653.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 338.00 us (94.1%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (63.2%)
Info: cfl dt = 0.004687045796397419 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4987e+05 | 262144 | 1 | 3.496e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.26683598369008 (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.22 us (1.1%)
patch tree reduce : 1693.00 ns (0.2%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.1%)
LB compute : 664.75 us (96.7%)
LB move op cnt : 0
LB apply : 4.81 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.70 us (71.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 | 7.9781e+05 | 262144 | 1 | 3.286e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.35225122293644 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018748152070380032, dt = 0.004687053552588433
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (1.8%)
patch tree reduce : 1383.00 ns (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 345.66 us (94.2%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (64.1%)
Info: cfl dt = 0.004687062799631708 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9250e+05 | 262144 | 1 | 3.308e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.01058291627828 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023435205622968466, dt = 0.004687062799631708
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (1.7%)
patch tree reduce : 1382.00 ns (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1103.00 ns (0.3%)
LB compute : 374.29 us (94.8%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (65.9%)
Info: cfl dt = 0.004687073438769337 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9705e+05 | 262144 | 1 | 3.289e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.30379209116768 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028122268422600172, dt = 0.004687073438769337
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (1.6%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.3%)
LB compute : 414.24 us (95.0%)
LB move op cnt : 0
LB apply : 4.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (61.9%)
Info: cfl dt = 0.004687084324050356 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3370e+05 | 262144 | 1 | 3.573e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.2264364293602 (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.37 us (1.5%)
patch tree reduce : 1473.00 ns (0.3%)
gen split merge : 1002.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 418.36 us (95.2%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (71.5%)
Info: cfl dt = 0.0046870856989237875 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7620e+05 | 262144 | 1 | 3.377e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.520550769374791 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 159.242266911 (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 : 11.41 us (2.7%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 402.27 us (94.2%)
LB move op cnt : 0
LB apply : 4.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (65.3%)
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 | 7.9114e+05 | 262144 | 1 | 3.313e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.92370153688258 (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 : 6.65 us (1.7%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 359.83 us (94.5%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (67.5%)
Info: cfl dt = 0.004687108731815825 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4254e+05 | 262144 | 1 | 3.530e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.79528655629637 (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 : 29.00 us (6.5%)
patch tree reduce : 1493.00 ns (0.3%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 399.90 us (90.2%)
LB move op cnt : 0
LB apply : 3.74 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.70 us (70.8%)
Info: cfl dt = 0.0046871214564712434 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5711e+05 | 262144 | 1 | 3.462e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.733245406320385 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.047482343815835895, dt = 0.0046871214564712434
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (1.5%)
patch tree reduce : 1674.00 ns (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1133.00 ns (0.3%)
LB compute : 415.83 us (95.0%)
LB move op cnt : 0
LB apply : 4.12 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (69.1%)
Info: cfl dt = 0.004687134726100412 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8142e+05 | 262144 | 1 | 3.355e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.297993231458186 (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 : 6.40 us (1.8%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 337.66 us (94.1%)
LB move op cnt : 0
LB apply : 4.16 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (71.2%)
Info: cfl dt = 0.00468714732219676 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0093e+05 | 262144 | 1 | 3.273e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.55428456614087 (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.43 us (1.9%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 366.90 us (94.4%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (70.0%)
Info: cfl dt = 0.004687158862027651 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1167e+05 | 262144 | 1 | 3.684e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.80873624487734 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06154374732060431, dt = 0.004687158862027651
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.17 us (1.6%)
patch tree reduce : 1513.00 ns (0.3%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 415.29 us (95.0%)
LB move op cnt : 0
LB apply : 4.14 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (72.2%)
Info: cfl dt = 0.004687170703505907 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7724e+05 | 262144 | 1 | 3.373e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.02986282170996 (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.03 us (1.6%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 404.20 us (94.6%)
LB move op cnt : 0
LB apply : 4.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (69.6%)
Info: cfl dt = 0.004687172273848947 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9229e+05 | 262144 | 1 | 3.309e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.6501595880921345 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 162.51142374300002 (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 : 10.76 us (2.6%)
patch tree reduce : 1884.00 ns (0.5%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 393.44 us (94.2%)
LB move op cnt : 0
LB apply : 4.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (67.9%)
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 | 7.8864e+05 | 262144 | 1 | 3.324e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.76340605656189 (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 : 6.64 us (1.8%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 346.47 us (94.3%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (69.3%)
Info: cfl dt = 0.004687194877902073 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7893e+05 | 262144 | 1 | 3.365e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.13872575040669 (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 : 6.34 us (1.6%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 374.69 us (94.9%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (64.7%)
Info: cfl dt = 0.004687205210876668 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9574e+05 | 262144 | 1 | 3.294e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.220870598352896 (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 : 6.67 us (1.7%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 361.74 us (94.4%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (66.1%)
Info: cfl dt = 0.004687215596322306 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9802e+05 | 262144 | 1 | 3.285e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.36792876494814 (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.23 us (2.0%)
patch tree reduce : 1612.00 ns (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 337.83 us (93.9%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (69.8%)
Info: cfl dt = 0.004687224972607936 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3994e+05 | 262144 | 1 | 3.543e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.629273541509654 (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.50 us (1.8%)
patch tree reduce : 1783.00 ns (0.4%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1093.00 ns (0.3%)
LB compute : 389.59 us (94.4%)
LB move op cnt : 0
LB apply : 4.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (71.6%)
Info: cfl dt = 0.004687234139813099 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8900e+05 | 262144 | 1 | 3.322e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.78727499112246 (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 : 6.24 us (1.5%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 382.61 us (94.9%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (63.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 | 7.2752e+05 | 262144 | 1 | 3.603e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.83021878708746 (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.36 us (2.0%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1021.00 ns (0.3%)
LB compute : 356.50 us (94.5%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.4%)
Info: cfl dt = 0.004687244709195358 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7435e+05 | 262144 | 1 | 3.385e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.493353203280638 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 165.695896642 (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 : 11.07 us (3.0%)
patch tree reduce : 1413.00 ns (0.4%)
gen split merge : 521.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 349.39 us (93.6%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (67.4%)
Info: cfl dt = 0.0046872540158263845 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4563e+05 | 262144 | 1 | 3.516e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.995948520553995 (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 : 6.29 us (1.6%)
patch tree reduce : 1923.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 361.04 us (94.6%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (68.6%)
Info: cfl dt = 0.0046872631509583115 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7400e+05 | 262144 | 1 | 3.387e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.82231193155548 (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.18 us (2.0%)
patch tree reduce : 1883.00 ns (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 336.36 us (93.8%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (68.9%)
Info: cfl dt = 0.004687272009818557 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6392e+05 | 262144 | 1 | 3.432e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.17313001354112 (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.58 us (1.7%)
patch tree reduce : 1974.00 ns (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 370.31 us (94.5%)
LB move op cnt : 0
LB apply : 4.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (69.7%)
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 | 7.9585e+05 | 262144 | 1 | 3.294e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.22878929057659 (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.28 us (2.0%)
patch tree reduce : 1793.00 ns (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 339.84 us (94.0%)
LB move op cnt : 0
LB apply : 4.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (70.6%)
Info: cfl dt = 0.00468727883839167 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2182e+05 | 262144 | 1 | 3.632e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.463608717539095 (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 : 6.74 us (1.9%)
patch tree reduce : 1673.00 ns (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 337.45 us (94.0%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (69.4%)
Info: cfl dt = 0.004687278815191258 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3631e+05 | 262144 | 1 | 3.560e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.396133195260624 (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.14 us (2.0%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 344.87 us (94.2%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (69.1%)
Info: cfl dt = 0.004687277853693368 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9644e+05 | 262144 | 1 | 3.291e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.26674790038642 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1330740269728221, dt = 0.0006101835534936817
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (1.6%)
patch tree reduce : 1944.00 ns (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1372.00 ns (0.3%)
LB compute : 405.01 us (95.0%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (66.7%)
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 | 7.9968e+05 | 262144 | 1 | 3.278e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.701020825801159 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 168.89101497500002 (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 : 11.27 us (2.5%)
patch tree reduce : 1554.00 ns (0.3%)
gen split merge : 492.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 425.70 us (94.6%)
LB move op cnt : 0
LB apply : 3.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (68.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 | 6.5795e+05 | 262144 | 1 | 3.984e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.35220738170529 (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 : 6.56 us (1.5%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 416.46 us (95.2%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (67.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 | 7.3826e+05 | 262144 | 1 | 3.551e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.52191358182492 (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.20 us (1.8%)
patch tree reduce : 2.04 us (0.5%)
gen split merge : 1113.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 370.36 us (94.3%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (67.6%)
Info: cfl dt = 0.004687271043913159 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5845e+05 | 262144 | 1 | 3.456e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.82160435238414 (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.80 us (1.6%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 411.44 us (95.0%)
LB move op cnt : 0
LB apply : 4.01 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (63.9%)
Info: cfl dt = 0.004687268133590759 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9102e+05 | 262144 | 1 | 3.314e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.91778351266806 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15243330863013718, dt = 0.004687268133590759
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (1.5%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 408.65 us (95.2%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (62.9%)
Info: cfl dt = 0.004687264995197426 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9383e+05 | 262144 | 1 | 3.302e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.09881152374274 (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 : 6.46 us (1.6%)
patch tree reduce : 1863.00 ns (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 385.69 us (94.8%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (70.4%)
Info: cfl dt = 0.004687261750573139 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9499e+05 | 262144 | 1 | 3.297e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.17355466630062 (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 : 6.70 us (1.8%)
patch tree reduce : 1703.00 ns (0.5%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.3%)
LB compute : 352.86 us (94.2%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (69.6%)
Info: cfl dt = 0.004687258459236708 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9258e+05 | 262144 | 1 | 3.307e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.01809616947126 (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.02 us (1.8%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 345.27 us (89.1%)
LB move op cnt : 0
LB apply : 24.85 us (6.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (68.6%)
Info: cfl dt = 0.004687258025241743 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6447e+05 | 262144 | 1 | 3.429e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.405660277024834 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 172.11662462200002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.16710526315789476, dt = 0.004687258025241743
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.97 us (3.0%)
patch tree reduce : 1703.00 ns (0.5%)
gen split merge : 531.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 345.22 us (93.4%)
LB move op cnt : 0
LB apply : 4.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.9%)
Info: cfl dt = 0.004687254728528215 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9220e+05 | 262144 | 1 | 3.309e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.993673187895766 (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 : 6.69 us (1.7%)
patch tree reduce : 1653.00 ns (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 381.10 us (94.7%)
LB move op cnt : 0
LB apply : 4.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (68.6%)
Info: cfl dt = 0.0046872514675434405 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9434e+05 | 262144 | 1 | 3.300e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.13144854507804 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17647977591166472, dt = 0.0046872514675434405
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (1.5%)
patch tree reduce : 1973.00 ns (0.5%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.3%)
LB compute : 414.93 us (95.0%)
LB move op cnt : 0
LB apply : 4.11 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (74.6%)
Info: cfl dt = 0.004687248284205799 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8232e+05 | 262144 | 1 | 3.842e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.9208481164272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18116702737920817, dt = 0.004687248284205799
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (1.8%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1343.00 ns (0.4%)
LB compute : 339.93 us (94.4%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (68.9%)
Info: cfl dt = 0.004687245244679332 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2861e+05 | 262144 | 1 | 3.598e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.900606139132016 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18585427566341398, dt = 0.004687245244679332
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (1.6%)
patch tree reduce : 1614.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1033.00 ns (0.3%)
LB compute : 387.11 us (94.8%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (68.9%)
Info: cfl dt = 0.004687242406032967 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9589e+05 | 262144 | 1 | 3.294e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.23136389230295 (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 : 7.14 us (1.8%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 379.08 us (94.7%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (67.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 | 7.9391e+05 | 262144 | 1 | 3.302e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.10361299752043 (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 : 6.83 us (1.7%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 383.05 us (94.7%)
LB move op cnt : 0
LB apply : 4.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (69.6%)
Info: cfl dt = 0.004687237457519584 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8665e+05 | 262144 | 1 | 3.332e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.63591708489772 (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 : 6.94 us (1.1%)
patch tree reduce : 1643.00 ns (0.3%)
gen split merge : 872.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 601.25 us (96.5%)
LB move op cnt : 0
LB apply : 4.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (70.6%)
Info: cfl dt = 0.004687237170120137 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2464e+05 | 262144 | 1 | 3.618e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.073499367168769 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 175.349385358 (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 : 10.45 us (2.8%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1173.00 ns (0.3%)
LB compute : 355.20 us (93.8%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.8%)
Info: cfl dt = 0.004687235109279648 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.5753e+05 | 262144 | 1 | 3.987e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.32487826420958 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20521355295959381, dt = 0.004687235109279648
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (1.7%)
patch tree reduce : 1813.00 ns (0.5%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 371.50 us (94.2%)
LB move op cnt : 0
LB apply : 4.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (69.1%)
Info: cfl dt = 0.0046872333014249465 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1172e+05 | 262144 | 1 | 3.229e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.25014744557424 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20990078806887347, dt = 0.0046872333014249465
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (1.7%)
patch tree reduce : 2.07 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 383.49 us (94.7%)
LB move op cnt : 0
LB apply : 4.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (67.9%)
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 | 7.3086e+05 | 262144 | 1 | 3.587e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.04509147644602 (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 : 6.25 us (1.8%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1472.00 ns (0.4%)
LB compute : 322.30 us (94.0%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (65.8%)
Info: cfl dt = 0.0046872304336901755 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3476e+05 | 262144 | 1 | 3.568e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.29609333648604 (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 : 6.33 us (0.9%)
patch tree reduce : 1914.00 ns (0.3%)
gen split merge : 832.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.2%)
LB compute : 690.74 us (96.9%)
LB move op cnt : 0
LB apply : 4.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (71.9%)
Info: cfl dt = 0.004687229130527639 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8362e+05 | 262144 | 1 | 3.345e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.44130734099163 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22396248354897602, dt = 0.004687229130527639
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.6%)
patch tree reduce : 1793.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 382.49 us (94.9%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (62.7%)
Info: cfl dt = 0.004687227967748961 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3559e+05 | 262144 | 1 | 3.564e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.34945384811565 (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.09 us (1.9%)
patch tree reduce : 2.28 us (0.6%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 349.95 us (94.1%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.4%)
Info: cfl dt = 0.004687227024804059 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5153e+05 | 262144 | 1 | 3.488e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.37527404505045 (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 : 15.29 us (4.1%)
patch tree reduce : 1823.00 ns (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 339.14 us (91.7%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (67.4%)
Info: cfl dt = 0.004687226930227163 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0559e+05 | 262144 | 1 | 3.715e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.914905690234041 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 178.68408287900002 (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 : 10.93 us (2.9%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 521.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 354.07 us (93.8%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (66.2%)
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 | 8.0336e+05 | 262144 | 1 | 3.263e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.7119971241422 (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.65 us (1.8%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1432.00 ns (0.3%)
LB compute : 394.36 us (94.7%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.4%)
Info: cfl dt = 0.004687225659178208 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6123e+05 | 262144 | 1 | 3.444e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.0001120627757 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2433218215564757, dt = 0.004687225659178208
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.00 us (1.8%)
patch tree reduce : 1784.00 ns (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 363.15 us (94.5%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (72.4%)
Info: cfl dt = 0.00468722526894616 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5629e+05 | 262144 | 1 | 3.466e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.68182310784337 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2480090472156539, dt = 0.00468722526894616
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (1.7%)
patch tree reduce : 1853.00 ns (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 380.83 us (94.7%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (72.6%)
Info: cfl dt = 0.004687225011719952 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3276e+05 | 262144 | 1 | 3.578e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.16697303107827 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2526962724846, dt = 0.004687225011719952
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.00 us (1.7%)
patch tree reduce : 1834.00 ns (0.5%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1393.00 ns (0.3%)
LB compute : 381.53 us (94.4%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.8%)
Info: cfl dt = 0.00468722486560278 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1336e+05 | 262144 | 1 | 3.675e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.918394202196424 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.25738349749632, dt = 0.00468722486560278
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (1.7%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1372.00 ns (0.4%)
LB compute : 364.71 us (94.4%)
LB move op cnt : 0
LB apply : 4.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (68.8%)
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 | 8.0207e+05 | 262144 | 1 | 3.268e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.628800115113144 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2620707223619228, dt = 0.00468722481046233
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (1.8%)
patch tree reduce : 1793.00 ns (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1283.00 ns (0.3%)
LB compute : 356.84 us (94.4%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (68.9%)
Info: cfl dt = 0.004687224828089685 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5669e+05 | 262144 | 1 | 3.464e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.70757187237705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26675794717238516, dt = 0.0006104738802464316
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (1.7%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 378.59 us (94.7%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (72.4%)
Info: cfl dt = 0.004687224846767481 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7536e+05 | 262144 | 1 | 3.381e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.500304966278525 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 181.906861792 (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 : 11.05 us (2.9%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 354.77 us (93.5%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (68.9%)
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 | 6.7311e+05 | 262144 | 1 | 3.894e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.32788909244403 (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 : 6.90 us (1.9%)
patch tree reduce : 1773.00 ns (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 339.84 us (94.0%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 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 | 7.6208e+05 | 262144 | 1 | 3.440e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.054426097619974 (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 : 6.47 us (1.7%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 1132.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 367.01 us (94.5%)
LB move op cnt : 0
LB apply : 4.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (64.7%)
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 | 8.0050e+05 | 262144 | 1 | 3.275e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.52735253436337 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28143009586296247, dt = 0.0046872251953953056
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (1.6%)
patch tree reduce : 1783.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.3%)
LB compute : 395.42 us (94.9%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (58.1%)
Info: cfl dt = 0.00468722537310903 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4159e+05 | 262144 | 1 | 3.535e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.73582673995662 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2861173210583578, dt = 0.00468722537310903
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (1.9%)
patch tree reduce : 1843.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1533.00 ns (0.4%)
LB compute : 338.83 us (94.2%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (69.2%)
Info: cfl dt = 0.004687225565819209 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6110e+05 | 262144 | 1 | 3.444e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.99165689597481 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2908045464314668, dt = 0.004687225565819209
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (1.9%)
patch tree reduce : 1774.00 ns (0.5%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1091.00 ns (0.3%)
LB compute : 338.38 us (94.0%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (66.2%)
Info: cfl dt = 0.004687225765678851 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3051e+05 | 262144 | 1 | 3.589e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.02235925785603 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.295491771997286, dt = 0.004687225765678851
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.41 us (1.1%)
patch tree reduce : 1954.00 ns (0.3%)
gen split merge : 822.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.1%)
LB compute : 677.85 us (96.8%)
LB move op cnt : 0
LB apply : 4.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (72.8%)
Info: cfl dt = 0.004687225965046479 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2339e+05 | 262144 | 1 | 3.624e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.564282012935855 (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.01 us (2.1%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.3%)
LB compute : 357.55 us (94.1%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (67.7%)
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 | 8.0643e+05 | 262144 | 1 | 3.251e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.760790572546692 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 185.177253056 (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 : 10.63 us (2.6%)
patch tree reduce : 1482.00 ns (0.4%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 382.86 us (94.2%)
LB move op cnt : 0
LB apply : 4.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (66.9%)
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 | 8.0679e+05 | 262144 | 1 | 3.249e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.93265593893783 (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.27 us (1.5%)
patch tree reduce : 1803.00 ns (0.4%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.2%)
LB compute : 402.90 us (95.1%)
LB move op cnt : 0
LB apply : 4.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (72.7%)
Info: cfl dt = 0.004687226362701969 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9895e+05 | 262144 | 1 | 3.281e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.427722243753884 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31016392587803654, dt = 0.004687226362701969
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (1.7%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 360.61 us (94.3%)
LB move op cnt : 0
LB apply : 4.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (74.9%)
Info: cfl dt = 0.0046872265207550425 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0809e+05 | 262144 | 1 | 3.244e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.01584849348219 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3148511522407385, dt = 0.0046872265207550425
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (2.0%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 335.23 us (94.0%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (67.2%)
Info: cfl dt = 0.004687226660709118 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0870e+05 | 262144 | 1 | 3.242e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.05564006352927 (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 : 6.73 us (1.5%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 429.85 us (95.2%)
LB move op cnt : 0
LB apply : 4.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (71.8%)
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 | 8.0692e+05 | 262144 | 1 | 3.249e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.94081846017425 (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 : 6.87 us (1.7%)
patch tree reduce : 1793.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 386.93 us (94.7%)
LB move op cnt : 0
LB apply : 4.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (73.0%)
Info: cfl dt = 0.004687226878097714 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1301e+05 | 262144 | 1 | 3.224e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.33275805342364 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32891283220261486, dt = 0.004687226878097714
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (1.6%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 366.51 us (94.4%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.7%)
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 | 8.1132e+05 | 262144 | 1 | 3.231e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.2239181276346 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33360005908071255, dt = 0.0006104672350769613
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (1.9%)
patch tree reduce : 1704.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.3%)
LB compute : 331.35 us (93.9%)
LB move op cnt : 0
LB apply : 4.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (66.5%)
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 | 8.0329e+05 | 262144 | 1 | 3.263e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.7344065377549125 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 188.241635059 (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 : 10.46 us (2.7%)
patch tree reduce : 1753.00 ns (0.5%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 360.97 us (93.9%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.2%)
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 | 8.0323e+05 | 262144 | 1 | 3.264e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.7031221012157 (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 : 6.32 us (1.5%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 410.08 us (95.1%)
LB move op cnt : 0
LB apply : 4.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (67.7%)
Info: cfl dt = 0.004687227041806154 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7967e+05 | 262144 | 1 | 3.362e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.186704570786624 (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.76 us (1.6%)
patch tree reduce : 1984.00 ns (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 393.67 us (94.9%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (69.6%)
Info: cfl dt = 0.004687227047887924 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1456e+05 | 262144 | 1 | 3.218e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.43249405830566 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.34827220735159264, dt = 0.004687227047887924
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.7%)
patch tree reduce : 1814.00 ns (0.5%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 344.08 us (94.5%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (66.7%)
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 | 8.0121e+05 | 262144 | 1 | 3.272e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.573602305305634 (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 : 6.89 us (1.6%)
patch tree reduce : 1874.00 ns (0.4%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 413.35 us (95.0%)
LB move op cnt : 0
LB apply : 4.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (73.7%)
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 | 8.1315e+05 | 262144 | 1 | 3.224e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.34186637255454 (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 : 6.53 us (1.4%)
patch tree reduce : 1583.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 435.71 us (95.4%)
LB move op cnt : 0
LB apply : 4.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (65.3%)
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 | 8.0363e+05 | 262144 | 1 | 3.262e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.72926583531355 (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 : 6.84 us (1.7%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1353.00 ns (0.3%)
LB compute : 383.51 us (94.7%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (67.7%)
Info: cfl dt = 0.004687226986761982 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9118e+05 | 262144 | 1 | 3.313e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.927848093958794 (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.31 us (1.8%)
patch tree reduce : 1683.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 383.22 us (94.6%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (69.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 | 8.0664e+05 | 262144 | 1 | 3.250e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.762430056425503 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 191.352194042 (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 : 11.02 us (2.8%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 375.51 us (94.1%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (68.6%)
Info: cfl dt = 0.00468722698344532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0912e+05 | 262144 | 1 | 3.240e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.08266068733024 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3723188059409073, dt = 0.00468722698344532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (1.8%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 357.89 us (94.0%)
LB move op cnt : 0
LB apply : 4.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (65.5%)
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 | 8.0343e+05 | 262144 | 1 | 3.263e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.71592996413357 (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 : 6.62 us (1.7%)
patch tree reduce : 2.07 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 356.48 us (94.2%)
LB move op cnt : 0
LB apply : 4.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (67.7%)
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 | 8.1351e+05 | 262144 | 1 | 3.222e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.36486649099867 (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.69 us (1.7%)
patch tree reduce : 1813.00 ns (0.5%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 2.78 us (0.7%)
LB compute : 375.71 us (93.8%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (61.4%)
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 | 8.1177e+05 | 262144 | 1 | 3.229e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.25313935980932 (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.44 us (1.7%)
patch tree reduce : 1894.00 ns (0.4%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 416.67 us (94.6%)
LB move op cnt : 0
LB apply : 4.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (66.7%)
Info: cfl dt = 0.004687227106075876 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4115e+05 | 262144 | 1 | 3.537e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.707423712551915 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39106771394817347, dt = 0.004687227106075876
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (1.6%)
patch tree reduce : 1703.00 ns (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 408.21 us (94.9%)
LB move op cnt : 0
LB apply : 3.62 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (65.9%)
Info: cfl dt = 0.004687227200013709 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7549e+05 | 262144 | 1 | 3.380e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.91746124101511 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39575494105424935, dt = 0.004687227200013709
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.0%)
patch tree reduce : 1814.00 ns (0.5%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 333.82 us (94.0%)
LB move op cnt : 0
LB apply : 4.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (68.8%)
Info: cfl dt = 0.004687227330664568 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0172e+05 | 262144 | 1 | 3.270e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.60629458393264 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40044216825426304, dt = 0.0006104633246843405
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (1.8%)
patch tree reduce : 1854.00 ns (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1021.00 ns (0.3%)
LB compute : 356.95 us (94.2%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (67.7%)
Info: cfl dt = 0.00468722736395384 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1323e+05 | 262144 | 1 | 3.224e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.817631932069529 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 194.460057479 (s) [Godunov][rank=0]
amr::Godunov: t = 0.4010526315789474, dt = 0.00468722736395384
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.63 us (2.8%)
patch tree reduce : 1964.00 ns (0.5%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 356.60 us (93.7%)
LB move op cnt : 0
LB apply : 4.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (69.3%)
Info: cfl dt = 0.004687227531790345 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0405e+05 | 262144 | 1 | 3.260e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.75607110787402 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4057398589429012, dt = 0.004687227531790345
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (1.6%)
patch tree reduce : 1924.00 ns (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1372.00 ns (0.3%)
LB compute : 386.93 us (94.9%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (71.8%)
Info: cfl dt = 0.004687227733148678 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9222e+05 | 262144 | 1 | 3.309e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.99453791953575 (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.29 us (1.6%)
patch tree reduce : 2.05 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.2%)
LB compute : 434.98 us (95.0%)
LB move op cnt : 0
LB apply : 4.25 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (71.3%)
Info: cfl dt = 0.004687227963626218 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7765e+05 | 262144 | 1 | 3.371e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.05687722848063 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41511431420784023, dt = 0.004687227963626218
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (1.7%)
patch tree reduce : 1974.00 ns (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 382.12 us (94.7%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (67.2%)
Info: cfl dt = 0.004687228218782792 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9866e+05 | 262144 | 1 | 3.282e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.40940856361299 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4198015421714664, dt = 0.004687228218782792
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (1.5%)
patch tree reduce : 1794.00 ns (0.4%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 413.13 us (95.0%)
LB move op cnt : 0
LB apply : 4.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (76.9%)
Info: cfl dt = 0.00468722849483511 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4397e+05 | 262144 | 1 | 3.524e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.88896980569991 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42448877039024924, dt = 0.00468722849483511
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (1.5%)
patch tree reduce : 1953.00 ns (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 406.57 us (94.9%)
LB move op cnt : 0
LB apply : 4.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (70.7%)
Info: cfl dt = 0.004687228788047836 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9140e+05 | 262144 | 1 | 3.312e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.94161245694104 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42917599888508434, dt = 0.004687228788047836
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (1.9%)
patch tree reduce : 1964.00 ns (0.5%)
gen split merge : 1262.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 370.50 us (94.3%)
LB move op cnt : 0
LB apply : 4.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (73.6%)
Info: cfl dt = 0.004687229091880905 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6078e+05 | 262144 | 1 | 3.446e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.97102836047238 (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.35 us (1.8%)
patch tree reduce : 1773.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 380.85 us (94.4%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (74.1%)
Info: cfl dt = 0.004687229146758799 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8989e+05 | 262144 | 1 | 3.319e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.621929875679099 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 197.60521584600002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.43447368421052635, dt = 0.004687229146758799
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.23 us (2.7%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 355.86 us (93.8%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (67.9%)
Info: cfl dt = 0.004687229453418967 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.7466e+05 | 262144 | 1 | 3.886e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.42742754536427 (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.09 us (1.9%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 356.44 us (94.3%)
LB move op cnt : 0
LB apply : 4.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (72.8%)
Info: cfl dt = 0.004687229769108501 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8489e+05 | 262144 | 1 | 3.340e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.52263323590604 (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 : 6.61 us (1.7%)
patch tree reduce : 1904.00 ns (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.3%)
LB compute : 370.06 us (94.5%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (70.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 | 7.8171e+05 | 262144 | 1 | 3.353e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.31830351761143 (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.83 us (1.7%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 378.74 us (94.5%)
LB move op cnt : 0
LB apply : 4.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (67.9%)
Info: cfl dt = 0.004687230426218873 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8600e+05 | 262144 | 1 | 3.335e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.594326683075025 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45322260267309394, dt = 0.004687230426218873
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.02 us (1.8%)
patch tree reduce : 1733.00 ns (0.4%)
gen split merge : 1122.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.3%)
LB compute : 369.87 us (94.5%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (69.9%)
Info: cfl dt = 0.004687230768643342 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8689e+05 | 262144 | 1 | 3.331e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.651886854941154 (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 : 6.70 us (1.7%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 383.62 us (94.5%)
LB move op cnt : 0
LB apply : 4.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (71.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 | 7.9042e+05 | 262144 | 1 | 3.317e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.878716304033595 (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 : 6.31 us (1.6%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 1122.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 369.00 us (94.4%)
LB move op cnt : 0
LB apply : 4.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (69.2%)
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 | 7.9567e+05 | 262144 | 1 | 3.295e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.21663913895145 (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 : 6.44 us (1.4%)
patch tree reduce : 1924.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 429.00 us (95.2%)
LB move op cnt : 0
LB apply : 3.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (70.8%)
Info: cfl dt = 0.004687231546205359 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9678e+05 | 262144 | 1 | 3.290e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.679549139635888 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 201.00568794400002 (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 : 10.27 us (2.6%)
patch tree reduce : 1874.00 ns (0.5%)
gen split merge : 531.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 371.00 us (94.1%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (66.5%)
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 | 7.8132e+05 | 262144 | 1 | 3.355e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.29307360434887 (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.35 us (1.9%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 373.16 us (94.4%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (66.6%)
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 | 8.0158e+05 | 262144 | 1 | 3.270e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.5972217891894 (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 : 6.92 us (1.9%)
patch tree reduce : 1653.00 ns (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 341.17 us (94.2%)
LB move op cnt : 0
LB apply : 4.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (74.4%)
Info: cfl dt = 0.004687232691215245 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9273e+05 | 262144 | 1 | 3.307e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.02730180309901 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.481956432598809, dt = 0.004687232691215245
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (1.7%)
patch tree reduce : 1653.00 ns (0.4%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 405.44 us (95.0%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (66.0%)
Info: cfl dt = 0.0046872330992974096 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9997e+05 | 262144 | 1 | 3.277e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.49365093422128 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48664366529002423, dt = 0.0046872330992974096
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (1.5%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.3%)
LB compute : 399.93 us (95.0%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (70.8%)
Info: cfl dt = 0.004687233518755688 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0784e+05 | 262144 | 1 | 3.703e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.5632985643041 (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 : 6.80 us (1.5%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 424.50 us (95.2%)
LB move op cnt : 0
LB apply : 3.73 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (61.7%)
Info: cfl dt = 0.004687233947733763 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8046e+05 | 262144 | 1 | 3.359e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.23765104862963 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4960181319080773, dt = 0.004687233947733763
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (1.5%)
patch tree reduce : 1813.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 421.20 us (95.3%)
LB move op cnt : 0
LB apply : 3.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (76.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 | 7.9707e+05 | 262144 | 1 | 3.289e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.30707162936855 (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 : 6.51 us (1.6%)
patch tree reduce : 1532.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 374.50 us (94.7%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (71.9%)
Info: cfl dt = 0.004687234454086058 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9654e+05 | 262144 | 1 | 3.291e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.677339626086623 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 204.15512920700002 (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 : 10.25 us (2.5%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 490.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 388.35 us (94.4%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (67.7%)
Info: cfl dt = 0.004687234890899034 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8659e+05 | 262144 | 1 | 3.333e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.6325932029459 (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.39 us (2.0%)
patch tree reduce : 1382.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 342.03 us (94.0%)
LB move op cnt : 0
LB apply : 4.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (69.1%)
Info: cfl dt = 0.004687235332425469 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8987e+05 | 262144 | 1 | 3.319e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.843207817719346 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5106902588186694, dt = 0.004687235332425469
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (1.8%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 336.86 us (94.1%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (69.0%)
Info: cfl dt = 0.004687235775687335 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8483e+05 | 262144 | 1 | 3.340e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.519250598597665 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5153774941510948, dt = 0.004687235775687335
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (1.6%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 398.31 us (94.9%)
LB move op cnt : 0
LB apply : 3.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (71.3%)
Info: cfl dt = 0.004687236217814051 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8069e+05 | 262144 | 1 | 3.358e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.25244407113142 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5200647299267821, dt = 0.004687236217814051
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.25 us (1.9%)
patch tree reduce : 1422.00 ns (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 354.36 us (94.1%)
LB move op cnt : 0
LB apply : 4.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (71.9%)
Info: cfl dt = 0.00468723665602507 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2978e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.97525717291253 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5247519661445962, dt = 0.00468723665602507
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (1.7%)
patch tree reduce : 1793.00 ns (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 366.29 us (94.6%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.7%)
Info: cfl dt = 0.0046872370878540855 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5438e+05 | 262144 | 1 | 3.475e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.559200277759416 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5294392028006213, dt = 0.0046872370878540855
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.8%)
patch tree reduce : 1633.00 ns (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 334.18 us (94.3%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (69.5%)
Info: cfl dt = 0.004687237511273339 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8712e+05 | 262144 | 1 | 3.330e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.66629408294689 (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 : 6.65 us (1.7%)
patch tree reduce : 1823.00 ns (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 370.30 us (94.7%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (66.7%)
Info: cfl dt = 0.004687237577557929 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9913e+05 | 262144 | 1 | 3.280e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.698805620671948 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 207.318080159 (s) [Godunov][rank=0]
amr::Godunov: t = 0.5347368421052632, dt = 0.004687237577557929
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.28 us (2.9%)
patch tree reduce : 1302.00 ns (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 326.26 us (93.4%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (66.8%)
Info: cfl dt = 0.004687237984114848 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7034e+05 | 262144 | 1 | 3.403e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.58634890937364 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5394240796828211, dt = 0.004687237984114848
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (1.9%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1303.00 ns (0.3%)
LB compute : 353.54 us (94.3%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.3%)
Info: cfl dt = 0.004687238381336377 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9968e+05 | 262144 | 1 | 3.278e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.47498675573987 (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 : 6.59 us (1.9%)
patch tree reduce : 1764.00 ns (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 327.14 us (93.8%)
LB move op cnt : 0
LB apply : 4.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.2%)
Info: cfl dt = 0.004687238768030258 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4239e+05 | 262144 | 1 | 3.531e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.78722294030206 (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 : 6.49 us (1.7%)
patch tree reduce : 1983.00 ns (0.5%)
gen split merge : 1071.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 359.21 us (94.4%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (71.4%)
Info: cfl dt = 0.0046872391437077915 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9351e+05 | 262144 | 1 | 3.304e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.077847183039665 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5534857948163026, dt = 0.0046872391437077915
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.7%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 345.56 us (94.6%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (57.2%)
Info: cfl dt = 0.00468723950830683 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8129e+05 | 262144 | 1 | 3.355e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.29107386537559 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5581730339600104, dt = 0.00468723950830683
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (1.8%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 341.59 us (94.2%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (68.0%)
Info: cfl dt = 0.004687239862077173 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8628e+05 | 262144 | 1 | 3.334e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.61224720354669 (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 : 6.36 us (1.8%)
patch tree reduce : 1704.00 ns (0.5%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 330.07 us (94.1%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.6%)
Info: cfl dt = 0.004687240205519914 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8134e+05 | 262144 | 1 | 3.355e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.29433027113773 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5675475133303944, dt = 0.0006103814064476465
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (2.0%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 337.92 us (94.0%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (68.9%)
Info: cfl dt = 0.004687240262040081 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5331e+05 | 262144 | 1 | 3.480e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.31447868460448 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 210.477337838 (s) [Godunov][rank=0]
amr::Godunov: t = 0.5681578947368421, dt = 0.004687240262040081
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.51 us (3.1%)
patch tree reduce : 1854.00 ns (0.6%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.3%)
LB compute : 312.15 us (93.3%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (74.0%)
Info: cfl dt = 0.004687240589022538 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7620e+05 | 262144 | 1 | 3.377e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.96344159185947 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5728451349988821, dt = 0.004687240589022538
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (1.7%)
patch tree reduce : 1843.00 ns (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 401.17 us (95.0%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (68.4%)
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 | 8.0455e+05 | 262144 | 1 | 3.258e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.78873495532597 (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 : 6.65 us (1.7%)
patch tree reduce : 1734.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.3%)
LB compute : 372.28 us (94.6%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (66.7%)
Info: cfl dt = 0.004687241221921968 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2853e+05 | 262144 | 1 | 3.598e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.89504024537931 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5822196164968796, dt = 0.004687241221921968
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (1.5%)
patch tree reduce : 1843.00 ns (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 400.54 us (95.0%)
LB move op cnt : 0
LB apply : 4.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (66.9%)
Info: cfl dt = 0.004687241528223801 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0528e+05 | 262144 | 1 | 3.255e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.835368719094774 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5869068577188016, dt = 0.004687241528223801
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (1.5%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 1182.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1093.00 ns (0.3%)
LB compute : 410.21 us (94.9%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (70.5%)
Info: cfl dt = 0.0046872418283766155 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9259e+05 | 262144 | 1 | 3.307e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.01841732972603 (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.10 us (1.7%)
patch tree reduce : 1924.00 ns (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 393.87 us (94.6%)
LB move op cnt : 0
LB apply : 4.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.04 us (78.1%)
Info: cfl dt = 0.004687242122853477 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0873e+05 | 262144 | 1 | 3.241e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.05744139225775 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.596281341075402, dt = 0.004687242122853477
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (1.7%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1353.00 ns (0.3%)
LB compute : 376.68 us (94.8%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (69.2%)
Info: cfl dt = 0.004687242412094495 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2467e+05 | 262144 | 1 | 3.617e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.646677483483735 (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.49 us (1.6%)
patch tree reduce : 1813.00 ns (0.5%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 377.41 us (94.7%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (71.2%)
Info: cfl dt = 0.004687242462414056 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9542e+05 | 262144 | 1 | 3.296e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.667303523803151 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 213.62514288600002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.6015789473684211, dt = 0.004687242462414056
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.35 us (2.6%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 371.25 us (94.2%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (68.9%)
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 | 8.0260e+05 | 262144 | 1 | 3.266e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.66300474893021 (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.29 us (1.5%)
patch tree reduce : 1664.00 ns (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 396.11 us (95.1%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (66.7%)
Info: cfl dt = 0.00468724301622604 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3815e+05 | 262144 | 1 | 3.551e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.5144501798049 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6109534325714205, dt = 0.00468724301622604
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (1.8%)
patch tree reduce : 1923.00 ns (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 371.62 us (94.6%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (68.6%)
Info: cfl dt = 0.004687243289008425 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7350e+05 | 262144 | 1 | 3.389e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.790101185830196 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6156406755876466, dt = 0.004687243289008425
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (1.6%)
patch tree reduce : 2.16 us (0.5%)
gen split merge : 1173.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 428.10 us (95.0%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (67.3%)
Info: cfl dt = 0.004687243558985207 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3533e+05 | 262144 | 1 | 3.565e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.333117842752124 (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 : 6.50 us (1.7%)
patch tree reduce : 1703.00 ns (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 361.61 us (94.6%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (65.5%)
Info: cfl dt = 0.004687243826358344 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5315e+05 | 262144 | 1 | 3.481e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.48017794019483 (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 : 6.33 us (1.5%)
patch tree reduce : 1874.00 ns (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 408.04 us (95.0%)
LB move op cnt : 0
LB apply : 4.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (71.0%)
Info: cfl dt = 0.004687244091311441 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8774e+05 | 262144 | 1 | 3.328e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.70668632487793 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6297024062619985, dt = 0.004687244091311441
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (1.9%)
patch tree reduce : 1754.00 ns (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 362.31 us (94.3%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (70.8%)
Info: cfl dt = 0.004687244354011933 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9182e+05 | 262144 | 1 | 3.311e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.969328187611445 (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 : 6.38 us (1.8%)
patch tree reduce : 1684.00 ns (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 340.06 us (94.3%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (65.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 | 6.9692e+05 | 262144 | 1 | 3.761e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.84148353787327 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 216.841852503 (s) [Godunov][rank=0]
Outflow on y/z, reflective on x boundary conditions#
251 def run_case_outflow_reflective_x():
252 def set_bc_func(cfg):
253 cfg.set_boundary_condition("x", "reflective")
254 cfg.set_boundary_condition("y", "outflow")
255 cfg.set_boundary_condition("z", "outflow")
256
257 return run_case(set_bc_func, "outflow_reflective_x")
258
259
260 ani_outflow_reflective_x = run_case_outflow_reflective_x()
261 plt.show()
Info: pushing data in scheduler, N = 32768 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 43.14 ms [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: Compute load ... [DataInserterUtility][rank=0]
Info: run scheduler step ... [DataInserterUtility][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (20.9%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (0.3%)
patch tree reduce : 1623.00 ns (0.2%)
gen split merge : 791.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.1%)
LB compute : 686.38 us (97.9%)
LB move op cnt : 0
LB apply : 3.94 us (0.6%)
Info: patch count stable after 1 runs npatch = 1 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: time since start : 228.12373480300002 (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 : 10.12 us (2.3%)
patch tree reduce : 1664.00 ns (0.4%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 416.50 us (94.6%)
LB move op cnt : 0
LB apply : 4.11 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (70.5%)
Info: cfl dt = 0.004687031767311921 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 4.3812e+05 | 262144 | 1 | 5.983e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 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.10 us (1.8%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1343.00 ns (0.3%)
LB compute : 367.45 us (94.5%)
LB move op cnt : 0
LB apply : 4.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (70.5%)
Info: cfl dt = 0.00468703492268262 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4126e+05 | 262144 | 1 | 3.536e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.71261308339718 (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 : 6.81 us (1.8%)
patch tree reduce : 1744.00 ns (0.5%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 364.03 us (94.6%)
LB move op cnt : 0
LB apply : 4.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (67.4%)
Info: cfl dt = 0.004687039583988074 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7332e+05 | 262144 | 1 | 3.390e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.775921733222106 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009374066689994541, dt = 0.004687039583988074
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (1.5%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 425.67 us (95.5%)
LB move op cnt : 0
LB apply : 3.68 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (71.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 | 7.1931e+05 | 262144 | 1 | 3.644e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.299918722166026 (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.66 us (1.7%)
patch tree reduce : 1964.00 ns (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1213.00 ns (0.3%)
LB compute : 369.11 us (94.6%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (69.0%)
Info: cfl dt = 0.004687053552588433 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8585e+05 | 262144 | 1 | 3.336e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.582928794160615 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018748152070380032, dt = 0.004687053552588433
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (1.5%)
patch tree reduce : 1873.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 428.06 us (95.4%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (70.0%)
Info: cfl dt = 0.004687062799631708 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.6232e+05 | 262144 | 1 | 3.958e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.63124088045012 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023435205622968466, dt = 0.004687062799631708
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.4%)
patch tree reduce : 1943.00 ns (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 409.65 us (95.2%)
LB move op cnt : 0
LB apply : 3.64 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (69.2%)
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 | 6.6458e+05 | 262144 | 1 | 3.945e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.777080505639724 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028122268422600172, dt = 0.004687073438769337
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (1.6%)
patch tree reduce : 2.17 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 383.25 us (94.7%)
LB move op cnt : 0
LB apply : 4.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (64.6%)
Info: cfl dt = 0.004687084324050356 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9523e+05 | 262144 | 1 | 3.296e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.18640757091934 (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.95 us (1.8%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 362.67 us (94.6%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (65.8%)
Info: cfl dt = 0.0046870856989237805 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1930e+05 | 262144 | 1 | 3.644e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.042570546641549 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 232.060008986 (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 : 10.49 us (2.6%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 372.54 us (94.1%)
LB move op cnt : 0
LB apply : 4.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.4%)
Info: cfl dt = 0.0046870967535173926 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9328e+05 | 262144 | 1 | 3.305e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.06140910687968 (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.38 us (1.7%)
patch tree reduce : 1914.00 ns (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 403.08 us (94.8%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (73.5%)
Info: cfl dt = 0.0046871087318162774 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9394e+05 | 262144 | 1 | 3.302e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.10370531880279 (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 : 6.88 us (1.7%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 379.01 us (94.4%)
LB move op cnt : 0
LB apply : 4.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (73.2%)
Info: cfl dt = 0.004687121456469848 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3262e+05 | 262144 | 1 | 3.578e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.15677972560444 (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 : 6.27 us (1.7%)
patch tree reduce : 1903.00 ns (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 342.66 us (94.1%)
LB move op cnt : 0
LB apply : 4.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (70.0%)
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 | 8.0042e+05 | 262144 | 1 | 3.275e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.520968521023505 (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.87 us (1.9%)
patch tree reduce : 1964.00 ns (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 335.15 us (93.8%)
LB move op cnt : 0
LB apply : 4.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (68.5%)
Info: cfl dt = 0.004687147322193695 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9356e+05 | 262144 | 1 | 3.303e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.07999119113264 (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.57 us (1.8%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 338.90 us (93.9%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (70.5%)
Info: cfl dt = 0.004687158862014885 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9848e+05 | 262144 | 1 | 3.283e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.396747074571124 (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 : 6.55 us (1.6%)
patch tree reduce : 1744.00 ns (0.4%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 385.26 us (94.7%)
LB move op cnt : 0
LB apply : 4.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (72.6%)
Info: cfl dt = 0.004687170703487903 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9342e+05 | 262144 | 1 | 3.304e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.07127349598578 (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 : 6.38 us (1.7%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 1292.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 346.38 us (94.1%)
LB move op cnt : 0
LB apply : 4.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (71.2%)
Info: cfl dt = 0.0046871722738337585 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9760e+05 | 262144 | 1 | 3.287e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.694710983497557 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 235.257210662 (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 : 10.26 us (2.5%)
patch tree reduce : 1893.00 ns (0.5%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1133.00 ns (0.3%)
LB compute : 383.58 us (94.2%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (66.3%)
Info: cfl dt = 0.004687184264637751 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9095e+05 | 262144 | 1 | 3.314e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.91204553757028 (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 : 6.54 us (1.7%)
patch tree reduce : 1863.00 ns (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.3%)
LB compute : 368.68 us (94.6%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (68.8%)
Info: cfl dt = 0.004687194877882526 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9551e+05 | 262144 | 1 | 3.295e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.206073643930644 (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.75 us (1.7%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 374.98 us (94.7%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 us (73.4%)
Info: cfl dt = 0.00468720521089136 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9788e+05 | 262144 | 1 | 3.286e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.358477582113174 (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 : 6.45 us (1.6%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 370.88 us (94.8%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (70.0%)
Info: cfl dt = 0.004687215596431434 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3862e+05 | 262144 | 1 | 3.549e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.54451204632634 (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.56 us (1.7%)
patch tree reduce : 1703.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 363.55 us (94.6%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (68.5%)
Info: cfl dt = 0.004687224972613222 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4464e+05 | 262144 | 1 | 3.520e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.93188711603983 (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 : 6.58 us (1.5%)
patch tree reduce : 1703.00 ns (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 403.31 us (94.9%)
LB move op cnt : 0
LB apply : 4.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (75.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 | 7.7630e+05 | 262144 | 1 | 3.377e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.96992300848089 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09496530245944795, dt = 0.004687234139899544
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (1.5%)
patch tree reduce : 1653.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 407.45 us (95.1%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (72.0%)
Info: cfl dt = 0.004687243482155108 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0391e+05 | 262144 | 1 | 3.724e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.310490551751215 (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.31 us (1.6%)
patch tree reduce : 1743.00 ns (0.4%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 374.47 us (94.8%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (70.0%)
Info: cfl dt = 0.004687244709469211 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8935e+05 | 262144 | 1 | 3.321e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.619188855998933 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 238.457796561 (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 : 9.89 us (2.7%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 348.21 us (93.9%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (66.9%)
Info: cfl dt = 0.00468725401629642 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9412e+05 | 262144 | 1 | 3.301e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.11718908382959 (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.76 us (1.7%)
patch tree reduce : 1873.00 ns (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 366.38 us (94.3%)
LB move op cnt : 0
LB apply : 4.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (73.1%)
Info: cfl dt = 0.004687263151480304 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.5665e+05 | 262144 | 1 | 3.992e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.268590987873274 (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.37 us (1.6%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 377.50 us (94.9%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (59.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 | 8.0887e+05 | 262144 | 1 | 3.241e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.06671116498478 (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.00 us (1.6%)
patch tree reduce : 1953.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 423.91 us (95.2%)
LB move op cnt : 0
LB apply : 3.70 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.63 us (74.2%)
Info: cfl dt = 0.004687277562290804 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7128e+05 | 262144 | 1 | 3.399e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.64688428674692 (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 : 6.80 us (1.6%)
patch tree reduce : 1963.00 ns (0.5%)
gen split merge : 1092.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 402.20 us (95.0%)
LB move op cnt : 0
LB apply : 3.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (71.4%)
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 | 6.8096e+05 | 262144 | 1 | 3.850e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.833497177724986 (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.29 us (1.8%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 383.40 us (94.6%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (73.4%)
Info: cfl dt = 0.004687278653859442 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8908e+05 | 262144 | 1 | 3.322e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.79325968892587 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12838674822957274, dt = 0.004687278653859442
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (1.7%)
patch tree reduce : 1773.00 ns (0.4%)
gen split merge : 1122.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 386.10 us (94.6%)
LB move op cnt : 0
LB apply : 4.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (67.5%)
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 | 6.8466e+05 | 262144 | 1 | 3.829e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.07130445900533 (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.58 us (1.7%)
patch tree reduce : 1864.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 374.40 us (94.6%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (70.9%)
Info: cfl dt = 0.004687277315053551 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6537e+05 | 262144 | 1 | 3.425e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.413517918138085 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 241.767013463 (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 : 10.32 us (2.6%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 375.52 us (94.2%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (68.1%)
Info: cfl dt = 0.00468727536007883 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.4617e+05 | 262144 | 1 | 4.057e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.59366477855598 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13837148784136935, dt = 0.00468727536007883
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (1.7%)
patch tree reduce : 1873.00 ns (0.5%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.3%)
LB compute : 371.21 us (94.4%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (62.5%)
Info: cfl dt = 0.004687273042053087 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9479e+05 | 262144 | 1 | 3.298e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.16056053961085 (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 : 6.69 us (1.5%)
patch tree reduce : 1774.00 ns (0.4%)
gen split merge : 1042.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 427.43 us (95.2%)
LB move op cnt : 0
LB apply : 3.75 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (70.2%)
Info: cfl dt = 0.0046872704397928604 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1721e+05 | 262144 | 1 | 3.655e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.16693190447302 (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 : 6.90 us (1.9%)
patch tree reduce : 1953.00 ns (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 341.26 us (93.9%)
LB move op cnt : 0
LB apply : 4.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (69.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 | 7.6738e+05 | 262144 | 1 | 3.416e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.396399517418764 (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 : 29.00 us (7.3%)
patch tree reduce : 1864.00 ns (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.3%)
LB compute : 352.68 us (88.8%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (71.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 | 7.8803e+05 | 262144 | 1 | 3.327e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.725081251484944 (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 : 28.76 us (7.1%)
patch tree reduce : 1803.00 ns (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 361.22 us (89.3%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (73.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 | 7.7443e+05 | 262144 | 1 | 3.385e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.85002259408559 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16180783879852684, dt = 0.004687261426463144
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (1.7%)
patch tree reduce : 1844.00 ns (0.5%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1433.00 ns (0.4%)
LB compute : 386.88 us (94.5%)
LB move op cnt : 0
LB apply : 4.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (67.6%)
Info: cfl dt = 0.004687258373260002 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9325e+05 | 262144 | 1 | 3.305e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.06131352229236 (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.59 us (1.7%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 369.55 us (94.2%)
LB move op cnt : 0
LB apply : 4.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (73.7%)
Info: cfl dt = 0.004687257983264101 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9762e+05 | 262144 | 1 | 3.287e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.683540854927603 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 245.00438091 (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 : 10.80 us (2.8%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 356.00 us (93.9%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (66.0%)
Info: cfl dt = 0.004687255097017622 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8639e+05 | 262144 | 1 | 3.333e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.61997534168668 (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 : 6.22 us (1.7%)
patch tree reduce : 1674.00 ns (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 343.37 us (94.3%)
LB move op cnt : 0
LB apply : 4.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (69.5%)
Info: cfl dt = 0.004687252393857863 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8454e+05 | 262144 | 1 | 3.341e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.50032349059115 (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.17 us (1.7%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 1002.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 393.00 us (94.7%)
LB move op cnt : 0
LB apply : 4.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (69.4%)
Info: cfl dt = 0.004687249890605385 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9023e+05 | 262144 | 1 | 3.317e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.86667547604946 (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 : 6.84 us (1.6%)
patch tree reduce : 1953.00 ns (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1283.00 ns (0.3%)
LB compute : 393.39 us (94.7%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (72.7%)
Info: cfl dt = 0.004687247551514999 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9560e+05 | 262144 | 1 | 3.295e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.21236440360517 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18585427852263972, dt = 0.004687247551514999
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (1.7%)
patch tree reduce : 1914.00 ns (0.5%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 374.59 us (94.7%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (67.9%)
Info: cfl dt = 0.0046872450499894375 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6245e+05 | 262144 | 1 | 3.438e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.078435587841874 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19054152607415473, dt = 0.0046872450499894375
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (1.6%)
patch tree reduce : 1994.00 ns (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 400.93 us (94.9%)
LB move op cnt : 0
LB apply : 3.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (70.9%)
Info: cfl dt = 0.004687242800227818 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8471e+05 | 262144 | 1 | 3.341e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.51154856177396 (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 : 6.91 us (1.8%)
patch tree reduce : 1843.00 ns (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 356.75 us (94.3%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (68.6%)
Info: cfl dt = 0.004687240804705421 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8912e+05 | 262144 | 1 | 3.322e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.795270860092806 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19991601392437197, dt = 0.00061030186510172
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (1.5%)
patch tree reduce : 1884.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.3%)
LB compute : 416.64 us (95.0%)
LB move op cnt : 0
LB apply : 3.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (73.8%)
Info: cfl dt = 0.004687240571731558 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5210e+05 | 262144 | 1 | 3.485e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.30350938370649 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 248.163525033 (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 : 10.29 us (2.7%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 552.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 351.91 us (93.7%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (67.0%)
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 | 7.2538e+05 | 262144 | 1 | 3.614e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.6925814318825 (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 : 6.87 us (1.9%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1392.00 ns (0.4%)
LB compute : 335.83 us (93.9%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (69.2%)
Info: cfl dt = 0.004687237402627058 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3288e+05 | 262144 | 1 | 3.577e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.174969880674794 (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 : 6.84 us (1.8%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 357.79 us (94.6%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (67.3%)
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 | 7.4623e+05 | 262144 | 1 | 3.513e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.034598626503595 (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 : 6.54 us (1.5%)
patch tree reduce : 1423.00 ns (0.3%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 401.98 us (95.0%)
LB move op cnt : 0
LB apply : 4.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (74.7%)
Info: cfl dt = 0.004687235271899177 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9095e+05 | 262144 | 1 | 3.314e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.91324139610926 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2192752688295347, dt = 0.004687235271899177
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.5%)
patch tree reduce : 1683.00 ns (0.4%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 386.11 us (95.0%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.4%)
Info: cfl dt = 0.004687234588939457 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6990e+05 | 262144 | 1 | 3.405e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.55824073092779 (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 : 5.95 us (1.7%)
patch tree reduce : 1913.00 ns (0.6%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 327.06 us (94.2%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (68.7%)
Info: cfl dt = 0.004687234153226077 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3154e+05 | 262144 | 1 | 3.583e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.088556659741066 (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.19 us (2.0%)
patch tree reduce : 1653.00 ns (0.5%)
gen split merge : 1132.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 339.95 us (93.9%)
LB move op cnt : 0
LB apply : 4.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (67.0%)
Info: cfl dt = 0.0046872339555697334 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9751e+05 | 262144 | 1 | 3.287e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.33517338647631 (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 : 6.25 us (1.7%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 341.55 us (94.4%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (70.6%)
Info: cfl dt = 0.004687233951934073 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9519e+05 | 262144 | 1 | 3.297e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.665668188880494 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 251.61825775300002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.23394736842105263, dt = 0.004687233951934073
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.72 us (2.6%)
patch tree reduce : 1883.00 ns (0.5%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 392.01 us (94.2%)
LB move op cnt : 0
LB apply : 4.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (68.5%)
Info: cfl dt = 0.004687234003255571 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9767e+05 | 262144 | 1 | 3.286e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.345268617643626 (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 : 7.09 us (1.6%)
patch tree reduce : 1764.00 ns (0.4%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 407.29 us (94.7%)
LB move op cnt : 0
LB apply : 4.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (67.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 | 7.9249e+05 | 262144 | 1 | 3.308e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.011994719761084 (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.53 us (1.6%)
patch tree reduce : 1383.00 ns (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1133.00 ns (0.3%)
LB compute : 395.12 us (94.9%)
LB move op cnt : 0
LB apply : 4.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (74.0%)
Info: cfl dt = 0.004687234832706693 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3118e+05 | 262144 | 1 | 3.585e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.06540415871804 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24800907064177052, dt = 0.004687234832706693
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (1.7%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 366.40 us (94.6%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (70.0%)
Info: cfl dt = 0.004687235687704397 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1098e+05 | 262144 | 1 | 3.687e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.76504563186167 (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 : 6.51 us (1.6%)
patch tree reduce : 1703.00 ns (0.4%)
gen split merge : 1163.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 385.32 us (94.8%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (69.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 | 7.9177e+05 | 262144 | 1 | 3.311e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.965876165774475 (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 : 6.77 us (1.8%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 348.97 us (93.8%)
LB move op cnt : 0
LB apply : 6.34 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (71.6%)
Info: cfl dt = 0.0046872376461729245 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8746e+05 | 262144 | 1 | 3.329e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.688204693910535 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2620707777853446, dt = 0.0046872376461729245
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (1.9%)
patch tree reduce : 1594.00 ns (0.5%)
gen split merge : 1212.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 331.33 us (94.1%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (70.8%)
Info: cfl dt = 0.004687238807347737 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0358e+05 | 262144 | 1 | 3.726e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.289193081346006 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2667580154315175, dt = 0.0006104056211140851
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (1.6%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1393.00 ns (0.3%)
LB compute : 388.47 us (94.9%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (70.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 | 7.9291e+05 | 262144 | 1 | 3.306e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.6466550264689 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 254.82928981700002 (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 : 11.70 us (2.8%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 510.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 398.53 us (93.9%)
LB move op cnt : 0
LB apply : 4.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.3%)
Info: cfl dt = 0.004687240304102443 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4128e+05 | 262144 | 1 | 3.536e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.715957411018096 (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.63 us (1.9%)
patch tree reduce : 1823.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 387.76 us (94.3%)
LB move op cnt : 0
LB apply : 4.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (75.2%)
Info: cfl dt = 0.004687241856479034 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1147e+05 | 262144 | 1 | 3.685e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.79714845746507 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27674290032181753, dt = 0.004687241856479034
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.5%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 2.05 us (0.5%)
LB compute : 402.17 us (95.0%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.1%)
Info: cfl dt = 0.004687243623864013 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9213e+05 | 262144 | 1 | 3.309e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.989198648977805 (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 : 6.59 us (1.7%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.3%)
LB compute : 370.90 us (94.7%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.70 us (73.1%)
Info: cfl dt = 0.00468724558203287 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0623e+05 | 262144 | 1 | 3.251e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.896470077858645 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28611738580216056, dt = 0.00468724558203287
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (1.9%)
patch tree reduce : 1562.00 ns (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1143.00 ns (0.3%)
LB compute : 338.38 us (94.1%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (68.5%)
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 | 6.7020e+05 | 262144 | 1 | 3.911e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.1402321975463 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29080463138419343, dt = 0.004687247703464963
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (1.8%)
patch tree reduce : 1572.00 ns (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 329.62 us (94.2%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (71.9%)
Info: cfl dt = 0.004687249783434023 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5710e+05 | 262144 | 1 | 3.462e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.734268363109436 (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 : 6.52 us (1.9%)
patch tree reduce : 1523.00 ns (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 316.47 us (93.9%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (70.1%)
Info: cfl dt = 0.004687251720626629 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9625e+05 | 262144 | 1 | 3.292e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.25404528500177 (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 : 6.38 us (1.6%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1312.00 ns (0.3%)
LB compute : 371.15 us (94.7%)
LB move op cnt : 0
LB apply : 4.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (68.7%)
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 | 8.0284e+05 | 262144 | 1 | 3.265e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.729266123492334 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 258.0633343 (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 : 10.04 us (2.7%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 571.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 351.06 us (93.8%)
LB move op cnt : 0
LB apply : 3.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (66.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 | 8.0133e+05 | 262144 | 1 | 3.271e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.581583834636255 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30547672569230877, dt = 0.0046872540735967095
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (1.6%)
patch tree reduce : 1372.00 ns (0.3%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1183.00 ns (0.3%)
LB compute : 402.60 us (94.9%)
LB move op cnt : 0
LB apply : 4.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (68.1%)
Info: cfl dt = 0.004687256179988798 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8534e+05 | 262144 | 1 | 3.338e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.552215736876775 (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 : 6.51 us (1.7%)
patch tree reduce : 1413.00 ns (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1383.00 ns (0.4%)
LB compute : 373.76 us (94.7%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (69.9%)
Info: cfl dt = 0.004687258340176443 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5662e+05 | 262144 | 1 | 3.465e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.70366300054718 (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 : 6.93 us (1.8%)
patch tree reduce : 1703.00 ns (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 362.56 us (94.4%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (71.7%)
Info: cfl dt = 0.004687260558129958 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5763e+05 | 262144 | 1 | 3.460e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.76825026471816 (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 : 6.41 us (1.8%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 1112.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 331.50 us (94.2%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.7%)
Info: cfl dt = 0.004687262823120487 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3638e+05 | 262144 | 1 | 3.560e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.40072909969139 (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 : 6.31 us (1.6%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 376.32 us (94.8%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (71.5%)
Info: cfl dt = 0.004687265109719916 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2332e+05 | 262144 | 1 | 3.624e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.55961479554438 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3289130176673212, dt = 0.004687265109719916
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (1.9%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 321.61 us (94.1%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (69.1%)
Info: cfl dt = 0.004687267381699241 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2363e+05 | 262144 | 1 | 3.623e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.57994775168855 (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 : 6.27 us (1.7%)
patch tree reduce : 1332.00 ns (0.4%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.3%)
LB compute : 351.95 us (94.5%)
LB move op cnt : 0
LB apply : 4.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (70.1%)
Info: cfl dt = 0.004687267688756935 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3145e+05 | 262144 | 1 | 3.584e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.12982732115203 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 261.313678535 (s) [Godunov][rank=0]
amr::Godunov: t = 0.3342105263157895, dt = 0.004687267688756935
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.53 us (2.7%)
patch tree reduce : 1703.00 ns (0.4%)
gen split merge : 561.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 369.08 us (93.9%)
LB move op cnt : 0
LB apply : 4.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (68.3%)
Info: cfl dt = 0.004687269882584073 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8142e+05 | 262144 | 1 | 3.355e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.29972019874583 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33889779400454645, dt = 0.004687269882584073
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.5%)
patch tree reduce : 1542.00 ns (0.4%)
gen split merge : 1193.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 390.08 us (95.1%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (70.2%)
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 | 8.0146e+05 | 262144 | 1 | 3.271e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.58984212177666 (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 : 6.78 us (1.8%)
patch tree reduce : 1422.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 359.82 us (94.7%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (70.8%)
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 | 8.0247e+05 | 262144 | 1 | 3.267e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.65461074966603 (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 : 6.27 us (1.7%)
patch tree reduce : 1283.00 ns (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 358.41 us (94.6%)
LB move op cnt : 0
LB apply : 4.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (71.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 | 8.0174e+05 | 262144 | 1 | 3.270e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.607858922857844 (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.28 us (1.7%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 347.46 us (94.4%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (71.5%)
Info: cfl dt = 0.004687274442042877 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9225e+05 | 262144 | 1 | 3.309e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.99677251881427 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3576468830703232, dt = 0.004687274442042877
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.5%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 390.32 us (95.1%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (70.0%)
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 | 8.0173e+05 | 262144 | 1 | 3.270e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.60712327857948 (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.61 us (1.7%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 374.75 us (94.6%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (73.9%)
Info: cfl dt = 0.004687274697242562 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9652e+05 | 262144 | 1 | 3.291e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.271763714244244 (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.92 us (1.6%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 1182.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 407.02 us (94.9%)
LB move op cnt : 0
LB apply : 4.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (71.3%)
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 | 8.0192e+05 | 262144 | 1 | 3.269e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.719362177974907 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 264.404678175 (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 : 10.18 us (2.7%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 492.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 348.14 us (93.9%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (66.7%)
Info: cfl dt = 0.004687273920979769 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9809e+05 | 262144 | 1 | 3.285e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.37307048374453 (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.82 us (1.7%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 381.62 us (94.8%)
LB move op cnt : 0
LB apply : 4.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.5%)
Info: cfl dt = 0.004687271911624214 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9866e+05 | 262144 | 1 | 3.282e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.40997198509513 (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 : 5.63 us (1.4%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 385.03 us (95.1%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (69.5%)
Info: cfl dt = 0.0046872695373915835 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9747e+05 | 262144 | 1 | 3.287e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.33317114764544 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38169339946409037, dt = 0.0046872695373915835
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.6%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1253.00 ns (0.3%)
LB compute : 375.33 us (94.9%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (70.5%)
Info: cfl dt = 0.004687266859495296 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9439e+05 | 262144 | 1 | 3.300e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.134753499277615 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38638066900148194, dt = 0.004687266859495296
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.8%)
patch tree reduce : 1683.00 ns (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 340.27 us (94.2%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (71.1%)
Info: cfl dt = 0.004687263997351637 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0135e+05 | 262144 | 1 | 3.271e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.58254733751246 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3910679358609772, dt = 0.004687263997351637
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.7%)
patch tree reduce : 1704.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 349.22 us (94.6%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (71.0%)
Info: cfl dt = 0.004687260829759408 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9632e+05 | 262144 | 1 | 3.292e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.25904644456201 (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 : 6.83 us (1.9%)
patch tree reduce : 1683.00 ns (0.5%)
gen split merge : 1093.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 342.06 us (94.2%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.8%)
Info: cfl dt = 0.004687257654503339 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8916e+05 | 262144 | 1 | 3.322e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.79819884549376 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40044246068808825, dt = 0.0006101708908591297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.4%)
patch tree reduce : 1583.00 ns (0.3%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.2%)
LB compute : 432.69 us (95.5%)
LB move op cnt : 0
LB apply : 3.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (73.1%)
Info: cfl dt = 0.004687257242896915 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6003e+05 | 262144 | 1 | 3.449e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.368650505326759 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 267.51173890800004 (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 : 10.66 us (2.7%)
patch tree reduce : 1303.00 ns (0.3%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 372.14 us (94.1%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (67.3%)
Info: cfl dt = 0.004687254145496256 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8619e+05 | 262144 | 1 | 3.334e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.606955399380034 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4057398888218443, dt = 0.004687254145496256
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.4%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1303.00 ns (0.3%)
LB compute : 409.08 us (95.2%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (67.7%)
Info: cfl dt = 0.0046872511606204596 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8680e+05 | 262144 | 1 | 3.332e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.64617774839204 (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 : 6.35 us (1.7%)
patch tree reduce : 1683.00 ns (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 347.00 us (94.4%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (70.4%)
Info: cfl dt = 0.00468724832261416 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9546e+05 | 262144 | 1 | 3.296e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.20320967141778 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41511439412796103, dt = 0.00468724832261416
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (1.8%)
patch tree reduce : 1733.00 ns (0.5%)
gen split merge : 1091.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 354.45 us (94.4%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (69.3%)
Info: cfl dt = 0.004687245663721293 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9553e+05 | 262144 | 1 | 3.295e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.2078115112285 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41980164245057516, dt = 0.004687245663721293
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (1.6%)
patch tree reduce : 1653.00 ns (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 386.16 us (95.0%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (70.3%)
Info: cfl dt = 0.004687243050476524 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7911e+05 | 262144 | 1 | 3.365e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.15110311337006 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42448888811429647, dt = 0.004687243050476524
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (1.6%)
patch tree reduce : 1994.00 ns (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1091.00 ns (0.3%)
LB compute : 375.76 us (94.7%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (73.3%)
Info: cfl dt = 0.004687240359628566 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9138e+05 | 262144 | 1 | 3.312e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.94065492816174 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.429176131164773, dt = 0.004687240359628566
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (1.9%)
patch tree reduce : 1714.00 ns (0.5%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 350.49 us (94.1%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (64.7%)
Info: cfl dt = 0.004687237800149438 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9077e+05 | 262144 | 1 | 3.315e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.901598985653486 (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 : 6.70 us (1.7%)
patch tree reduce : 1522.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 366.27 us (94.5%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (70.7%)
Info: cfl dt = 0.0046872374811259 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9873e+05 | 262144 | 1 | 3.282e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.694474793903312 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 270.62671728600003 (s) [Godunov][rank=0]
amr::Godunov: t = 0.43447368421052635, dt = 0.0046872374811259
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.42 us (2.8%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.2%)
LB compute : 351.68 us (93.7%)
LB move op cnt : 0
LB apply : 4.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (66.4%)
Info: cfl dt = 0.004687235103275107 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9646e+05 | 262144 | 1 | 3.291e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.26748301098167 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4391609216916522, dt = 0.004687235103275107
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.4%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 370.58 us (95.0%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (62.7%)
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 | 6.5495e+05 | 262144 | 1 | 4.003e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.15853128662826 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44384815679492734, dt = 0.004687232931386062
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.10 us (1.7%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.3%)
LB compute : 401.65 us (94.7%)
LB move op cnt : 0
LB apply : 4.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (64.2%)
Info: cfl dt = 0.004687230999651154 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8734e+05 | 262144 | 1 | 3.329e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.68052019452477 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4485353897263134, dt = 0.004687230999651154
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (1.5%)
patch tree reduce : 1843.00 ns (0.4%)
gen split merge : 1162.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 406.24 us (95.2%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 us (70.6%)
Info: cfl dt = 0.004687229345943312 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9007e+05 | 262144 | 1 | 3.318e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.85635396177942 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45322262072596453, dt = 0.004687229345943312
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.5%)
patch tree reduce : 1664.00 ns (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 365.63 us (94.8%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (69.4%)
Info: cfl dt = 0.004687227997326023 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9863e+05 | 262144 | 1 | 3.282e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.40718922384823 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4579098500719078, dt = 0.004687227997326023
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (2.0%)
patch tree reduce : 1884.00 ns (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 338.21 us (93.9%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (69.9%)
Info: cfl dt = 0.0046872269851473075 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6632e+05 | 262144 | 1 | 3.421e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.32750674594973 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46259707806923384, dt = 0.0046872269851473075
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.5%)
patch tree reduce : 1914.00 ns (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 389.63 us (95.1%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (67.0%)
Info: cfl dt = 0.004687226321255234 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5485e+05 | 262144 | 1 | 3.473e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.58913508689092 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4672843050543811, dt = 0.0006104317877241305
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (1.9%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 334.45 us (94.3%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (70.3%)
Info: cfl dt = 0.004687226277731657 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7133e+05 | 262144 | 1 | 3.399e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.466054412166517 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 273.841399121 (s) [Godunov][rank=0]
amr::Godunov: t = 0.46789473684210525, dt = 0.004687226277731657
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.39 us (2.7%)
patch tree reduce : 2.04 us (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 357.27 us (93.8%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (66.1%)
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 | 8.0015e+05 | 262144 | 1 | 3.276e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.505332542740994 (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 : 7.06 us (1.8%)
patch tree reduce : 2.14 us (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 373.56 us (94.4%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (69.3%)
Info: cfl dt = 0.004687226080430847 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7231e+05 | 262144 | 1 | 3.394e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.712798456299744 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47726918914445854, dt = 0.004687226080430847
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (1.8%)
patch tree reduce : 1854.00 ns (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 349.76 us (94.3%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (69.3%)
Info: cfl dt = 0.004687225798335266 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5091e+05 | 262144 | 1 | 3.491e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.335605691822096 (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.00 us (1.9%)
patch tree reduce : 1953.00 ns (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 352.35 us (94.0%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (68.8%)
Info: cfl dt = 0.004687225288863662 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8697e+05 | 262144 | 1 | 3.331e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.65672023896527 (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 : 6.57 us (1.7%)
patch tree reduce : 1744.00 ns (0.5%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 366.33 us (94.6%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (72.0%)
Info: cfl dt = 0.00468722504443367 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7984e+05 | 262144 | 1 | 3.362e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.19772709311395 (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 : 6.72 us (1.7%)
patch tree reduce : 1703.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.3%)
LB compute : 376.75 us (94.6%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (67.9%)
Info: cfl dt = 0.004687225036305165 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9036e+05 | 262144 | 1 | 3.317e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.87458683518744 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49601809135652203, dt = 0.004687225036305165
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.14 us (1.9%)
patch tree reduce : 1654.00 ns (0.4%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 354.31 us (94.3%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (71.3%)
Info: cfl dt = 0.00468722523621568 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9713e+05 | 262144 | 1 | 3.289e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.31068255627646 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5007053163928272, dt = 0.0006104730808570435
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (1.7%)
patch tree reduce : 1774.00 ns (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 366.96 us (94.3%)
LB move op cnt : 0
LB apply : 4.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (75.8%)
Info: cfl dt = 0.004687225287887825 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4994e+05 | 262144 | 1 | 3.496e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.287190112862204 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 277.005422692 (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 : 10.27 us (2.6%)
patch tree reduce : 1853.00 ns (0.5%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 372.78 us (94.1%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (66.7%)
Info: cfl dt = 0.004687225687580076 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0244e+05 | 262144 | 1 | 3.267e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.65218448312877 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5060030147615721, dt = 0.004687225687580076
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (1.8%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 1232.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 374.86 us (94.5%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (64.8%)
Info: cfl dt = 0.004687226248431676 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8980e+05 | 262144 | 1 | 3.319e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.838848286146444 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5106902404491521, dt = 0.004687226248431676
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (1.7%)
patch tree reduce : 1733.00 ns (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 368.71 us (94.6%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (72.5%)
Info: cfl dt = 0.004687226955426723 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0258e+05 | 262144 | 1 | 3.266e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.66169052414498 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5153774666975838, dt = 0.004687226955426723
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (1.7%)
patch tree reduce : 1873.00 ns (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 369.97 us (94.4%)
LB move op cnt : 0
LB apply : 4.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (72.8%)
Info: cfl dt = 0.00468722776570291 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9492e+05 | 262144 | 1 | 3.298e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.168550166753086 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5200646936530104, dt = 0.00468722776570291
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (1.6%)
patch tree reduce : 1844.00 ns (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 379.40 us (94.6%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (72.6%)
Info: cfl dt = 0.004687228666571532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9473e+05 | 262144 | 1 | 3.299e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.155889687667184 (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 : 7.49 us (2.1%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1373.00 ns (0.4%)
LB compute : 340.60 us (93.7%)
LB move op cnt : 0
LB apply : 4.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (64.3%)
Info: cfl dt = 0.004687229662310157 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9346e+05 | 262144 | 1 | 3.304e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.07450899991304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.529439150085285, dt = 0.004687229662310157
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (1.7%)
patch tree reduce : 2.08 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.2%)
LB compute : 381.54 us (94.5%)
LB move op cnt : 0
LB apply : 4.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (72.9%)
Info: cfl dt = 0.004687230740544409 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9233e+05 | 262144 | 1 | 3.309e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.001828543877814 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5341263797475951, dt = 0.0006104623576680401
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (1.8%)
patch tree reduce : 1724.00 ns (0.4%)
gen split merge : 1092.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 369.33 us (94.3%)
LB move op cnt : 0
LB apply : 4.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (66.1%)
Info: cfl dt = 0.004687230893819568 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7472e+05 | 262144 | 1 | 3.384e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.494817662635267 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 280.11256075 (s) [Godunov][rank=0]
amr::Godunov: t = 0.5347368421052632, dt = 0.004687230893819568
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.18 us (2.5%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 383.67 us (94.3%)
LB move op cnt : 0
LB apply : 4.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (70.3%)
Info: cfl dt = 0.004687232087359084 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.4627e+05 | 262144 | 1 | 4.056e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.59993625303645 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5394240729990828, dt = 0.004687232087359084
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (1.5%)
patch tree reduce : 1954.00 ns (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 420.27 us (95.1%)
LB move op cnt : 0
LB apply : 4.14 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (65.9%)
Info: cfl dt = 0.004687233386048093 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9008e+05 | 262144 | 1 | 3.318e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.85688077302918 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5441113050864419, dt = 0.004687233386048093
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (1.6%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 413.03 us (95.2%)
LB move op cnt : 0
LB apply : 3.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (71.3%)
Info: cfl dt = 0.004687234772178767 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0517e+05 | 262144 | 1 | 3.256e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.82842562079053 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5487985384724899, dt = 0.004687234772178767
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (1.4%)
patch tree reduce : 2.37 us (0.5%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 414.80 us (95.0%)
LB move op cnt : 0
LB apply : 4.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (71.2%)
Info: cfl dt = 0.004687236213515615 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0066e+05 | 262144 | 1 | 3.274e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.53812841661138 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5534857732446687, dt = 0.004687236213515615
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (1.7%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 364.62 us (94.5%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (69.5%)
Info: cfl dt = 0.004687237682170428 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9981e+05 | 262144 | 1 | 3.278e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.483004237401715 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5581730094581844, dt = 0.004687237682170428
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (1.5%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.2%)
LB compute : 418.92 us (95.2%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (69.6%)
Info: cfl dt = 0.004687239153525046 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0342e+05 | 262144 | 1 | 3.263e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.71595750343182 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5628602471403548, dt = 0.004687239153525046
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (1.6%)
patch tree reduce : 1923.00 ns (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 399.67 us (94.8%)
LB move op cnt : 0
LB apply : 4.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (74.1%)
Info: cfl dt = 0.004687240606236026 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0476e+05 | 262144 | 1 | 3.257e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.80214082821961 (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 : 6.33 us (1.6%)
patch tree reduce : 1733.00 ns (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 384.13 us (95.0%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (63.5%)
Info: cfl dt = 0.004687240794374505 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0616e+05 | 262144 | 1 | 3.252e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.75779354359064 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 283.26475115100004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.5681578947368421, dt = 0.004687240794374505
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.33 us (2.3%)
patch tree reduce : 1543.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 426.82 us (94.8%)
LB move op cnt : 0
LB apply : 4.07 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (68.4%)
Info: cfl dt = 0.0046872421978846465 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.7311e+05 | 262144 | 1 | 3.895e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.32785371868989 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5728451355312166, dt = 0.0046872421978846465
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (1.7%)
patch tree reduce : 1903.00 ns (0.5%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 375.97 us (94.7%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (64.7%)
Info: cfl dt = 0.004687243544542626 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9190e+05 | 262144 | 1 | 3.310e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.974302277438156 (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 : 6.42 us (1.4%)
patch tree reduce : 1664.00 ns (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 428.57 us (95.3%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (69.8%)
Info: cfl dt = 0.004687244822981616 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7395e+05 | 262144 | 1 | 3.387e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.818845549646454 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5822196212736439, dt = 0.004687244822981616
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (1.5%)
patch tree reduce : 23.02 us (5.1%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.2%)
LB compute : 411.74 us (90.5%)
LB move op cnt : 0
LB apply : 4.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (73.6%)
Info: cfl dt = 0.004687246026629418 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9040e+05 | 262144 | 1 | 3.317e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.87770342836735 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5869068660966256, dt = 0.004687246026629418
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (1.6%)
patch tree reduce : 1774.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1312.00 ns (0.3%)
LB compute : 395.90 us (95.0%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (68.8%)
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 | 8.0213e+05 | 262144 | 1 | 3.268e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.63264079719849 (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.81 us (1.7%)
patch tree reduce : 2.29 us (0.6%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 391.09 us (94.7%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (66.4%)
Info: cfl dt = 0.004687248200669637 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5648e+05 | 262144 | 1 | 3.465e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.69432070600438 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5962813592758922, dt = 0.004687248200669637
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (1.8%)
patch tree reduce : 1723.00 ns (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 326.34 us (94.1%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (71.4%)
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 | 7.8992e+05 | 262144 | 1 | 3.319e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.846607511576124 (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 : 6.79 us (1.8%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 1092.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 357.15 us (94.1%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (71.9%)
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 | 8.0499e+05 | 262144 | 1 | 3.257e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.747187947847322 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 286.443088589 (s) [Godunov][rank=0]
amr::Godunov: t = 0.6015789473684211, dt = 0.004687249297860125
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.56 us (3.0%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 360.38 us (93.6%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (67.7%)
Info: cfl dt = 0.004687250185202724 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.5820e+05 | 262144 | 1 | 3.983e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.367858790817415 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6062661966662812, dt = 0.004687250185202724
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (1.5%)
patch tree reduce : 1894.00 ns (0.4%)
gen split merge : 1112.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 408.62 us (95.1%)
LB move op cnt : 0
LB apply : 4.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (70.7%)
Info: cfl dt = 0.004687251006978441 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1199e+05 | 262144 | 1 | 3.682e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.830301819988016 (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 : 6.92 us (1.7%)
patch tree reduce : 1893.00 ns (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 384.88 us (94.7%)
LB move op cnt : 0
LB apply : 4.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (68.9%)
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 | 8.0219e+05 | 262144 | 1 | 3.268e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.63655089604881 (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 : 6.68 us (1.6%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.3%)
LB compute : 362.83 us (89.4%)
LB move op cnt : 0
LB apply : 24.97 us (6.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (72.0%)
Info: cfl dt = 0.004687252477173685 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9771e+05 | 262144 | 1 | 3.286e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.34829980428086 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6203279496276854, dt = 0.004687252477173685
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (1.7%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 341.84 us (94.3%)
LB move op cnt : 0
LB apply : 4.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (69.6%)
Info: cfl dt = 0.004687253135355408 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9761e+05 | 262144 | 1 | 3.287e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.34205565705571 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6250152021048592, dt = 0.004687253135355408
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.7%)
patch tree reduce : 1673.00 ns (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 338.48 us (94.3%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (69.1%)
Info: cfl dt = 0.004687253747330769 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5885e+05 | 262144 | 1 | 3.455e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.84665055388033 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6297024552402146, dt = 0.004687253747330769
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (1.7%)
patch tree reduce : 1704.00 ns (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1292.00 ns (0.3%)
LB compute : 356.46 us (94.6%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (66.9%)
Info: cfl dt = 0.004687254315761985 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0062e+05 | 262144 | 1 | 3.742e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.098548245403705 (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 : 6.36 us (1.5%)
patch tree reduce : 1914.00 ns (0.5%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1283.00 ns (0.3%)
LB compute : 401.17 us (95.1%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (70.4%)
Info: cfl dt = 0.004687254392722073 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0182e+05 | 262144 | 1 | 3.735e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.882029713293441 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 289.74654676200004 (s) [Godunov][rank=0]
Total running time of the script: (4 minutes 49.916 seconds)
Estimated memory usage: 1621 MB