Note
Go to the end to download the full example code.
Advection test in RAMSES solver#
Compare advection with all slope limiters & Riemann solvers
8 import os
9
10 import matplotlib.pyplot as plt
11 import numpy as np
12
13 import shamrock
14
15 # If we use the shamrock executable to run this script instead of the python interpreter,
16 # we should not initialize the system as the shamrock executable needs to handle specific MPI logic
17 if not shamrock.sys.is_initialized():
18 shamrock.change_loglevel(1)
19 shamrock.sys.init("0:0")
20
21 tmax = 1.0
22 timestamps = 40
23
24 multx = 1
25 multy = 1
26 multz = 1
27
28 sz = 1 << 1
29 base = 16
30
31 positions = [(x, 0, 0) for x in np.linspace(0, 1, 256).tolist()[:-1]]
32
33
34 def run_advect(slope_limiter: str, riemann_solver: str, only_last_step: bool = True):
35 ctx = shamrock.Context()
36 ctx.pdata_layout_new()
37
38 model = shamrock.get_Model_Ramses(context=ctx, vector_type="f64_3", grid_repr="i64_3")
39
40 cfg = model.gen_default_config()
41 scale_fact = 1 / (sz * base * multx)
42 cfg.set_scale_factor(scale_fact)
43 cfg.set_eos_gamma(1.00001)
44
45 if slope_limiter == "none":
46 cfg.set_slope_lim_none()
47 elif slope_limiter == "vanleer":
48 cfg.set_slope_lim_vanleer_f()
49 elif slope_limiter == "vanleer_std":
50 cfg.set_slope_lim_vanleer_std()
51 elif slope_limiter == "vanleer_sym":
52 cfg.set_slope_lim_vanleer_sym()
53 elif slope_limiter == "minmod":
54 cfg.set_slope_lim_minmod()
55 else:
56 raise ValueError(f"Invalid slope limiter: {slope_limiter}")
57
58 if riemann_solver == "rusanov":
59 cfg.set_riemann_solver_rusanov()
60 elif riemann_solver == "hll":
61 cfg.set_riemann_solver_hll()
62 elif riemann_solver == "hllc":
63 cfg.set_riemann_solver_hllc()
64 else:
65 raise ValueError(f"Invalid Riemann solver: {riemann_solver}")
66
67 model.set_solver_config(cfg)
68
69 model.init_scheduler(int(1e7), 1)
70 model.make_base_grid((0, 0, 0), (sz, sz, sz), (base * multx, base * multy, base * multz))
71
72 def rho_map(rmin, rmax):
73 x, y, z = rmin
74
75 if x < 0.6 and x > 0.4:
76 return 2
77
78 return 1.0
79
80 def rhoe_map(rmin, rmax):
81 rho = rho_map(rmin, rmax)
82 return 1.0 * rho
83
84 def rhovel_map(rmin, rmax):
85 x, y, z = rmin
86 rho = rho_map(rmin, rmax)
87 return (1 * rho, 0 * rho, 0 * rho)
88
89 model.set_field_value_lambda_f64("rho", rho_map)
90 model.set_field_value_lambda_f64("rhoetot", rhoe_map)
91 model.set_field_value_lambda_f64_3("rhovel", rhovel_map)
92
93 results = []
94
95 def analysis(iplot: int):
96 rho_vals = model.render_slice("rho", "f64", positions)
97 results.append(rho_vals)
98
99 if only_last_step:
100 model.evolve_until(tmax)
101 analysis(timestamps)
102 else:
103 dt_evolve = tmax / timestamps
104
105 for i in range(timestamps + 1):
106 model.evolve_until(dt_evolve * i)
107 analysis(i)
108
109 return results
-> 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 )
113 data = {}
114 data["none_rusanov"] = run_advect("none", "rusanov")
115 data["none_hll"] = run_advect("none", "hll")
116 data["none_hllc"] = run_advect("none", "hllc")
117 data["vanleer_sym_rusanov"] = run_advect("vanleer_sym", "rusanov")
118 data["vanleer_sym_hll"] = run_advect("vanleer_sym", "hll")
119 data["vanleer_sym_hllc"] = run_advect("vanleer_sym", "hllc")
120 data["minmod_rusanov"] = run_advect("minmod", "rusanov")
121 data["minmod_hll"] = run_advect("minmod", "hll")
122 data["minmod_hllc"] = run_advect("minmod", "hllc", only_last_step=False)
Info: pushing data in scheduler, N = 4096 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 4.12 ms [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: Compute load ... [DataInserterUtility][rank=0]
Info: run scheduler step ... [DataInserterUtility][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (54.4%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1863.00 ns (0.2%)
patch tree reduce : 1683.00 ns (0.2%)
gen split merge : 762.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.1%)
LB compute : 979.67 us (98.6%)
LB move op cnt : 0
LB apply : 4.73 us (0.5%)
Info: patch count stable after 1 runs npatch = 1 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.54 us (2.1%)
patch tree reduce : 1964.00 ns (0.4%)
gen split merge : 1032.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 516.75 us (95.0%)
LB move op cnt : 0
LB apply : 4.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.63 us (67.9%)
Info: cfl dt = 0.009354083528780794 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3195e+05 | 32768 | 1 | 9.871e-02 | 0.0% | 1.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.009354083528780794
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (1.8%)
patch tree reduce : 1693.00 ns (0.5%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 354.25 us (94.4%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (67.4%)
Info: cfl dt = 0.009354078154867489 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3935e+05 | 32768 | 1 | 9.656e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 348.7357432854089 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009354083528780794, dt = 0.009354078154867489
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (1.8%)
patch tree reduce : 1774.00 ns (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.3%)
LB compute : 344.03 us (94.4%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (68.1%)
Info: cfl dt = 0.009354074277069498 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3002e+05 | 32768 | 1 | 7.620e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 441.91439728766267 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018708161683648285, dt = 0.009354074277069498
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (1.7%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 362.23 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.49 us (68.6%)
Info: cfl dt = 0.009354072018832286 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2630e+05 | 32768 | 1 | 7.687e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 438.09080751972107 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02806223596071778, dt = 0.009354072018832286
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (1.8%)
patch tree reduce : 1683.00 ns (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 333.19 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.28 us (68.3%)
Info: cfl dt = 0.009354070483930324 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1926e+05 | 32768 | 1 | 7.816e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 430.86085113396786 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03741630797955007, dt = 0.009354070483930324
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (1.6%)
patch tree reduce : 2.12 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.3%)
LB compute : 369.76 us (94.5%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (68.6%)
Info: cfl dt = 0.009354067490108805 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4783e+05 | 32768 | 1 | 7.317e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 460.21601418615813 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.046770378463480394, dt = 0.009354067490108805
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (1.7%)
patch tree reduce : 2.08 us (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 : 370.07 us (94.5%)
LB move op cnt : 0
LB apply : 4.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (68.7%)
Info: cfl dt = 0.00935406578598996 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3635e+05 | 32768 | 1 | 7.510e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 448.41835827566814 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0561244459535892, dt = 0.00935406578598996
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.5%)
patch tree reduce : 1923.00 ns (0.5%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1021.00 ns (0.3%)
LB compute : 364.84 us (94.6%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (67.5%)
Info: cfl dt = 0.009354065143266508 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3375e+05 | 32768 | 1 | 7.555e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 445.75174323326473 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06547851173957916, dt = 0.009354065143266508
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (1.8%)
patch tree reduce : 1844.00 ns (0.5%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.3%)
LB compute : 354.79 us (94.3%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (70.5%)
Info: cfl dt = 0.009354062533017425 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1484e+05 | 32768 | 1 | 7.899e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 426.3162289704109 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07483257688284567, dt = 0.009354062533017425
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.6%)
patch tree reduce : 1783.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 337.96 us (94.5%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (65.4%)
Info: cfl dt = 0.009354061015738298 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2642e+05 | 32768 | 1 | 7.684e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 438.2153423776876 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0841866394158631, dt = 0.009354061015738298
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (1.7%)
patch tree reduce : 2.10 us (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 363.01 us (94.5%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (71.0%)
Info: cfl dt = 0.009354060470775567 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2453e+05 | 32768 | 1 | 7.719e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 436.2769382890134 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0935407004316014, dt = 0.009354060470775567
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.7%)
patch tree reduce : 1823.00 ns (0.5%)
gen split merge : 1232.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.3%)
LB compute : 345.28 us (94.1%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (70.2%)
Info: cfl dt = 0.009354058471759078 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3463e+05 | 32768 | 1 | 7.539e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 446.65528054988073 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10289476090237697, dt = 0.009354058471759078
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 1823.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.4%)
LB compute : 315.60 us (93.9%)
LB move op cnt : 0
LB apply : 4.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (68.4%)
Info: cfl dt = 0.009354057020883638 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2084e+05 | 32768 | 1 | 7.786e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 432.482131421078 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11224881937413604, dt = 0.009354057020883638
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (1.7%)
patch tree reduce : 1823.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 359.38 us (94.3%)
LB move op cnt : 0
LB apply : 4.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (70.0%)
Info: cfl dt = 0.009354056461091628 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2773e+05 | 32768 | 1 | 7.661e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 439.56330841428667 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12160287639501968, dt = 0.009354056461091628
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.8%)
patch tree reduce : 1683.00 ns (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 315.53 us (94.0%)
LB move op cnt : 0
LB apply : 4.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (63.0%)
Info: cfl dt = 0.009354054972399724 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3267e+05 | 32768 | 1 | 7.573e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 444.6408403802952 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13095693285611132, dt = 0.009354054972399724
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (1.8%)
patch tree reduce : 1824.00 ns (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 356.54 us (94.1%)
LB move op cnt : 0
LB apply : 4.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (69.9%)
Info: cfl dt = 0.009354053539491454 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4491e+05 | 32768 | 1 | 7.365e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 457.21524068238864 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14031098782851104, dt = 0.009354053539491454
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.6%)
patch tree reduce : 1884.00 ns (0.5%)
gen split merge : 1312.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 358.00 us (94.3%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (68.5%)
Info: cfl dt = 0.009354052941923994 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4120e+05 | 32768 | 1 | 7.427e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 453.40810484254104 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1496650413680025, dt = 0.009354052941923994
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (1.7%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1021.00 ns (0.3%)
LB compute : 365.09 us (94.5%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (69.9%)
Info: cfl dt = 0.009354051876831915 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2784e+05 | 32768 | 1 | 7.659e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 439.67334322739475 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15901909430992647, dt = 0.009354051876831915
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.9%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 302.97 us (93.4%)
LB move op cnt : 0
LB apply : 3.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (66.4%)
Info: cfl dt = 0.009354050442380238 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2293e+05 | 32768 | 1 | 7.748e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 434.6291618023728 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1683731461867584, dt = 0.009354050442380238
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.8%)
patch tree reduce : 1863.00 ns (0.6%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1342.00 ns (0.4%)
LB compute : 312.74 us (93.7%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1964.00 ns (64.9%)
Info: cfl dt = 0.0093540498030328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1858e+05 | 32768 | 1 | 7.828e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 430.159343763602 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17772719662913863, dt = 0.0093540498030328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (1.7%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 350.43 us (94.3%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (71.1%)
Info: cfl dt = 0.0093540490971823 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3160e+05 | 32768 | 1 | 7.592e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 443.54259560257714 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18708124643217144, dt = 0.0093540490971823
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.9%)
patch tree reduce : 23.37 us (7.0%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 292.93 us (87.4%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (70.1%)
Info: cfl dt = 0.009354047654143367 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3454e+05 | 32768 | 1 | 7.541e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 446.56085602762397 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19643529552935374, dt = 0.009354047654143367
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.5%)
patch tree reduce : 1864.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 : 375.18 us (94.7%)
LB move op cnt : 0
LB apply : 4.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (66.5%)
Info: cfl dt = 0.009354046975370896 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0519e+05 | 32768 | 1 | 1.074e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.6380496060174 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2057893431834971, dt = 0.009354046975370896
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.6%)
patch tree reduce : 1823.00 ns (0.5%)
gen split merge : 1113.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 353.74 us (94.6%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.2%)
Info: cfl dt = 0.009354046578103365 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0672e+05 | 32768 | 1 | 1.068e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.2043101980633 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.215143390158868, dt = 0.009354046578103365
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.7%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 331.45 us (94.1%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (70.9%)
Info: cfl dt = 0.009354045124655198 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1288e+05 | 32768 | 1 | 1.047e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.5391299541889 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22449743673697137, dt = 0.009354045124655198
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.7%)
patch tree reduce : 1974.00 ns (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 333.76 us (94.0%)
LB move op cnt : 0
LB apply : 4.32 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (70.4%)
Info: cfl dt = 0.009354044410337435 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0976e+05 | 32768 | 1 | 1.058e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.33295960440466 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23385148186162658, dt = 0.009354044410337435
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.8%)
patch tree reduce : 1923.00 ns (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 335.37 us (94.1%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (69.3%)
Info: cfl dt = 0.009354044281010044 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0501e+05 | 32768 | 1 | 1.074e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.44560411777275 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.243205526271964, dt = 0.009354044281010044
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (1.8%)
patch tree reduce : 1743.00 ns (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 330.76 us (94.0%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (67.9%)
Info: cfl dt = 0.009354042817278804 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0813e+05 | 32768 | 1 | 1.063e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.6559852759403 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.25255957055297407, dt = 0.009354042817278804
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.7%)
patch tree reduce : 1853.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 339.59 us (94.4%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (65.5%)
Info: cfl dt = 0.009354042071036399 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1151e+05 | 32768 | 1 | 1.052e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.1326877693737 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2619136133702529, dt = 0.009354042071036399
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.7%)
patch tree reduce : 1984.00 ns (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 328.59 us (94.1%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.0%)
Info: cfl dt = 0.00935404202896072 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0736e+05 | 32768 | 1 | 1.066e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.85848765721175 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2712676554412893, dt = 0.00935404202896072
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.6%)
patch tree reduce : 1833.00 ns (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 335.96 us (94.3%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (70.3%)
Info: cfl dt = 0.00935404070347925 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1522e+05 | 32768 | 1 | 1.040e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.9437921245198 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28062169747025, dt = 0.00935404070347925
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.8%)
patch tree reduce : 1783.00 ns (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 305.27 us (93.8%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (69.4%)
Info: cfl dt = 0.009354039928131318 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1160e+05 | 32768 | 1 | 1.052e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.2242051557361 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28997573817372924, dt = 0.009354039928131318
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (2.0%)
patch tree reduce : 1924.00 ns (0.6%)
gen split merge : 1222.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.4%)
LB compute : 294.44 us (93.5%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.3%)
Info: cfl dt = 0.00935403984528073 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1482e+05 | 32768 | 1 | 1.041e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.53206126335033 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29932977810186057, dt = 0.00935403984528073
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.0%)
patch tree reduce : 1794.00 ns (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 299.10 us (93.4%)
LB move op cnt : 0
LB apply : 3.97 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (66.5%)
Info: cfl dt = 0.009354038760118855 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0844e+05 | 32768 | 1 | 1.062e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.97499999586427 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3086838179471413, dt = 0.009354038760118855
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (1.9%)
patch tree reduce : 1834.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 315.81 us (93.8%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1954.00 ns (66.3%)
Info: cfl dt = 0.009354037957631 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0971e+05 | 32768 | 1 | 1.058e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.28252323040863 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31803785670726015, dt = 0.009354037957631
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.8%)
patch tree reduce : 1784.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 : 306.77 us (94.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (66.5%)
Info: cfl dt = 0.009354037835569031 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1148e+05 | 32768 | 1 | 1.052e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.1010893384499 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32739189466489116, dt = 0.009354037835569031
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.6%)
patch tree reduce : 1884.00 ns (0.5%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 346.88 us (94.0%)
LB move op cnt : 0
LB apply : 4.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (68.7%)
Info: cfl dt = 0.00935403696795832 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1065e+05 | 32768 | 1 | 1.055e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 319.24354050075567 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3367459325004602, dt = 0.00935403696795832
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.7%)
patch tree reduce : 1693.00 ns (0.5%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1243.00 ns (0.4%)
LB compute : 331.35 us (94.2%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (68.4%)
Info: cfl dt = 0.009354036139564027 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0465e+05 | 32768 | 1 | 1.076e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.0827669980356 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.34609996946841853, dt = 0.009354036139564027
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.5%)
patch tree reduce : 1773.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 348.71 us (94.6%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (7.0%)
Info: cfl dt = 0.009354035979159948 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0678e+05 | 32768 | 1 | 1.068e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.2681884868751 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35545400560798257, dt = 0.009354035979159948
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.5%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 337.00 us (94.4%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (67.9%)
Info: cfl dt = 0.009354035310740345 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0771e+05 | 32768 | 1 | 1.065e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.224860089094 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36480804158714253, dt = 0.009354035310740345
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.6%)
patch tree reduce : 1574.00 ns (0.4%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 343.45 us (94.6%)
LB move op cnt : 0
LB apply : 3.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.0%)
Info: cfl dt = 0.009354034457104234 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0594e+05 | 32768 | 1 | 1.071e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 314.4025143167913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3741620768978829, dt = 0.009354034457104234
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.6%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 330.44 us (94.2%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (68.5%)
Info: cfl dt = 0.009354034258738158 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0815e+05 | 32768 | 1 | 1.063e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.67262918239703 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38351611135498714, dt = 0.009354034258738158
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.6%)
patch tree reduce : 1723.00 ns (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 344.73 us (94.6%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.3%)
Info: cfl dt = 0.009354033774577327 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0706e+05 | 32768 | 1 | 1.067e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.55122576924555 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3928701456137253, dt = 0.009354033774577327
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.7%)
patch tree reduce : 2.15 us (0.6%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 312.19 us (93.7%)
LB move op cnt : 0
LB apply : 3.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1933.00 ns (64.3%)
Info: cfl dt = 0.0093540328959494 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0022e+05 | 32768 | 1 | 1.091e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.5234639525718 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4022241793883026, dt = 0.0093540328959494
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.8%)
patch tree reduce : 1944.00 ns (0.6%)
gen split merge : 1483.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1332.00 ns (0.4%)
LB compute : 327.99 us (93.8%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (67.5%)
Info: cfl dt = 0.009354032659677571 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0929e+05 | 32768 | 1 | 1.059e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 317.8416386148053 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.411578212284252, dt = 0.009354032659677571
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.9%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 304.33 us (93.6%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (63.6%)
Info: cfl dt = 0.0093540323475121 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0907e+05 | 32768 | 1 | 1.060e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 317.6250138543956 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42093224494392956, dt = 0.0093540323475121
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.6%)
patch tree reduce : 1784.00 ns (0.5%)
gen split merge : 1352.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 343.94 us (94.0%)
LB move op cnt : 0
LB apply : 4.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (68.2%)
Info: cfl dt = 0.009354031443856426 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0662e+05 | 32768 | 1 | 1.069e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.1051482945288 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43028627729144164, dt = 0.009354031443856426
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.6%)
patch tree reduce : 1673.00 ns (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 332.69 us (94.3%)
LB move op cnt : 0
LB apply : 3.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (66.8%)
Info: cfl dt = 0.009354031169536195 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1810e+05 | 32768 | 1 | 1.030e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.90406115735937 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4396403087352981, dt = 0.009354031169536195
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.6%)
patch tree reduce : 1704.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 335.14 us (94.6%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (67.5%)
Info: cfl dt = 0.009354031019185824 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1746e+05 | 32768 | 1 | 1.032e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.24023861823406 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4489943399048343, dt = 0.009354031019185824
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (2.1%)
patch tree reduce : 1883.00 ns (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1293.00 ns (0.4%)
LB compute : 295.30 us (93.4%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1943.00 ns (66.9%)
Info: cfl dt = 0.009354030090281436 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2215e+05 | 32768 | 1 | 1.017e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 331.058807574151 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4583483709240201, dt = 0.009354030090281436
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.9%)
patch tree reduce : 1693.00 ns (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 300.45 us (93.7%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (66.3%)
Info: cfl dt = 0.009354029777662143 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1223e+05 | 32768 | 1 | 1.049e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.86646707143694 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46770240101430155, dt = 0.009354029777662143
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.7%)
patch tree reduce : 1694.00 ns (0.5%)
gen split merge : 1272.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 329.77 us (94.1%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (66.2%)
Info: cfl dt = 0.009354029780577748 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2705e+05 | 32768 | 1 | 1.002e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.09557066647983 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4770564307919637, dt = 0.009354029780577748
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.6%)
patch tree reduce : 1853.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 323.25 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.09 us (69.2%)
Info: cfl dt = 0.00935402882609473 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1214e+05 | 32768 | 1 | 1.050e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.7770717527692 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48641046057254145, dt = 0.00935402882609473
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.8%)
patch tree reduce : 1683.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 296.75 us (93.8%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1953.00 ns (67.7%)
Info: cfl dt = 0.009354028474881829 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3103e+05 | 32768 | 1 | 9.899e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.18656918522953 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49576448939863615, dt = 0.009354028474881829
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.6%)
patch tree reduce : 1814.00 ns (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 344.93 us (94.6%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (71.5%)
Info: cfl dt = 0.009354028623796301 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2550e+05 | 32768 | 1 | 1.007e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.50779348689235 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.505118517873518, dt = 0.009354028623796301
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.6%)
patch tree reduce : 1723.00 ns (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 332.26 us (94.3%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.5%)
Info: cfl dt = 0.009354027643351559 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2694e+05 | 32768 | 1 | 1.002e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.98311817973945 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5144725464973143, dt = 0.009354027643351559
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.8%)
patch tree reduce : 1824.00 ns (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 311.70 us (93.9%)
LB move op cnt : 0
LB apply : 3.87 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (68.5%)
Info: cfl dt = 0.009354027253250555 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3013e+05 | 32768 | 1 | 9.926e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.2590984579154 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5238265741406659, dt = 0.009354027253250555
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.5%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 357.09 us (94.8%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (67.8%)
Info: cfl dt = 0.009354027460082317 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3051e+05 | 32768 | 1 | 9.914e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.657181411007 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5331806013939164, dt = 0.009354027460082317
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.8%)
patch tree reduce : 1813.00 ns (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 295.41 us (93.8%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1953.00 ns (65.9%)
Info: cfl dt = 0.009354026535105765 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0662e+05 | 32768 | 1 | 1.069e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.1074368716609 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5425346288539987, dt = 0.009354026535105765
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.6%)
patch tree reduce : 1694.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 318.25 us (94.4%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.7%)
Info: cfl dt = 0.00935402610585136 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2347e+05 | 32768 | 1 | 1.013e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.417313978318 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5518886553891045, dt = 0.00935402610585136
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (1.9%)
patch tree reduce : 1713.00 ns (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 335.06 us (94.3%)
LB move op cnt : 0
LB apply : 3.25 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1984.00 ns (66.9%)
Info: cfl dt = 0.00935402626236233 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2559e+05 | 32768 | 1 | 1.006e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.59955106314675 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5612426814949558, dt = 0.00935402626236233
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.6%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 334.60 us (94.2%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.0%)
Info: cfl dt = 0.009354025495257013 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3018e+05 | 32768 | 1 | 9.924e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.3130874443293 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5705967077573182, dt = 0.009354025495257013
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.5%)
patch tree reduce : 1894.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 : 348.00 us (94.5%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (69.0%)
Info: cfl dt = 0.009354025026631567 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1467e+05 | 32768 | 1 | 1.041e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.3701474436985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5799507332525752, dt = 0.009354025026631567
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.8%)
patch tree reduce : 1623.00 ns (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 320.99 us (94.2%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.1%)
Info: cfl dt = 0.009354025132565651 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8493e+05 | 32768 | 1 | 1.150e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 292.80808708161453 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5893047582792067, dt = 0.009354025132565651
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.6%)
patch tree reduce : 1783.00 ns (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1033.00 ns (0.3%)
LB compute : 356.91 us (94.6%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (69.6%)
Info: cfl dt = 0.009354024518424781 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9057e+05 | 32768 | 1 | 1.128e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 298.61026830714894 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5986587834117724, dt = 0.009354024518424781
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.6%)
patch tree reduce : 1783.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 340.99 us (94.5%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (67.0%)
Info: cfl dt = 0.009354024010269163 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1222e+05 | 32768 | 1 | 1.050e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.85405612453206 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6080128079301972, dt = 0.009354024010269163
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.7%)
patch tree reduce : 1833.00 ns (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 333.45 us (94.1%)
LB move op cnt : 0
LB apply : 4.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (68.6%)
Info: cfl dt = 0.009354024065485267 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1190e+05 | 32768 | 1 | 1.051e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.53047147595083 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6173668319404664, dt = 0.009354024065485267
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.5%)
patch tree reduce : 1804.00 ns (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 361.79 us (94.8%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (70.7%)
Info: cfl dt = 0.009354023599843855 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1023e+05 | 32768 | 1 | 1.056e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.8124503063644 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6267208560059516, dt = 0.009354023599843855
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (0.9%)
patch tree reduce : 1844.00 ns (0.3%)
gen split merge : 972.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1333.00 ns (0.2%)
LB compute : 659.21 us (96.9%)
LB move op cnt : 0
LB apply : 4.02 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (73.8%)
Info: cfl dt = 0.009354023052062932 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1314e+05 | 32768 | 1 | 1.046e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.8002804520429 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6360748796057955, dt = 0.009354023052062932
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.8%)
patch tree reduce : 1794.00 ns (0.5%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 330.60 us (94.0%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.7%)
Info: cfl dt = 0.009354023056527806 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1296e+05 | 32768 | 1 | 1.047e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.6188969625879 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6454289026578583, dt = 0.009354023056527806
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.7%)
patch tree reduce : 1813.00 ns (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 320.06 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.15 us (67.8%)
Info: cfl dt = 0.009354022735277166 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1810e+05 | 32768 | 1 | 1.030e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.9037680375634 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6547829257143861, dt = 0.009354022735277166
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (2.0%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.4%)
LB compute : 295.46 us (93.5%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (68.7%)
Info: cfl dt = 0.009354022147841616 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1338e+05 | 32768 | 1 | 1.046e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 322.0530544163157 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6641369484496633, dt = 0.009354022147841616
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (2.1%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 299.47 us (93.3%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.4%)
Info: cfl dt = 0.009354022101621652 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1210e+05 | 32768 | 1 | 1.050e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.73753735856934 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.673490970597505, dt = 0.009354022101621652
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (2.0%)
patch tree reduce : 1763.00 ns (0.5%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 300.76 us (93.5%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (68.5%)
Info: cfl dt = 0.009354021920942835 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1176e+05 | 32768 | 1 | 1.051e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.38702290471946 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6828449926991266, dt = 0.009354021920942835
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.7%)
patch tree reduce : 1884.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 327.19 us (94.1%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (68.3%)
Info: cfl dt = 0.009354021293888471 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1385e+05 | 32768 | 1 | 1.044e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 322.53598868090637 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6921990146200694, dt = 0.009354021293888471
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.9%)
patch tree reduce : 1883.00 ns (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1382.00 ns (0.4%)
LB compute : 293.56 us (93.5%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (65.5%)
Info: cfl dt = 0.00935402119714109 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0813e+05 | 32768 | 1 | 1.063e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.65777385663154 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7015530359139579, dt = 0.00935402119714109
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.9%)
patch tree reduce : 1663.00 ns (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 304.33 us (93.6%)
LB move op cnt : 0
LB apply : 3.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (69.8%)
Info: cfl dt = 0.009354021153452822 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1548e+05 | 32768 | 1 | 1.039e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.2056929393624 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.710907057111099, dt = 0.009354021153452822
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (2.0%)
patch tree reduce : 1843.00 ns (0.6%)
gen split merge : 1051.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 299.50 us (93.5%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.2%)
Info: cfl dt = 0.009354020486878245 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1447e+05 | 32768 | 1 | 1.042e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.17001474983516 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7202610782645519, dt = 0.009354020486878245
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 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 : 1102.00 ns (0.3%)
LB compute : 372.78 us (94.9%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (70.5%)
Info: cfl dt = 0.009354020339843281 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1140e+05 | 32768 | 1 | 1.052e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.0191175590965 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7296150987514302, dt = 0.009354020339843281
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.8%)
patch tree reduce : 1823.00 ns (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 302.98 us (93.6%)
LB move op cnt : 0
LB apply : 3.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (69.1%)
Info: cfl dt = 0.009354020429761092 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1815e+05 | 32768 | 1 | 1.030e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.9470447547826 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7389691190912734, dt = 0.009354020429761092
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.8%)
patch tree reduce : 1743.00 ns (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 305.48 us (94.0%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (67.9%)
Info: cfl dt = 0.00935401972382434 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1752e+05 | 32768 | 1 | 1.032e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.30633925347007 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7483231395210345, dt = 0.00935401972382434
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.7%)
patch tree reduce : 1594.00 ns (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 317.37 us (94.0%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1993.00 ns (66.8%)
Info: cfl dt = 0.009354019526815716 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1465e+05 | 32768 | 1 | 1.041e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.35187008791627 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7576771592448588, dt = 0.009354019526815716
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.0%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 303.14 us (93.5%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (68.8%)
Info: cfl dt = 0.009354019747119779 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1940e+05 | 32768 | 1 | 1.026e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.2358547497633 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7670311787716745, dt = 0.009354019747119779
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.9%)
patch tree reduce : 2.29 us (0.7%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 305.22 us (93.5%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (68.9%)
Info: cfl dt = 0.009354019002034334 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1942e+05 | 32768 | 1 | 1.026e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.26051266422826 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7763851985187943, dt = 0.009354019002034334
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (2.0%)
patch tree reduce : 1693.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 298.96 us (93.6%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1824.00 ns (65.5%)
Info: cfl dt = 0.009354018755432122 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2539e+05 | 32768 | 1 | 1.007e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.386852157435 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7857392175208286, dt = 0.009354018755432122
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.7%)
patch tree reduce : 1783.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 326.96 us (94.0%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.0%)
Info: cfl dt = 0.009354019015772761 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2513e+05 | 32768 | 1 | 1.008e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.12919538637067 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7950932362762607, dt = 0.009354019015772761
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.8%)
patch tree reduce : 1673.00 ns (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 327.32 us (94.2%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.6%)
Info: cfl dt = 0.009354018319072373 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3160e+05 | 32768 | 1 | 9.882e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.7693925944652 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8044472552920334, dt = 0.009354018319072373
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.7%)
patch tree reduce : 1693.00 ns (0.5%)
gen split merge : 1071.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.3%)
LB compute : 327.22 us (94.1%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.0%)
Info: cfl dt = 0.009354018023315354 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3685e+05 | 32768 | 1 | 9.728e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.17107438947886 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8138012736111058, dt = 0.009354018023315354
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.9%)
patch tree reduce : 1663.00 ns (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 300.07 us (93.9%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1893.00 ns (65.8%)
Info: cfl dt = 0.009354018225079646 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2766e+05 | 32768 | 1 | 1.000e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.7287922805242 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8231552916344211, dt = 0.009354018225079646
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.7%)
patch tree reduce : 1674.00 ns (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 292.90 us (94.1%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1873.00 ns (63.6%)
Info: cfl dt = 0.009354017672727356 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2903e+05 | 32768 | 1 | 9.959e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.12929896341535 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8325093098595008, dt = 0.009354017672727356
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.7%)
patch tree reduce : 1954.00 ns (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.3%)
LB compute : 313.62 us (94.0%)
LB move op cnt : 0
LB apply : 3.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (64.9%)
Info: cfl dt = 0.009354017328306107 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2506e+05 | 32768 | 1 | 1.008e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.05311017990545 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8418633275322281, dt = 0.009354017328306107
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.8%)
patch tree reduce : 1673.00 ns (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 312.46 us (93.8%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.0%)
Info: cfl dt = 0.00935401747209248 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2703e+05 | 32768 | 1 | 1.002e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.0756652074245 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8512173448605342, dt = 0.00935401747209248
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 26.38 us (2.0%)
patch tree reduce : 1913.00 ns (0.1%)
gen split merge : 971.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.1%)
LB compute : 1245.54 us (96.8%)
LB move op cnt : 0
LB apply : 3.63 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (68.7%)
Info: cfl dt = 0.009354017060985922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2489e+05 | 32768 | 1 | 1.009e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 333.87670489194954 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8605713623326268, dt = 0.009354017060985922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.7%)
patch tree reduce : 1793.00 ns (0.5%)
gen split merge : 1253.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 334.51 us (93.9%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (70.6%)
Info: cfl dt = 0.009354016668436388 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1227e+05 | 32768 | 1 | 1.049e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.9056637239026 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8699253793936127, dt = 0.009354016668436388
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (1.8%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1473.00 ns (0.4%)
LB compute : 339.62 us (94.1%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.2%)
Info: cfl dt = 0.009354016754898005 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1037e+05 | 32768 | 1 | 1.056e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.9590812684209 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8792793960620491, dt = 0.009354016754898005
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.9%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 308.89 us (94.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1874.00 ns (65.0%)
Info: cfl dt = 0.009354016482009696 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0275e+05 | 32768 | 1 | 1.082e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.1280264592579 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8886334128169471, dt = 0.009354016482009696
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.7%)
patch tree reduce : 1763.00 ns (0.5%)
gen split merge : 1232.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 320.75 us (94.0%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (68.4%)
Info: cfl dt = 0.009354016041907163 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0728e+05 | 32768 | 1 | 1.066e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.7835714457984 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8979874292989568, dt = 0.009354016041907163
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.8%)
patch tree reduce : 1924.00 ns (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 313.26 us (93.9%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.8%)
Info: cfl dt = 0.009354016071743689 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4468e+05 | 32768 | 1 | 7.369e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 456.98460823731966 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9073414453408639, dt = 0.009354016071743689
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.7%)
patch tree reduce : 1724.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.4%)
LB compute : 316.84 us (94.0%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (68.2%)
Info: cfl dt = 0.00935401593411606 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5137e+05 | 32768 | 1 | 7.260e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 463.85744827485746 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9166954614126076, dt = 0.00935401593411606
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.8%)
patch tree reduce : 1694.00 ns (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 292.53 us (93.8%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (67.3%)
Info: cfl dt = 0.00935401544706949 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4099e+05 | 32768 | 1 | 7.431e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 453.19062732065026 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9260494773467237, dt = 0.00935401544706949
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.8%)
patch tree reduce : 1653.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 299.79 us (93.9%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1933.00 ns (65.9%)
Info: cfl dt = 0.009354015421019697 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3646e+05 | 32768 | 1 | 7.508e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 448.5332938553297 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9354034927937932, dt = 0.009354015421019697
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.7%)
patch tree reduce : 1733.00 ns (0.5%)
gen split merge : 1213.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 326.32 us (94.3%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (67.2%)
Info: cfl dt = 0.009354015415762139 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2566e+05 | 32768 | 1 | 1.006e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.66468442260634 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9447575082148129, dt = 0.009354015415762139
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.8%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 311.19 us (93.8%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (69.0%)
Info: cfl dt = 0.009354014882408737 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1854e+05 | 32768 | 1 | 1.029e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 327.3562876267743 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9541115236305749, dt = 0.009354014882408737
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.6%)
patch tree reduce : 1834.00 ns (0.5%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1053.00 ns (0.3%)
LB compute : 311.28 us (88.0%)
LB move op cnt : 0
LB apply : 25.97 us (7.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (68.4%)
Info: cfl dt = 0.009354014801243725 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1566e+05 | 32768 | 1 | 1.038e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.39573415887264 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9634655385129837, dt = 0.009354014801243725
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.5%)
patch tree reduce : 1763.00 ns (0.4%)
gen split merge : 1223.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 371.78 us (94.8%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (70.1%)
Info: cfl dt = 0.009354014925531586 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0851e+05 | 32768 | 1 | 1.062e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 317.0432318082198 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9728195533142274, dt = 0.009354014925531586
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.9%)
patch tree reduce : 1924.00 ns (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.4%)
LB compute : 300.71 us (93.5%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1964.00 ns (68.3%)
Info: cfl dt = 0.00935401434653149 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0772e+05 | 32768 | 1 | 1.065e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.2311536501876 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.982173568239759, dt = 0.00935401434653149
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.6%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 356.79 us (94.6%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (67.6%)
Info: cfl dt = 0.009354014211048391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0455e+05 | 32768 | 1 | 1.076e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 312.9712689603114 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9915275825862905, dt = 0.008472417413709521
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.0%)
patch tree reduce : 1813.00 ns (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 304.86 us (93.8%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (67.9%)
Info: cfl dt = 0.0093540144973483 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1163e+05 | 32768 | 1 | 1.052e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 290.06825918607444 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 20.95379365 (s) [Godunov][rank=0]
Info: pushing data in scheduler, N = 4096 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 1397.72 us [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: Compute load ... [DataInserterUtility][rank=0]
Info: run scheduler step ... [DataInserterUtility][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (57.7%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1543.00 ns (0.5%)
patch tree reduce : 1142.00 ns (0.4%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 293.96 us (96.2%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: patch count stable after 1 runs npatch = 1 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.97 us (3.2%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 344.79 us (92.9%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (66.4%)
Info: cfl dt = 0.009354083528780794 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0911e+05 | 32768 | 1 | 1.060e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.009354083528780794
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.7%)
patch tree reduce : 1422.00 ns (0.4%)
gen split merge : 1192.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 343.77 us (94.5%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (66.5%)
Info: cfl dt = 0.009354072778192094 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1405e+05 | 32768 | 1 | 1.043e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 322.7441114979866 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009354083528780794, dt = 0.009354072778192094
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 1794.00 ns (0.6%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 297.78 us (93.8%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (66.4%)
Info: cfl dt = 0.009354070557356715 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1044e+05 | 32768 | 1 | 1.056e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 319.03075599614533 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018708156306972888, dt = 0.009354070557356715
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 28.64 us (8.0%)
patch tree reduce : 1362.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 : 315.31 us (88.1%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (70.7%)
Info: cfl dt = 0.009354069063258542 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1353e+05 | 32768 | 1 | 1.045e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 322.2099418742044 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028062226864329604, dt = 0.009354069063258542
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.8%)
patch tree reduce : 1894.00 ns (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1111.00 ns (0.3%)
LB compute : 322.54 us (93.9%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (69.6%)
Info: cfl dt = 0.009354065243429733 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1553e+05 | 32768 | 1 | 1.039e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.2577883511439 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03741629592758815, dt = 0.009354065243429733
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.8%)
patch tree reduce : 1573.00 ns (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1443.00 ns (0.4%)
LB compute : 308.40 us (93.8%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (67.0%)
Info: cfl dt = 0.009354063965791116 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0881e+05 | 32768 | 1 | 1.061e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 317.34912603173547 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04677036117101788, dt = 0.009354063965791116
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.9%)
patch tree reduce : 1693.00 ns (0.5%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 307.17 us (93.8%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (66.0%)
Info: cfl dt = 0.00935406293722296 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1573e+05 | 32768 | 1 | 1.038e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.4646662226215 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05612442513680899, dt = 0.00935406293722296
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.9%)
patch tree reduce : 1723.00 ns (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 293.62 us (93.7%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (66.7%)
Info: cfl dt = 0.00935406009155936 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1490e+05 | 32768 | 1 | 1.041e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.6090925063657 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06547848807403195, dt = 0.00935406009155936
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.6%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 338.42 us (94.5%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.6%)
Info: cfl dt = 0.009354058981621798 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1755e+05 | 32768 | 1 | 1.032e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.3360023960235 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0748325481655913, dt = 0.009354058981621798
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.8%)
patch tree reduce : 1272.00 ns (0.4%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 313.70 us (94.2%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (69.0%)
Info: cfl dt = 0.009354058398246823 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1022e+05 | 32768 | 1 | 1.056e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.805038253433 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0841866071472131, dt = 0.009354058398246823
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 302.43 us (94.0%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (70.2%)
Info: cfl dt = 0.009354055918166097 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1362e+05 | 32768 | 1 | 1.045e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 322.29927888531074 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09354066554545992, dt = 0.009354055918166097
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.9%)
patch tree reduce : 1463.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 302.98 us (93.9%)
LB move op cnt : 0
LB apply : 3.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (66.2%)
Info: cfl dt = 0.009354054828410799 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0551e+05 | 32768 | 1 | 1.073e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.96115211185304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10289472146362602, dt = 0.009354054828410799
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.8%)
patch tree reduce : 1322.00 ns (0.4%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.4%)
LB compute : 302.65 us (93.9%)
LB move op cnt : 0
LB apply : 3.74 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (67.8%)
Info: cfl dt = 0.009354054643917838 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1670e+05 | 32768 | 1 | 1.035e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 325.4588021956034 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11224877629203682, dt = 0.009354054643917838
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.8%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1432.00 ns (0.4%)
LB compute : 307.13 us (93.8%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.6%)
Info: cfl dt = 0.009354052333709638 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1871e+05 | 32768 | 1 | 1.028e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 327.5264385629901 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12160283093595466, dt = 0.009354052333709638
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.6%)
patch tree reduce : 1654.00 ns (0.5%)
gen split merge : 1072.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 337.79 us (94.3%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (67.5%)
Info: cfl dt = 0.009354051217037918 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1764e+05 | 32768 | 1 | 1.032e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.42757369457615 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1309568832696643, dt = 0.009354051217037918
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.0%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 316.70 us (93.7%)
LB move op cnt : 0
LB apply : 4.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (71.1%)
Info: cfl dt = 0.009354051160740375 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1994e+05 | 32768 | 1 | 1.024e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.79238880735403 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1403109344867022, dt = 0.009354051160740375
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.7%)
patch tree reduce : 1933.00 ns (0.5%)
gen split merge : 1363.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1413.00 ns (0.4%)
LB compute : 334.23 us (93.7%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (70.7%)
Info: cfl dt = 0.009354049165896591 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1938e+05 | 32768 | 1 | 1.026e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.2144135564504 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14966498564744257, dt = 0.009354049165896591
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 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 : 1112.00 ns (0.3%)
LB compute : 358.42 us (94.4%)
LB move op cnt : 0
LB apply : 4.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.2%)
Info: cfl dt = 0.009354048009338565 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2445e+05 | 32768 | 1 | 1.010e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 333.425703534871 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15901903481333918, dt = 0.009354048009338565
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.8%)
patch tree reduce : 1283.00 ns (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 321.48 us (94.2%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.5%)
Info: cfl dt = 0.009354047838085631 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1466e+05 | 32768 | 1 | 1.041e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.37041028451017 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16837308282267774, dt = 0.009354047838085631
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.8%)
patch tree reduce : 1432.00 ns (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 308.13 us (94.0%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (68.3%)
Info: cfl dt = 0.009354046323290361 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1780e+05 | 32768 | 1 | 1.031e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.5933649342163 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17772713066076337, dt = 0.009354046323290361
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.7%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 1172.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.4%)
LB compute : 329.03 us (93.8%)
LB move op cnt : 0
LB apply : 4.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (67.3%)
Info: cfl dt = 0.009354045127035065 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1348e+05 | 32768 | 1 | 1.045e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 322.1554348444979 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18708117698405374, dt = 0.009354045127035065
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.6%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1173.00 ns (0.3%)
LB compute : 338.97 us (94.5%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (69.9%)
Info: cfl dt = 0.00935404486181552 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0946e+05 | 32768 | 1 | 1.059e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.01759691265954 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1964352221110888, dt = 0.00935404486181552
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.7%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.4%)
LB compute : 320.19 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 (67.4%)
Info: cfl dt = 0.00935404374999631 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1635e+05 | 32768 | 1 | 1.036e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 325.10525705797613 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2057892669729043, dt = 0.00935404374999631
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (1.8%)
patch tree reduce : 1814.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 340.22 us (94.3%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.4%)
Info: cfl dt = 0.009354042518640951 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1800e+05 | 32768 | 1 | 1.030e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.79898387119033 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21514331072290063, dt = 0.009354042518640951
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.8%)
patch tree reduce : 1733.00 ns (0.5%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.4%)
LB compute : 296.09 us (93.4%)
LB move op cnt : 0
LB apply : 3.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (67.2%)
Info: cfl dt = 0.009354042176359652 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0929e+05 | 32768 | 1 | 1.059e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 317.8489797300029 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22449735324154158, dt = 0.009354042176359652
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.7%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 343.78 us (94.4%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.4%)
Info: cfl dt = 0.009354041407396577 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1114e+05 | 32768 | 1 | 1.053e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 319.7528844173012 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23385139541790123, dt = 0.009354041407396577
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.8%)
patch tree reduce : 1442.00 ns (0.4%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1442.00 ns (0.4%)
LB compute : 337.19 us (94.2%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.0%)
Info: cfl dt = 0.009354040146256508 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1133e+05 | 32768 | 1 | 1.053e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 319.94271971568526 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2432054368252978, dt = 0.009354040146256508
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.8%)
patch tree reduce : 1733.00 ns (0.5%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.3%)
LB compute : 299.82 us (93.7%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (67.2%)
Info: cfl dt = 0.009354039739735663 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0603e+05 | 32768 | 1 | 1.071e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 314.4967089566104 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2525594769715543, dt = 0.009354039739735663
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.9%)
patch tree reduce : 1503.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1073.00 ns (0.3%)
LB compute : 312.15 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.10 us (66.2%)
Info: cfl dt = 0.009354039266221074 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4919e+05 | 32768 | 1 | 9.384e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 358.8511915406388 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26191351671128993, dt = 0.009354039266221074
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (1.8%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 346.38 us (94.3%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (68.4%)
Info: cfl dt = 0.00935403797992317 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1862e+05 | 32768 | 1 | 7.828e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 430.20509594612463 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.271267555977511, dt = 0.00935403797992317
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.6%)
patch tree reduce : 1974.00 ns (0.5%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 368.94 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.58 us (70.1%)
Info: cfl dt = 0.009354037518533058 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2432e+05 | 32768 | 1 | 1.010e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 333.2897161800671 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2806215939574342, dt = 0.009354037518533058
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.7%)
patch tree reduce : 1383.00 ns (0.4%)
gen split merge : 1323.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 352.39 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 (71.0%)
Info: cfl dt = 0.009354037302899045 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2144e+05 | 32768 | 1 | 1.019e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 330.3336990945701 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2899756314759672, dt = 0.009354037302899045
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.7%)
patch tree reduce : 1614.00 ns (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 316.05 us (94.2%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (67.3%)
Info: cfl dt = 0.009354035994985242 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3016e+05 | 32768 | 1 | 9.925e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.2892317774635 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29932966877886624, dt = 0.009354035994985242
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.4%)
patch tree reduce : 1963.00 ns (0.5%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 369.92 us (94.8%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (68.4%)
Info: cfl dt = 0.009354035485396654 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3034e+05 | 32768 | 1 | 7.614e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 442.2452422604934 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3086837047738515, dt = 0.009354035485396654
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.65 us (3.3%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.4%)
LB compute : 293.33 us (92.0%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (67.3%)
Info: cfl dt = 0.009354035497753904 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2105e+05 | 32768 | 1 | 7.782e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 432.70288951963033 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31803774025924814, dt = 0.009354035497753904
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.92 us (2.4%)
patch tree reduce : 2.60 us (0.8%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.4%)
LB compute : 304.24 us (92.5%)
LB move op cnt : 0
LB apply : 4.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (68.9%)
Info: cfl dt = 0.009354034170702087 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2364e+05 | 32768 | 1 | 7.735e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 435.35952638520706 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32739177575700207, dt = 0.009354034170702087
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (2.0%)
patch tree reduce : 1392.00 ns (0.4%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1623.00 ns (0.5%)
LB compute : 293.62 us (93.4%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (66.5%)
Info: cfl dt = 0.00935403361756402 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0782e+05 | 32768 | 1 | 8.035e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 419.1054167983379 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33674580992770414, dt = 0.00935403361756402
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.7%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 323.75 us (94.2%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (72.3%)
Info: cfl dt = 0.009354033829266275 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2849e+05 | 32768 | 1 | 7.647e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 440.3492064412657 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3460998435452682, dt = 0.009354033829266275
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (1.8%)
patch tree reduce : 1412.00 ns (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.3%)
LB compute : 360.46 us (94.4%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (71.1%)
Info: cfl dt = 0.009354032489412682 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5048e+05 | 32768 | 1 | 9.350e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 360.1739883299894 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35545387737453443, dt = 0.009354032489412682
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.9%)
patch tree reduce : 1542.00 ns (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.4%)
LB compute : 308.17 us (93.8%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (68.2%)
Info: cfl dt = 0.009354031895900786 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3432e+05 | 32768 | 1 | 7.545e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 446.3339861927222 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3648079098639471, dt = 0.009354031895900786
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.6%)
patch tree reduce : 1703.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1292.00 ns (0.4%)
LB compute : 348.14 us (94.5%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1974.00 ns (62.9%)
Info: cfl dt = 0.009354032050593227 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3232e+05 | 32768 | 1 | 7.580e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 444.2775954123509 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3741619417598479, dt = 0.009354032050593227
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.0%)
patch tree reduce : 1993.00 ns (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 307.02 us (93.6%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (64.3%)
Info: cfl dt = 0.009354030935966824 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3829e+05 | 32768 | 1 | 7.476e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 450.41165050184696 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3835159738104411, dt = 0.009354030935966824
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.7%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1422.00 ns (0.4%)
LB compute : 320.15 us (93.9%)
LB move op cnt : 0
LB apply : 3.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1863.00 ns (65.5%)
Info: cfl dt = 0.009354030304204465 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4373e+05 | 32768 | 1 | 7.385e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 456.00075736467915 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39287000474640793, dt = 0.009354030304204465
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.9%)
patch tree reduce : 1793.00 ns (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.4%)
LB compute : 303.67 us (93.6%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (67.0%)
Info: cfl dt = 0.00935403040395369 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4294e+05 | 32768 | 1 | 7.398e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 455.1963669398241 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4022240350506124, dt = 0.00935403040395369
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1453.00 ns (0.4%)
LB compute : 322.60 us (94.1%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (67.2%)
Info: cfl dt = 0.009354029497301136 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4854e+05 | 32768 | 1 | 7.305e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 460.948578705208 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4115780654545661, dt = 0.009354029497301136
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.0%)
patch tree reduce : 1954.00 ns (0.6%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 302.20 us (93.6%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.4%)
Info: cfl dt = 0.009354028828673375 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2306e+05 | 32768 | 1 | 7.745e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 434.7676165648967 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42093209495186723, dt = 0.009354028828673375
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.5%)
patch tree reduce : 1714.00 ns (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 357.81 us (94.7%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (71.2%)
Info: cfl dt = 0.00935402887490641 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2930e+05 | 32768 | 1 | 7.633e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 441.17138569649734 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4302861237805406, dt = 0.00935402887490641
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.9%)
patch tree reduce : 1463.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1343.00 ns (0.4%)
LB compute : 287.00 us (93.4%)
LB move op cnt : 0
LB apply : 4.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (66.3%)
Info: cfl dt = 0.009354028162104929 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5196e+05 | 32768 | 1 | 7.250e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 464.4650961119412 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.439640152655447, dt = 0.009354028162104929
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.7%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.3%)
LB compute : 333.59 us (93.9%)
LB move op cnt : 0
LB apply : 4.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (68.5%)
Info: cfl dt = 0.009354027457488543 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4252e+05 | 32768 | 1 | 7.405e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 454.760724302259 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44899418081755194, dt = 0.009354027457488543
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.7%)
patch tree reduce : 1422.00 ns (0.4%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 321.46 us (94.1%)
LB move op cnt : 0
LB apply : 4.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (68.7%)
Info: cfl dt = 0.009354027451208436 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2375e+05 | 32768 | 1 | 1.012e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.7095608601065 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45834820827504047, dt = 0.009354027451208436
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (1.7%)
patch tree reduce : 1663.00 ns (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 344.11 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.02 us (67.6%)
Info: cfl dt = 0.009354026920548526 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2553e+05 | 32768 | 1 | 1.007e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.53474395298576 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4677022357262489, dt = 0.009354026920548526
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.9%)
patch tree reduce : 1522.00 ns (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1292.00 ns (0.4%)
LB compute : 300.32 us (93.4%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.6%)
Info: cfl dt = 0.00935402618047851 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8545e+05 | 32768 | 1 | 1.148e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 293.3419555289625 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47705626264679746, dt = 0.00935402618047851
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.7%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1393.00 ns (0.4%)
LB compute : 338.99 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.06 us (68.5%)
Info: cfl dt = 0.00935402612241469 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1277e+05 | 32768 | 1 | 1.048e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.42156781441804 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.486410288827276, dt = 0.00935402612241469
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (1.9%)
patch tree reduce : 1462.00 ns (0.4%)
gen split merge : 1001.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.4%)
LB compute : 307.71 us (93.8%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1984.00 ns (65.1%)
Info: cfl dt = 0.009354025764058726 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2393e+05 | 32768 | 1 | 1.012e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.8916332008048 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4957643149496907, dt = 0.009354025764058726
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.7%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1051.00 ns (0.3%)
LB compute : 336.48 us (94.5%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (68.0%)
Info: cfl dt = 0.00935402498884772 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2311e+05 | 32768 | 1 | 1.014e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.0440602098614 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5051183407137494, dt = 0.00935402498884772
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.7%)
patch tree reduce : 1583.00 ns (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.4%)
LB compute : 296.96 us (93.3%)
LB move op cnt : 0
LB apply : 4.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (67.2%)
Info: cfl dt = 0.009354024879560215 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1446e+05 | 32768 | 1 | 1.042e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.157735827239 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5144723657025971, dt = 0.009354024879560215
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (1.8%)
patch tree reduce : 1894.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 345.49 us (94.3%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.0%)
Info: cfl dt = 0.009354024685131706 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1209e+05 | 32768 | 1 | 1.050e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.7230780816743 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5238263905821573, dt = 0.009354024685131706
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.7%)
patch tree reduce : 1703.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 341.01 us (94.3%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (73.3%)
Info: cfl dt = 0.009354023874954953 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2050e+05 | 32768 | 1 | 1.022e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.3664285203569 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.533180415267289, dt = 0.009354023874954953
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.6%)
patch tree reduce : 1894.00 ns (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 338.33 us (94.4%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (69.2%)
Info: cfl dt = 0.009354023714906021 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1309e+05 | 32768 | 1 | 1.047e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.7486780641534 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.542534439142244, dt = 0.009354023714906021
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (1.7%)
patch tree reduce : 1943.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 : 366.72 us (94.6%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.1%)
Info: cfl dt = 0.0093540236771764 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1386e+05 | 32768 | 1 | 1.044e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 322.5398102213003 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.55188846285715, dt = 0.0093540236771764
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (1.9%)
patch tree reduce : 1613.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 332.59 us (94.0%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (69.9%)
Info: cfl dt = 0.009354022832131598 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1582e+05 | 32768 | 1 | 1.038e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.5526209890674 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5612424865343264, dt = 0.009354022832131598
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.6%)
patch tree reduce : 1723.00 ns (0.5%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 345.12 us (94.4%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (67.1%)
Info: cfl dt = 0.009354022621734464 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2094e+05 | 32768 | 1 | 1.021e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.81634041026837 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.570596509366458, dt = 0.009354022621734464
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.8%)
patch tree reduce : 1403.00 ns (0.4%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.4%)
LB compute : 316.65 us (94.0%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.0%)
Info: cfl dt = 0.009354022734382968 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2350e+05 | 32768 | 1 | 1.013e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.4521818369959 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5799505319881925, dt = 0.009354022734382968
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.7%)
patch tree reduce : 1723.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 300.91 us (93.8%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (67.9%)
Info: cfl dt = 0.009354021854531975 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2133e+05 | 32768 | 1 | 1.020e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 330.2221548572914 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5893045547225755, dt = 0.009354021854531975
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.6%)
patch tree reduce : 1973.00 ns (0.5%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 376.54 us (94.7%)
LB move op cnt : 0
LB apply : 4.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (72.4%)
Info: cfl dt = 0.009354021594183467 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1750e+05 | 32768 | 1 | 1.032e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.2819839541881 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5986585765771074, dt = 0.009354021594183467
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (1.9%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 315.23 us (93.8%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1934.00 ns (67.7%)
Info: cfl dt = 0.009354021851612165 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2554e+05 | 32768 | 1 | 1.007e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.550550657491 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6080125981712908, dt = 0.009354021851612165
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.1%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 304.57 us (93.4%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1954.00 ns (67.0%)
Info: cfl dt = 0.009354020937009575 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2224e+05 | 32768 | 1 | 1.017e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 331.1525375906608 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.617366620022903, dt = 0.009354020937009575
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.9%)
patch tree reduce : 1592.00 ns (0.5%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1143.00 ns (0.4%)
LB compute : 290.09 us (93.7%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (68.6%)
Info: cfl dt = 0.009354020627111503 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1808e+05 | 32768 | 1 | 1.030e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.8807257689732 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6267206409599125, dt = 0.009354020627111503
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.8%)
patch tree reduce : 1463.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.3%)
LB compute : 298.62 us (93.7%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (67.8%)
Info: cfl dt = 0.00935402092932955 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1884e+05 | 32768 | 1 | 1.028e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 327.6587682101347 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6360746615870241, dt = 0.00935402092932955
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.8%)
patch tree reduce : 1623.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.4%)
LB compute : 296.54 us (93.8%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (66.9%)
Info: cfl dt = 0.009354020075014327 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0279e+05 | 32768 | 1 | 1.082e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.1711781823532 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6454286825163537, dt = 0.009354020075014327
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (2.0%)
patch tree reduce : 1612.00 ns (0.5%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 283.36 us (93.4%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (65.5%)
Info: cfl dt = 0.009354019715986959 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1455e+05 | 32768 | 1 | 1.042e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.2523816375368 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.654782702591368, dt = 0.009354019715986959
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.7%)
patch tree reduce : 1673.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 : 325.99 us (93.7%)
LB move op cnt : 0
LB apply : 4.71 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (69.4%)
Info: cfl dt = 0.00935401995614047 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1849e+05 | 32768 | 1 | 1.029e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 327.3022366300943 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6641367223073549, dt = 0.00935401995614047
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.6%)
patch tree reduce : 1592.00 ns (0.4%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.3%)
LB compute : 355.64 us (94.6%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.7%)
Info: cfl dt = 0.009354019264506987 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1983e+05 | 32768 | 1 | 1.025e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.674125274931 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6734907422634954, dt = 0.009354019264506987
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.9%)
patch tree reduce : 1614.00 ns (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 300.65 us (93.8%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (67.9%)
Info: cfl dt = 0.009354018856797063 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2164e+05 | 32768 | 1 | 1.019e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 330.5385447755565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6828447615280023, dt = 0.009354018856797063
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 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 : 922.00 ns (0.3%)
LB compute : 340.95 us (94.3%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (69.7%)
Info: cfl dt = 0.009354019035518994 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1924e+05 | 32768 | 1 | 1.026e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.06786770470916 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6921987803847994, dt = 0.009354019035518994
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.7%)
patch tree reduce : 1633.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 321.14 us (94.0%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (69.0%)
Info: cfl dt = 0.009354018501887546 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1594e+05 | 32768 | 1 | 1.037e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.68494171037986 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7015527994203185, dt = 0.009354018501887546
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (1.8%)
patch tree reduce : 1943.00 ns (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1352.00 ns (0.4%)
LB compute : 323.17 us (93.9%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (69.3%)
Info: cfl dt = 0.009354018045972506 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2035e+05 | 32768 | 1 | 1.023e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.21045437232294 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.710906817922206, dt = 0.009354018045972506
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.9%)
patch tree reduce : 1503.00 ns (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.4%)
LB compute : 287.32 us (93.4%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (66.8%)
Info: cfl dt = 0.009354018163947393 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1232e+05 | 32768 | 1 | 1.049e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.96282720083815 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7202608359681785, dt = 0.009354018163947393
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (2.0%)
patch tree reduce : 1583.00 ns (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.4%)
LB compute : 289.68 us (93.5%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (66.4%)
Info: cfl dt = 0.009354017783935142 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1799e+05 | 32768 | 1 | 1.030e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.78302627187634 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7296148541321259, dt = 0.009354017783935142
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.8%)
patch tree reduce : 1833.00 ns (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 21.91 us (6.4%)
LB compute : 300.04 us (87.8%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (66.9%)
Info: cfl dt = 0.00935401728032475 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1449e+05 | 32768 | 1 | 1.042e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.1908529147304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7389688719160611, dt = 0.00935401728032475
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.30 us (2.0%)
patch tree reduce : 1773.00 ns (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 343.76 us (93.5%)
LB move op cnt : 0
LB apply : 4.75 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (70.9%)
Info: cfl dt = 0.009354017338284074 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2084e+05 | 32768 | 1 | 1.021e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.720432744335 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7483228891963858, dt = 0.009354017338284074
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (1.9%)
patch tree reduce : 1492.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 : 360.24 us (94.3%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (70.4%)
Info: cfl dt = 0.009354017107757422 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0213e+05 | 32768 | 1 | 1.085e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 310.4927651663238 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7576769065346699, dt = 0.009354017107757422
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.6%)
patch tree reduce : 1903.00 ns (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 : 346.71 us (94.3%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (65.9%)
Info: cfl dt = 0.009354016556993675 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1631e+05 | 32768 | 1 | 1.036e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 325.06139885791737 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7670309236424273, dt = 0.009354016556993675
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.4%)
patch tree reduce : 1744.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 404.67 us (95.0%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (68.9%)
Info: cfl dt = 0.009354016555710908 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1955e+05 | 32768 | 1 | 1.025e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.3935385155166 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.776384940199421, dt = 0.009354016555710908
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.8%)
patch tree reduce : 1623.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 314.39 us (94.1%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1993.00 ns (66.7%)
Info: cfl dt = 0.009354016470747762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1470e+05 | 32768 | 1 | 1.041e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.40541310270436 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7857389567551318, dt = 0.009354016470747762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.5%)
patch tree reduce : 1452.00 ns (0.4%)
gen split merge : 1153.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 371.87 us (94.8%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (68.8%)
Info: cfl dt = 0.009354015873403622 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2236e+05 | 32768 | 1 | 1.017e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 331.27365491432107 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7950929732258796, dt = 0.009354015873403622
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.7%)
patch tree reduce : 1974.00 ns (0.5%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1383.00 ns (0.4%)
LB compute : 351.99 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.60 us (71.2%)
Info: cfl dt = 0.009354015813689248 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2507e+05 | 32768 | 1 | 1.008e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.05883528390996 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8044469890992832, dt = 0.009354015813689248
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.6%)
patch tree reduce : 1694.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1061.00 ns (0.3%)
LB compute : 344.35 us (94.4%)
LB move op cnt : 0
LB apply : 4.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (69.1%)
Info: cfl dt = 0.009354015870549008 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2507e+05 | 32768 | 1 | 1.008e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.05823664227165 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8138010049129725, dt = 0.009354015870549008
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (2.1%)
patch tree reduce : 1753.00 ns (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.4%)
LB compute : 291.89 us (93.0%)
LB move op cnt : 0
LB apply : 4.55 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (68.8%)
Info: cfl dt = 0.009354015227226412 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1807e+05 | 32768 | 1 | 1.030e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.8683043598269 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8231550207835214, dt = 0.009354015227226412
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (1.9%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 326.86 us (93.9%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.6%)
Info: cfl dt = 0.009354015109923045 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1660e+05 | 32768 | 1 | 1.035e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 325.3598491621337 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8325090360107479, dt = 0.009354015109923045
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (1.9%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 311.07 us (93.8%)
LB move op cnt : 0
LB apply : 3.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1833.00 ns (66.1%)
Info: cfl dt = 0.00935401530502273 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2642e+05 | 32768 | 1 | 1.004e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.44945746432415 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.841863051120671, dt = 0.00935401530502273
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.7%)
patch tree reduce : 1863.00 ns (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 301.11 us (94.1%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.7%)
Info: cfl dt = 0.009354014616350109 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4609e+05 | 32768 | 1 | 9.468e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 355.6674124140891 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8512170664256937, dt = 0.009354014616350109
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.8%)
patch tree reduce : 1854.00 ns (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.4%)
LB compute : 317.05 us (94.0%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (70.7%)
Info: cfl dt = 0.00935401444232782 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3907e+05 | 32768 | 1 | 7.463e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 451.2162047988128 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8605710810420438, dt = 0.00935401444232782
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.7%)
patch tree reduce : 1833.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 319.27 us (94.2%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (69.2%)
Info: cfl dt = 0.009354014772223147 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5552e+05 | 32768 | 1 | 7.193e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 468.12395168076114 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8699250954843717, dt = 0.009354014772223147
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.9%)
patch tree reduce : 1713.00 ns (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1493.00 ns (0.5%)
LB compute : 294.16 us (93.5%)
LB move op cnt : 0
LB apply : 3.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (65.8%)
Info: cfl dt = 0.009354014038852656 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6229e+05 | 32768 | 1 | 7.088e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 475.0745555388925 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8792791102565949, dt = 0.009354014038852656
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (2.1%)
patch tree reduce : 1383.00 ns (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.4%)
LB compute : 274.14 us (93.2%)
LB move op cnt : 0
LB apply : 3.76 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.7%)
Info: cfl dt = 0.009354013809004533 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6552e+05 | 32768 | 1 | 7.039e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 478.39764674623143 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8886331242954475, dt = 0.009354013809004533
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.6%)
patch tree reduce : 1613.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 : 331.15 us (94.4%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.4%)
Info: cfl dt = 0.009354014091571522 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4437e+05 | 32768 | 1 | 9.515e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 353.89734213988277 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8979871381044521, dt = 0.009354014091571522
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (2.0%)
patch tree reduce : 1453.00 ns (0.5%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.4%)
LB compute : 271.73 us (93.2%)
LB move op cnt : 0
LB apply : 3.84 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (68.3%)
Info: cfl dt = 0.009354013492979645 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5875e+05 | 32768 | 1 | 9.134e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 368.6782847965333 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9073411521960236, dt = 0.009354013492979645
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.7%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 320.95 us (94.2%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (66.5%)
Info: cfl dt = 0.00935401320821757 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4898e+05 | 32768 | 1 | 9.390e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 358.6368213754871 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9166951656890032, dt = 0.00935401320821757
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.9%)
patch tree reduce : 1483.00 ns (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1233.00 ns (0.4%)
LB compute : 295.43 us (93.3%)
LB move op cnt : 0
LB apply : 4.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1904.00 ns (66.7%)
Info: cfl dt = 0.009354013425837925 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4925e+05 | 32768 | 1 | 9.382e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 358.91146489549806 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9260491788972208, dt = 0.009354013425837925
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.8%)
patch tree reduce : 1723.00 ns (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 291.91 us (93.9%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (64.7%)
Info: cfl dt = 0.009354012977125632 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0097e+05 | 32768 | 1 | 8.172e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 412.0570231288922 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9354031923230588, dt = 0.009354012977125632
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.8%)
patch tree reduce : 1452.00 ns (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 299.27 us (93.8%)
LB move op cnt : 0
LB apply : 3.97 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (65.8%)
Info: cfl dt = 0.009354012638376201 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6099e+05 | 32768 | 1 | 7.108e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 473.7417776863502 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9447572053001845, dt = 0.009354012638376201
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.9%)
patch tree reduce : 1593.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 288.28 us (93.7%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.7%)
Info: cfl dt = 0.00935401279214036 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6693e+05 | 32768 | 1 | 7.018e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 479.84969988065933 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9541112179385607, dt = 0.00935401279214036
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.9%)
patch tree reduce : 1563.00 ns (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.4%)
LB compute : 298.11 us (93.7%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (69.1%)
Info: cfl dt = 0.009354012489818625 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6478e+05 | 32768 | 1 | 7.050e-02 | 0.0% | 0.9% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 477.6321646138755 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.963465230730701, dt = 0.009354012489818625
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.7%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1233.00 ns (0.4%)
LB compute : 311.37 us (94.2%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.7%)
Info: cfl dt = 0.00935401209801919 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6042e+05 | 32768 | 1 | 7.117e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 473.15628734602353 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9728192432205196, dt = 0.00935401209801919
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.9%)
patch tree reduce : 1853.00 ns (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.4%)
LB compute : 277.47 us (93.3%)
LB move op cnt : 0
LB apply : 3.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (66.4%)
Info: cfl dt = 0.00935401218903091 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6129e+05 | 32768 | 1 | 7.104e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 474.04787551415455 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9821732553185388, dt = 0.00935401218903091
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.8%)
patch tree reduce : 1554.00 ns (0.5%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.4%)
LB compute : 295.55 us (93.8%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (72.8%)
Info: cfl dt = 0.00935401202970732 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6358e+05 | 32768 | 1 | 7.068e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 476.40470874888547 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9915272675075697, dt = 0.008472732492430302
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.6%)
patch tree reduce : 1884.00 ns (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 338.27 us (94.3%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (66.0%)
Info: cfl dt = 0.009354011627077614 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6181e+05 | 32768 | 1 | 7.096e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 429.87115342746193 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 31.363252114 (s) [Godunov][rank=0]
Info: pushing data in scheduler, N = 4096 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 1345.00 us [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: Compute load ... [DataInserterUtility][rank=0]
Info: run scheduler step ... [DataInserterUtility][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.05 us (58.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 : 1283.00 ns (0.5%)
patch tree reduce : 1263.00 ns (0.5%)
gen split merge : 1052.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 265.06 us (96.1%)
LB move op cnt : 0
LB apply : 3.19 us (1.2%)
Info: patch count stable after 1 runs npatch = 1 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.64 us (3.0%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.3%)
LB compute : 363.07 us (93.1%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (67.3%)
Info: cfl dt = 0.009354083528780794 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1685e+05 | 32768 | 1 | 7.861e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.009354083528780794
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (0.8%)
patch tree reduce : 1592.00 ns (0.2%)
gen split merge : 1002.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1382.00 ns (0.2%)
LB compute : 845.19 us (97.4%)
LB move op cnt : 0
LB apply : 4.30 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (72.1%)
Info: cfl dt = 0.009354072778192094 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3884e+05 | 32768 | 1 | 7.467e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 450.9818991547682 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009354083528780794, dt = 0.009354072778192094
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (2.0%)
patch tree reduce : 1573.00 ns (0.5%)
gen split merge : 1183.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 285.86 us (93.5%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (68.3%)
Info: cfl dt = 0.009354070557356715 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4200e+05 | 32768 | 1 | 7.414e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 454.22907839982935 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018708156306972888, dt = 0.009354070557356715
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.6%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1443.00 ns (0.4%)
LB compute : 338.21 us (94.3%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (70.9%)
Info: cfl dt = 0.009354069063258542 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3264e+05 | 32768 | 1 | 7.574e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 444.6107657999611 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028062226864329604, dt = 0.009354069063258542
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.6%)
patch tree reduce : 1723.00 ns (0.5%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 339.65 us (94.2%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (73.7%)
Info: cfl dt = 0.009354065243429733 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2798e+05 | 32768 | 1 | 7.656e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 439.81921429785297 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03741629592758815, dt = 0.009354065243429733
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.6%)
patch tree reduce : 1793.00 ns (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 339.51 us (94.5%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1913.00 ns (66.1%)
Info: cfl dt = 0.009354063965791116 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4198e+05 | 32768 | 1 | 7.414e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 454.207232348989 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04677036117101788, dt = 0.009354063965791116
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.7%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 308.29 us (94.2%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (69.1%)
Info: cfl dt = 0.00935406293722296 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2501e+05 | 32768 | 1 | 7.710e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 436.76429572599517 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05612442513680899, dt = 0.00935406293722296
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.9%)
patch tree reduce : 1904.00 ns (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 275.96 us (93.5%)
LB move op cnt : 0
LB apply : 3.51 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 22.87 us (95.3%)
Info: cfl dt = 0.00935406009155936 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4042e+05 | 32768 | 1 | 7.440e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 452.6085876023072 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06547848807403195, dt = 0.00935406009155936
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.9%)
patch tree reduce : 1813.00 ns (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1433.00 ns (0.4%)
LB compute : 301.74 us (93.5%)
LB move op cnt : 0
LB apply : 4.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (69.5%)
Info: cfl dt = 0.009354058981621798 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3467e+05 | 32768 | 1 | 9.791e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.9248833107402 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0748325481655913, dt = 0.009354058981621798
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (2.0%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 1162.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.4%)
LB compute : 292.07 us (93.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1853.00 ns (64.9%)
Info: cfl dt = 0.009354058398246823 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3106e+05 | 32768 | 1 | 9.898e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.22169893041223 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0841866071472131, dt = 0.009354058398246823
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.7%)
patch tree reduce : 1903.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1452.00 ns (0.4%)
LB compute : 325.99 us (94.1%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.3%)
Info: cfl dt = 0.009354055918166097 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3443e+05 | 32768 | 1 | 9.798e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.6809761196525 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09354066554545992, dt = 0.009354055918166097
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 26.30 us (7.7%)
patch tree reduce : 1854.00 ns (0.5%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 301.42 us (88.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (66.7%)
Info: cfl dt = 0.009354054828410799 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3297e+05 | 32768 | 1 | 9.841e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.1856284906949 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10289472146362602, dt = 0.009354054828410799
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.7%)
patch tree reduce : 1793.00 ns (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 294.88 us (93.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.9%)
Info: cfl dt = 0.009354054643917838 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9134e+05 | 32768 | 1 | 8.373e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 402.16866966111695 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11224877629203682, dt = 0.009354054643917838
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.8%)
patch tree reduce : 1774.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 294.63 us (88.0%)
LB move op cnt : 0
LB apply : 23.77 us (7.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.0%)
Info: cfl dt = 0.009354052333709638 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3901e+05 | 32768 | 1 | 7.464e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 451.1573207178038 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12160283093595466, dt = 0.009354052333709638
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.7%)
patch tree reduce : 1563.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1403.00 ns (0.4%)
LB compute : 318.38 us (93.8%)
LB move op cnt : 0
LB apply : 4.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (67.7%)
Info: cfl dt = 0.009354051217037918 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3971e+05 | 32768 | 1 | 7.452e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 451.87570768028877 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1309568832696643, dt = 0.009354051217037918
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.9%)
patch tree reduce : 1512.00 ns (0.5%)
gen split merge : 1192.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 290.06 us (93.6%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1853.00 ns (65.1%)
Info: cfl dt = 0.009354051160740375 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3118e+05 | 32768 | 1 | 9.894e-02 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.34116018176275 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1403109344867022, dt = 0.009354051160740375
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.8%)
patch tree reduce : 1482.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 : 276.45 us (93.5%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (68.0%)
Info: cfl dt = 0.009354049165896591 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2380e+05 | 32768 | 1 | 1.012e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.7628994862043 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14966498564744257, dt = 0.009354049165896591
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (2.0%)
patch tree reduce : 1873.00 ns (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.4%)
LB compute : 281.37 us (93.3%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.5%)
Info: cfl dt = 0.009354048009338565 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2432e+05 | 32768 | 1 | 7.723e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 436.0566803528381 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15901903481333918, dt = 0.009354048009338565
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.7%)
patch tree reduce : 1663.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 291.14 us (88.1%)
LB move op cnt : 0
LB apply : 23.44 us (7.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (66.9%)
Info: cfl dt = 0.009354047838085631 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2606e+05 | 32768 | 1 | 1.005e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.08525357234095 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16837308282267774, dt = 0.009354047838085631
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.8%)
patch tree reduce : 1523.00 ns (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1462.00 ns (0.4%)
LB compute : 309.16 us (93.9%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (70.1%)
Info: cfl dt = 0.009354046323290361 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3706e+05 | 32768 | 1 | 9.722e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.38469017934483 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17772713066076337, dt = 0.009354046323290361
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.7%)
patch tree reduce : 1353.00 ns (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.4%)
LB compute : 303.62 us (93.9%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (68.5%)
Info: cfl dt = 0.009354045127035065 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3318e+05 | 32768 | 1 | 7.564e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 445.1672630113529 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18708117698405374, dt = 0.009354045127035065
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.8%)
patch tree reduce : 1663.00 ns (0.5%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.4%)
LB compute : 320.08 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.19 us (69.1%)
Info: cfl dt = 0.00935404486181552 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3220e+05 | 32768 | 1 | 7.582e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 444.1571760090311 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1964352221110888, dt = 0.00935404486181552
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (2.0%)
patch tree reduce : 1453.00 ns (0.5%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.4%)
LB compute : 277.85 us (93.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1873.00 ns (65.1%)
Info: cfl dt = 0.00935404374999631 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3608e+05 | 32768 | 1 | 7.514e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 448.1492724820437 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2057892669729043, dt = 0.00935404374999631
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.9%)
patch tree reduce : 1943.00 ns (0.7%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.4%)
LB compute : 276.34 us (93.1%)
LB move op cnt : 0
LB apply : 4.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1973.00 ns (65.2%)
Info: cfl dt = 0.009354042518640951 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3191e+05 | 32768 | 1 | 7.587e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 443.8588542719108 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21514331072290063, dt = 0.009354042518640951
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.6%)
patch tree reduce : 1804.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 314.71 us (89.0%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (69.7%)
Info: cfl dt = 0.009354042176359652 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3221e+05 | 32768 | 1 | 7.581e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 444.17026300448435 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22449735324154158, dt = 0.009354042176359652
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.5%)
patch tree reduce : 2.13 us (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 371.51 us (94.8%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (67.6%)
Info: cfl dt = 0.009354041407396577 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3029e+05 | 32768 | 1 | 7.615e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 442.19265336790943 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23385139541790123, dt = 0.009354041407396577
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.6%)
patch tree reduce : 1964.00 ns (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 348.49 us (94.3%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (63.7%)
Info: cfl dt = 0.009354040146256508 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2174e+05 | 32768 | 1 | 1.018e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 330.6399657986317 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2432054368252978, dt = 0.009354040146256508
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.6%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 326.48 us (94.5%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (68.9%)
Info: cfl dt = 0.009354039739735663 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1647e+05 | 32768 | 1 | 1.035e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 325.22528277620717 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2525594769715543, dt = 0.009354039739735663
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.2%)
patch tree reduce : 1723.00 ns (0.6%)
gen split merge : 1232.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.4%)
LB compute : 281.90 us (93.1%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (65.3%)
Info: cfl dt = 0.009354039266221074 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2483e+05 | 32768 | 1 | 1.009e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 333.8129175312635 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26191351671128993, dt = 0.009354039266221074
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.8%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 306.70 us (93.6%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1963.00 ns (63.6%)
Info: cfl dt = 0.00935403797992317 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1591e+05 | 32768 | 1 | 1.037e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.6501752324596 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.271267555977511, dt = 0.00935403797992317
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.8%)
patch tree reduce : 1623.00 ns (0.5%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1313.00 ns (0.4%)
LB compute : 320.00 us (94.0%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (71.2%)
Info: cfl dt = 0.009354037518533058 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2017e+05 | 32768 | 1 | 1.023e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.02297111921604 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2806215939574342, dt = 0.009354037518533058
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (1.8%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 358.33 us (94.5%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (67.6%)
Info: cfl dt = 0.009354037302899045 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0409e+05 | 32768 | 1 | 8.109e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 415.2739390876903 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2899756314759672, dt = 0.009354037302899045
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.6%)
patch tree reduce : 1843.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 : 346.11 us (94.4%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (67.9%)
Info: cfl dt = 0.009354035994985242 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3142e+05 | 32768 | 1 | 7.595e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 443.3517143563241 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29932966877886624, dt = 0.009354035994985242
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.7%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 338.61 us (94.3%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (68.1%)
Info: cfl dt = 0.009354035485396654 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4032e+05 | 32768 | 1 | 7.442e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 452.50552661685265 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3086837047738515, dt = 0.009354035485396654
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.8%)
patch tree reduce : 1623.00 ns (0.5%)
gen split merge : 1001.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 305.36 us (93.7%)
LB move op cnt : 0
LB apply : 4.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (65.3%)
Info: cfl dt = 0.009354035497753904 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2225e+05 | 32768 | 1 | 1.017e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 331.16247425086357 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31803774025924814, dt = 0.009354035497753904
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.7%)
patch tree reduce : 1683.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 344.01 us (94.4%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (67.6%)
Info: cfl dt = 0.009354034170702087 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1743e+05 | 32768 | 1 | 1.032e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.2078193514138 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32739177575700207, dt = 0.009354034170702087
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.7%)
patch tree reduce : 1703.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 329.57 us (94.0%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (68.5%)
Info: cfl dt = 0.00935403361756402 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2626e+05 | 32768 | 1 | 7.687e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 438.0551462007158 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33674580992770414, dt = 0.00935403361756402
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (1.9%)
patch tree reduce : 1683.00 ns (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1323.00 ns (0.4%)
LB compute : 317.83 us (93.7%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (65.5%)
Info: cfl dt = 0.009354033829266275 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2465e+05 | 32768 | 1 | 7.717e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 436.3959336629151 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3460998435452682, dt = 0.009354033829266275
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (1.8%)
patch tree reduce : 1613.00 ns (0.5%)
gen split merge : 1092.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1303.00 ns (0.4%)
LB compute : 337.12 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.17 us (69.3%)
Info: cfl dt = 0.009354032489412682 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1248e+05 | 32768 | 1 | 1.049e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.1220856885148 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35545387737453443, dt = 0.009354032489412682
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (1.9%)
patch tree reduce : 1542.00 ns (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.3%)
LB compute : 308.67 us (93.9%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1983.00 ns (66.4%)
Info: cfl dt = 0.009354031895900786 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4777e+05 | 32768 | 1 | 9.422e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 357.39571565473057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3648079098639471, dt = 0.009354031895900786
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (2.0%)
patch tree reduce : 1964.00 ns (0.7%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.4%)
LB compute : 270.76 us (92.8%)
LB move op cnt : 0
LB apply : 3.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (68.7%)
Info: cfl dt = 0.009354032050593227 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3333e+05 | 32768 | 1 | 7.562e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 445.3208099679405 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3741619417598479, dt = 0.009354032050593227
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.8%)
patch tree reduce : 1763.00 ns (0.5%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 306.60 us (93.9%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (69.6%)
Info: cfl dt = 0.009354030935966824 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4209e+05 | 32768 | 1 | 7.412e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 454.32195963889467 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3835159738104411, dt = 0.009354030935966824
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.8%)
patch tree reduce : 1573.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 : 309.84 us (93.9%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (65.3%)
Info: cfl dt = 0.009354030304204466 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4181e+05 | 32768 | 1 | 7.417e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 454.03358461986903 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39287000474640793, dt = 0.009354030304204466
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (2.1%)
patch tree reduce : 2.07 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.4%)
LB compute : 271.11 us (93.0%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (66.6%)
Info: cfl dt = 0.00935403040395369 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4343e+05 | 32768 | 1 | 7.390e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 455.6922953933225 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4022240350506124, dt = 0.00935403040395369
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (2.0%)
patch tree reduce : 1493.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1263.00 ns (0.4%)
LB compute : 303.44 us (93.7%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (66.8%)
Info: cfl dt = 0.009354029497301138 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3913e+05 | 32768 | 1 | 7.462e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 451.27499747099097 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4115780654545661, dt = 0.009354029497301138
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.0%)
patch tree reduce : 1744.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 316.71 us (93.8%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (66.5%)
Info: cfl dt = 0.009354028828673377 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3551e+05 | 32768 | 1 | 7.524e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 447.5552715977206 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42093209495186723, dt = 0.009354028828673377
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.8%)
patch tree reduce : 1473.00 ns (0.5%)
gen split merge : 1222.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1383.00 ns (0.4%)
LB compute : 304.32 us (94.0%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1943.00 ns (64.6%)
Info: cfl dt = 0.00935402887490641 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3187e+05 | 32768 | 1 | 7.587e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 443.81759482065945 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4302861237805406, dt = 0.00935402887490641
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 1773.00 ns (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 302.98 us (94.0%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.4%)
Info: cfl dt = 0.009354028162104929 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3633e+05 | 32768 | 1 | 7.510e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 448.3999018214528 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.439640152655447, dt = 0.009354028162104929
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.8%)
patch tree reduce : 1653.00 ns (0.5%)
gen split merge : 1073.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1312.00 ns (0.4%)
LB compute : 341.62 us (94.2%)
LB move op cnt : 0
LB apply : 4.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (71.5%)
Info: cfl dt = 0.009354027457488544 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4870e+05 | 32768 | 1 | 9.397e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 358.3458356317404 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44899418081755194, dt = 0.009354027457488544
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.7%)
patch tree reduce : 1774.00 ns (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1432.00 ns (0.4%)
LB compute : 343.43 us (94.5%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.3%)
Info: cfl dt = 0.009354027451208436 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1554e+05 | 32768 | 1 | 1.038e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.27279212522745 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45834820827504047, dt = 0.009354027451208436
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (2.0%)
patch tree reduce : 1513.00 ns (0.5%)
gen split merge : 1182.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.4%)
LB compute : 311.25 us (93.8%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1833.00 ns (65.3%)
Info: cfl dt = 0.009354026920548524 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1941e+05 | 32768 | 1 | 1.026e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.24806070109395 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4677022357262489, dt = 0.009354026920548524
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (1.9%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 340.31 us (94.2%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.0%)
Info: cfl dt = 0.009354026180478509 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1949e+05 | 32768 | 1 | 1.026e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.32876042594364 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47705626264679746, dt = 0.009354026180478509
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.8%)
patch tree reduce : 1744.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 326.78 us (94.1%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.1%)
Info: cfl dt = 0.009354026122414687 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8427e+05 | 32768 | 1 | 1.153e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 292.13421602818755 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.486410288827276, dt = 0.009354026122414687
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (2.1%)
patch tree reduce : 1503.00 ns (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 304.20 us (93.8%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (68.6%)
Info: cfl dt = 0.009354025764058726 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1699e+05 | 32768 | 1 | 1.034e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 325.75993113242464 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4957643149496907, dt = 0.009354025764058726
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (2.0%)
patch tree reduce : 1462.00 ns (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.4%)
LB compute : 295.68 us (93.7%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1923.00 ns (65.3%)
Info: cfl dt = 0.009354024988847718 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1794e+05 | 32768 | 1 | 1.031e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.7398557885985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5051183407137494, dt = 0.009354024988847718
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (2.0%)
patch tree reduce : 1633.00 ns (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.4%)
LB compute : 291.13 us (93.5%)
LB move op cnt : 0
LB apply : 3.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1884.00 ns (66.9%)
Info: cfl dt = 0.009354024879560215 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1532e+05 | 32768 | 1 | 1.039e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.04229266653505 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5144723657025971, dt = 0.009354024879560215
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.7%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 325.97 us (94.3%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (65.5%)
Info: cfl dt = 0.009354024685131709 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1581e+05 | 32768 | 1 | 1.038e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.54954097510205 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5238263905821573, dt = 0.009354024685131709
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.4%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 390.21 us (94.7%)
LB move op cnt : 0
LB apply : 4.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (68.1%)
Info: cfl dt = 0.009354023874954953 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.2403e+05 | 32768 | 1 | 1.463e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 230.22484599825745 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.533180415267289, dt = 0.009354023874954953
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.5%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 368.01 us (94.9%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (69.9%)
Info: cfl dt = 0.009354023714906021 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.6798e+05 | 32768 | 1 | 1.223e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 275.3957880201554 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.542534439142244, dt = 0.009354023714906021
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.5%)
patch tree reduce : 1572.00 ns (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 355.33 us (94.8%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (71.7%)
Info: cfl dt = 0.0093540236771764 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0046e+05 | 32768 | 1 | 1.091e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.77477200003597 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.55188846285715, dt = 0.0093540236771764
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.9%)
patch tree reduce : 1733.00 ns (0.6%)
gen split merge : 1292.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 284.81 us (93.3%)
LB move op cnt : 0
LB apply : 4.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (65.3%)
Info: cfl dt = 0.009354022832131598 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0136e+05 | 32768 | 1 | 1.087e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 309.6981851734037 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5612424865343264, dt = 0.009354022832131598
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.0%)
patch tree reduce : 1672.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 307.34 us (93.7%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (66.3%)
Info: cfl dt = 0.009354022621734466 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0333e+05 | 32768 | 1 | 1.080e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.7213789128658 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.570596509366458, dt = 0.009354022621734466
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.6%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1173.00 ns (0.3%)
LB compute : 358.63 us (94.4%)
LB move op cnt : 0
LB apply : 4.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (72.9%)
Info: cfl dt = 0.009354022734382973 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0881e+05 | 32768 | 1 | 1.061e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 317.350721583195 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5799505319881925, dt = 0.009354022734382973
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (2.0%)
patch tree reduce : 1803.00 ns (0.6%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1041.00 ns (0.3%)
LB compute : 291.30 us (93.4%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (68.9%)
Info: cfl dt = 0.009354021854531977 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0827e+05 | 32768 | 1 | 1.063e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.8005093174904 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5893045547225755, dt = 0.009354021854531977
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 1383.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 314.69 us (93.9%)
LB move op cnt : 0
LB apply : 3.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (68.0%)
Info: cfl dt = 0.00935402159418347 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0654e+05 | 32768 | 1 | 1.069e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.01896514920577 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5986585765771074, dt = 0.00935402159418347
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.6%)
patch tree reduce : 1623.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 338.04 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.50 us (70.5%)
Info: cfl dt = 0.009354021851612168 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0561e+05 | 32768 | 1 | 1.072e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 314.0648247598399 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6080125981712909, dt = 0.009354021851612168
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.6%)
patch tree reduce : 1572.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 : 337.81 us (94.5%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.4%)
Info: cfl dt = 0.009354020937009577 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9692e+05 | 32768 | 1 | 1.104e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 305.1290229692072 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6173666200229031, dt = 0.009354020937009577
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.9%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 281.53 us (93.4%)
LB move op cnt : 0
LB apply : 3.88 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.4%)
Info: cfl dt = 0.009354020627111506 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9443e+05 | 32768 | 1 | 1.113e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 302.57130650469685 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6267206409599126, dt = 0.009354020627111506
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (1.7%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 1183.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 349.33 us (94.3%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (68.0%)
Info: cfl dt = 0.009354020929329552 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9819e+05 | 32768 | 1 | 1.099e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 306.4354092967778 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6360746615870242, dt = 0.009354020929329552
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.7%)
patch tree reduce : 1683.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 342.91 us (94.4%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (70.0%)
Info: cfl dt = 0.009354020075014327 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9747e+05 | 32768 | 1 | 1.102e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 305.6994767240912 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6454286825163538, dt = 0.009354020075014327
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.9%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1402.00 ns (0.4%)
LB compute : 297.29 us (93.3%)
LB move op cnt : 0
LB apply : 3.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (67.2%)
Info: cfl dt = 0.00935401971598696 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9979e+05 | 32768 | 1 | 1.093e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.0797024886156 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6547827025913681, dt = 0.00935401971598696
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (1.9%)
patch tree reduce : 1653.00 ns (0.5%)
gen split merge : 1071.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 313.05 us (93.8%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (67.1%)
Info: cfl dt = 0.009354019956140472 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0661e+05 | 32768 | 1 | 1.069e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.09384594275804 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.664136722307355, dt = 0.009354019956140472
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.8%)
patch tree reduce : 1864.00 ns (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 307.12 us (94.0%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (65.9%)
Info: cfl dt = 0.009354019264506987 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0530e+05 | 32768 | 1 | 1.073e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.74080347327185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6734907422634955, dt = 0.009354019264506987
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (0.9%)
patch tree reduce : 1553.00 ns (0.2%)
gen split merge : 1112.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.2%)
LB compute : 647.71 us (96.9%)
LB move op cnt : 0
LB apply : 3.98 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (72.4%)
Info: cfl dt = 0.009354018856797064 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0285e+05 | 32768 | 1 | 1.082e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.23158114008334 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6828447615280024, dt = 0.009354018856797064
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 320.67 us (94.2%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (67.7%)
Info: cfl dt = 0.009354019035518996 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1635e+05 | 32768 | 1 | 1.036e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 325.0963435652505 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6921987803847995, dt = 0.009354019035518996
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (2.0%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 295.83 us (93.7%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1893.00 ns (67.0%)
Info: cfl dt = 0.009354018501887546 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2331e+05 | 32768 | 1 | 1.014e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.2584060223754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7015527994203186, dt = 0.009354018501887546
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (1.6%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 1262.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1323.00 ns (0.3%)
LB compute : 366.49 us (94.5%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (67.9%)
Info: cfl dt = 0.009354018045972506 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9696e+05 | 32768 | 1 | 1.103e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 305.1739342876041 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7109068179222061, dt = 0.009354018045972506
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.5%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 351.60 us (94.7%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (68.3%)
Info: cfl dt = 0.009354018163947393 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9757e+05 | 32768 | 1 | 1.101e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 305.8027089537797 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7202608359681786, dt = 0.009354018163947393
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.4%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 373.77 us (95.1%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (69.3%)
Info: cfl dt = 0.009354017783935142 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0026e+05 | 32768 | 1 | 1.091e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.5641758223619 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.729614854132126, dt = 0.009354017783935142
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 1914.00 ns (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 322.69 us (94.4%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (67.2%)
Info: cfl dt = 0.009354017280324749 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9797e+05 | 32768 | 1 | 1.100e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 306.21033748877767 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7389688719160612, dt = 0.009354017280324749
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 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 : 912.00 ns (0.2%)
LB compute : 378.98 us (94.7%)
LB move op cnt : 0
LB apply : 4.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (72.6%)
Info: cfl dt = 0.009354017338284068 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0099e+05 | 32768 | 1 | 1.089e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 309.31208297526814 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7483228891963859, dt = 0.009354017338284068
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.6%)
patch tree reduce : 1562.00 ns (0.4%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 336.89 us (94.6%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (67.7%)
Info: cfl dt = 0.00935401710775742 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0207e+05 | 32768 | 1 | 1.085e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 310.43003508659933 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.75767690653467, dt = 0.00935401710775742
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.6%)
patch tree reduce : 1723.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 : 353.05 us (94.5%)
LB move op cnt : 0
LB apply : 4.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (67.6%)
Info: cfl dt = 0.009354016556993675 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0672e+05 | 32768 | 1 | 1.068e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.20965018355196 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7670309236424274, dt = 0.009354016556993675
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.5%)
patch tree reduce : 1693.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 346.05 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.21 us (69.1%)
Info: cfl dt = 0.009354016555710906 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0643e+05 | 32768 | 1 | 1.069e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 314.90590021349726 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7763849401994211, dt = 0.009354016555710906
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.5%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 331.82 us (94.6%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.7%)
Info: cfl dt = 0.00935401647074776 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0676e+05 | 32768 | 1 | 1.068e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.2409987122351 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.785738956755132, dt = 0.00935401647074776
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.8%)
patch tree reduce : 1503.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1143.00 ns (0.4%)
LB compute : 300.54 us (93.8%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (66.5%)
Info: cfl dt = 0.009354015873403622 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0700e+05 | 32768 | 1 | 1.067e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.4938426389063 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7950929732258797, dt = 0.009354015873403622
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (1.9%)
patch tree reduce : 1623.00 ns (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 312.70 us (94.0%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (64.8%)
Info: cfl dt = 0.009354015813689246 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0423e+05 | 32768 | 1 | 1.077e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 312.64868710366125 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8044469890992834, dt = 0.009354015813689246
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.8%)
patch tree reduce : 1813.00 ns (0.5%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 323.60 us (94.3%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.2%)
Info: cfl dt = 0.009354015870549008 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0784e+05 | 32768 | 1 | 1.064e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.3534330052138 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8138010049129726, dt = 0.009354015870549008
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.7%)
patch tree reduce : 1933.00 ns (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1091.00 ns (0.3%)
LB compute : 342.20 us (94.1%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (69.3%)
Info: cfl dt = 0.00935401522722641 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9742e+05 | 32768 | 1 | 1.102e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 305.65180246092586 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8231550207835215, dt = 0.00935401522722641
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.7%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 315.04 us (94.2%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (66.7%)
Info: cfl dt = 0.009354015109923043 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0681e+05 | 32768 | 1 | 1.068e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.29299641801765 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.832509036010748, dt = 0.009354015109923043
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.9%)
patch tree reduce : 1983.00 ns (0.6%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1091.00 ns (0.3%)
LB compute : 314.62 us (93.9%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (67.8%)
Info: cfl dt = 0.009354015305022731 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9916e+05 | 32768 | 1 | 1.095e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 307.4321097260091 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8418630511206711, dt = 0.009354015305022731
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.9%)
patch tree reduce : 1633.00 ns (0.5%)
gen split merge : 1292.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.4%)
LB compute : 306.06 us (93.8%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (76.3%)
Info: cfl dt = 0.00935401461635011 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0659e+05 | 32768 | 1 | 1.069e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.0718103368732 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8512170664256938, dt = 0.00935401461635011
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.9%)
patch tree reduce : 1613.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 299.30 us (94.0%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (67.5%)
Info: cfl dt = 0.00935401444232782 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0673e+05 | 32768 | 1 | 1.068e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.2176656080179 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8605710810420439, dt = 0.00935401444232782
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.6%)
patch tree reduce : 1653.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 335.77 us (94.2%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (68.7%)
Info: cfl dt = 0.009354014772223147 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0553e+05 | 32768 | 1 | 1.072e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.98431500332987 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8699250954843718, dt = 0.009354014772223147
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.7%)
patch tree reduce : 1693.00 ns (0.5%)
gen split merge : 1252.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.3%)
LB compute : 312.91 us (93.9%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.3%)
Info: cfl dt = 0.009354014038852658 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0632e+05 | 32768 | 1 | 1.070e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 314.79650989471116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.879279110256595, dt = 0.009354014038852658
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.8%)
patch tree reduce : 1613.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 310.14 us (93.8%)
LB move op cnt : 0
LB apply : 3.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (67.1%)
Info: cfl dt = 0.009354013809004533 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0579e+05 | 32768 | 1 | 1.072e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 314.2451204179847 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8886331242954476, dt = 0.009354013809004533
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.9%)
patch tree reduce : 1563.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 307.68 us (93.9%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (65.5%)
Info: cfl dt = 0.009354014091571522 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0712e+05 | 32768 | 1 | 1.067e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.61453039390716 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8979871381044522, dt = 0.009354014091571522
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.13 us (2.1%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 313.23 us (93.5%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.0%)
Info: cfl dt = 0.009354013492979645 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9957e+05 | 32768 | 1 | 1.094e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 307.8581100255153 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9073411521960237, dt = 0.009354013492979645
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.6%)
patch tree reduce : 1753.00 ns (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 361.78 us (94.6%)
LB move op cnt : 0
LB apply : 4.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (68.6%)
Info: cfl dt = 0.009354013208217566 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0690e+05 | 32768 | 1 | 1.068e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.38477141101004 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9166951656890033, dt = 0.009354013208217566
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.6%)
patch tree reduce : 1733.00 ns (0.5%)
gen split merge : 1021.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 343.52 us (94.7%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (66.2%)
Info: cfl dt = 0.00935401342583792 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.6922e+05 | 32768 | 1 | 1.217e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 276.67027330873134 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9260491788972209, dt = 0.00935401342583792
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.6%)
patch tree reduce : 1723.00 ns (0.5%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 350.84 us (94.6%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.2%)
Info: cfl dt = 0.00935401297712563 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.4406e+05 | 32768 | 1 | 1.343e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 250.8161925968059 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9354031923230589, dt = 0.00935401297712563
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.7%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 317.34 us (94.2%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1984.00 ns (66.7%)
Info: cfl dt = 0.0093540126383762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0017e+05 | 32768 | 1 | 1.092e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.471629530032 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9447572053001846, dt = 0.0093540126383762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.5%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 349.52 us (94.8%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (67.9%)
Info: cfl dt = 0.009354012792140357 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9888e+05 | 32768 | 1 | 1.096e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 307.1496046256326 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9541112179385608, dt = 0.009354012792140357
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.7%)
patch tree reduce : 1813.00 ns (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 344.97 us (94.4%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (67.1%)
Info: cfl dt = 0.009354012489818625 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9992e+05 | 32768 | 1 | 1.093e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.21744145573365 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9634652307307011, dt = 0.009354012489818625
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.6%)
patch tree reduce : 1663.00 ns (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 322.58 us (94.5%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1943.00 ns (65.1%)
Info: cfl dt = 0.009354012098019188 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0223e+05 | 32768 | 1 | 1.084e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 310.59292306992444 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9728192432205197, dt = 0.009354012098019188
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.8%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 323.42 us (94.2%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1993.00 ns (66.1%)
Info: cfl dt = 0.009354012189030909 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0000e+05 | 32768 | 1 | 1.092e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.2981590177651 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9821732553185389, dt = 0.009354012189030909
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (2.0%)
patch tree reduce : 1593.00 ns (0.5%)
gen split merge : 1182.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.3%)
LB compute : 312.07 us (93.8%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (66.0%)
Info: cfl dt = 0.009354012029707318 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0033e+05 | 32768 | 1 | 1.091e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.641132803349 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9915272675075698, dt = 0.00847273249243019
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.7%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 348.31 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.22 us (69.2%)
Info: cfl dt = 0.009354011627077611 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0550e+05 | 32768 | 1 | 1.073e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 284.3731757592032 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 42.062859221000004 (s) [Godunov][rank=0]
Info: pushing data in scheduler, N = 4096 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 1390.07 us [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: Compute load ... [DataInserterUtility][rank=0]
Info: run scheduler step ... [DataInserterUtility][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (60.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 : 1422.00 ns (0.4%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 371.10 us (97.0%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: patch count stable after 1 runs npatch = 1 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.66 us (2.9%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 370.05 us (93.3%)
LB move op cnt : 0
LB apply : 4.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (71.8%)
Info: cfl dt = 0.009354083528780794 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.5393e+05 | 32768 | 1 | 1.290e-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.009354083528780794
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.7%)
patch tree reduce : 1674.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 : 305.30 us (94.0%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (67.1%)
Info: cfl dt = 0.009354078154867489 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1891e+05 | 32768 | 1 | 1.027e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 327.737184107801 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009354083528780794, dt = 0.009354078154867489
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.6%)
patch tree reduce : 1363.00 ns (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 336.86 us (94.7%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.9%)
Info: cfl dt = 0.009354072671452501 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2109e+05 | 32768 | 1 | 1.021e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.9754080256595 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018708161683648285, dt = 0.009354072671452501
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (1.9%)
patch tree reduce : 1623.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 308.17 us (93.7%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (67.3%)
Info: cfl dt = 0.009354069542070588 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1736e+05 | 32768 | 1 | 1.033e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.13630315143234 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028062234355100787, dt = 0.009354069542070588
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.9%)
patch tree reduce : 1583.00 ns (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 301.65 us (93.7%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (67.0%)
Info: cfl dt = 0.009354066932195914 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1466e+05 | 32768 | 1 | 1.041e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.3676799127617 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03741630389717138, dt = 0.009354066932195914
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.9%)
patch tree reduce : 1874.00 ns (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.4%)
LB compute : 309.50 us (93.7%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.9%)
Info: cfl dt = 0.009354062313399933 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1682e+05 | 32768 | 1 | 1.034e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 325.5845192091238 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04677037082936729, dt = 0.009354062313399933
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.5%)
patch tree reduce : 1734.00 ns (0.4%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 367.66 us (94.9%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (71.4%)
Info: cfl dt = 0.009354059631342256 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1724e+05 | 32768 | 1 | 1.033e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.0217765055539 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05612443314276722, dt = 0.009354059631342256
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.7%)
patch tree reduce : 1773.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.3%)
LB compute : 307.29 us (93.9%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (66.4%)
Info: cfl dt = 0.009354058218379023 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1599e+05 | 32768 | 1 | 1.037e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.731919742787 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06547849277410948, dt = 0.009354058218379023
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.6%)
patch tree reduce : 1523.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 314.43 us (94.2%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (66.9%)
Info: cfl dt = 0.009354053948785546 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0967e+05 | 32768 | 1 | 1.058e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.23288504484555 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0748325509924885, dt = 0.009354053948785546
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.8%)
patch tree reduce : 1583.00 ns (0.5%)
gen split merge : 1162.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 310.90 us (94.0%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (67.0%)
Info: cfl dt = 0.009354051190739362 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.7146e+05 | 32768 | 1 | 1.207e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 278.9679152597675 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08418660494127406, dt = 0.009354051190739362
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.7%)
patch tree reduce : 1753.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 302.29 us (93.3%)
LB move op cnt : 0
LB apply : 4.58 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (70.1%)
Info: cfl dt = 0.009354050851596313 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1551e+05 | 32768 | 1 | 1.039e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.2357542474055 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09354065613201341, dt = 0.009354050851596313
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.7%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1163.00 ns (0.3%)
LB compute : 342.61 us (94.1%)
LB move op cnt : 0
LB apply : 4.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (69.6%)
Info: cfl dt = 0.009354046763265974 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1753e+05 | 32768 | 1 | 1.032e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.31915379106516 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10289470698360972, dt = 0.009354046763265974
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 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 : 1022.00 ns (0.3%)
LB compute : 309.42 us (94.1%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (68.4%)
Info: cfl dt = 0.0093540437693784 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0855e+05 | 32768 | 1 | 1.062e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 317.0836527657342 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11224875374687569, dt = 0.0093540437693784
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.7%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 338.06 us (94.2%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (66.2%)
Info: cfl dt = 0.00935404303943395 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0204e+05 | 32768 | 1 | 1.085e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 310.3969615868804 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1216027975162541, dt = 0.00935404303943395
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (1.8%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1413.00 ns (0.4%)
LB compute : 328.39 us (94.2%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (67.6%)
Info: cfl dt = 0.009354039905991662 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2776e+05 | 32768 | 1 | 9.998e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.82562971308647 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13095684055568804, dt = 0.009354039905991662
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.6%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 358.34 us (94.7%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (68.2%)
Info: cfl dt = 0.009354036781388759 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1275e+05 | 32768 | 1 | 7.939e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 424.1689204174632 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1403108804616797, dt = 0.009354036781388759
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 1793.00 ns (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 318.27 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.50 us (64.9%)
Info: cfl dt = 0.009354035595879428 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1051e+05 | 32768 | 1 | 7.982e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 421.8641436656527 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14966491724306846, dt = 0.009354035595879428
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.8%)
patch tree reduce : 1442.00 ns (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1393.00 ns (0.4%)
LB compute : 317.85 us (94.1%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (68.1%)
Info: cfl dt = 0.009354033526464313 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1076e+05 | 32768 | 1 | 7.978e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 422.11866281220153 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1590189528389479, dt = 0.009354033526464313
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.5%)
patch tree reduce : 1943.00 ns (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 348.13 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.24 us (69.1%)
Info: cfl dt = 0.009354030284708065 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0672e+05 | 32768 | 1 | 1.068e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.20850986607337 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1683729863654122, dt = 0.009354030284708065
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 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 : 1162.00 ns (0.3%)
LB compute : 338.36 us (94.5%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (68.2%)
Info: cfl dt = 0.009354028645250777 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1526e+05 | 32768 | 1 | 1.039e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.9827956031968 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17772701665012028, dt = 0.009354028645250777
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.7%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.4%)
LB compute : 331.45 us (94.3%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.2%)
Info: cfl dt = 0.009354027656631493 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1687e+05 | 32768 | 1 | 1.034e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 325.63549439713785 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18708104529537106, dt = 0.009354027656631493
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.6%)
patch tree reduce : 1442.00 ns (0.4%)
gen split merge : 1182.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 345.63 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.21 us (67.8%)
Info: cfl dt = 0.00935402431293075 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1694e+05 | 32768 | 1 | 1.034e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 325.70623483997144 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19643507295200255, dt = 0.00935402431293075
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.9%)
patch tree reduce : 1673.00 ns (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 317.41 us (94.0%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (67.6%)
Info: cfl dt = 0.00935402222323993 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1415e+05 | 32768 | 1 | 1.043e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 322.8410413948308 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2057890972649333, dt = 0.00935402222323993
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.7%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 339.48 us (94.2%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.9%)
Info: cfl dt = 0.00935402230445667 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1369e+05 | 32768 | 1 | 1.045e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 322.36667571091465 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21514311948817322, dt = 0.00935402230445667
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.02 us (1.9%)
patch tree reduce : 2.44 us (0.7%)
gen split merge : 1143.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 339.59 us (93.7%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (68.8%)
Info: cfl dt = 0.00935401889141151 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1423e+05 | 32768 | 1 | 1.043e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 322.925710626077 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2244971417926299, dt = 0.00935401889141151
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (2.0%)
patch tree reduce : 1492.00 ns (0.5%)
gen split merge : 1122.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.4%)
LB compute : 295.70 us (93.8%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (69.3%)
Info: cfl dt = 0.009354016371546729 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1485e+05 | 32768 | 1 | 1.041e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.561273087256 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2338511606840414, dt = 0.009354016371546729
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.7%)
patch tree reduce : 1863.00 ns (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 333.01 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.15 us (67.4%)
Info: cfl dt = 0.00935401573809435 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1078e+05 | 32768 | 1 | 1.054e-01 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 319.3780077860272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24320517705558814, dt = 0.00935401573809435
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.9%)
patch tree reduce : 1594.00 ns (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.4%)
LB compute : 299.64 us (93.8%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (67.7%)
Info: cfl dt = 0.00935401332650307 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0399e+05 | 32768 | 1 | 1.078e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 312.40361109648865 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2525591927936825, dt = 0.00935401332650307
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (2.1%)
patch tree reduce : 1784.00 ns (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.4%)
LB compute : 297.36 us (93.4%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (66.6%)
Info: cfl dt = 0.009354010577817326 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0292e+05 | 32768 | 1 | 1.082e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.2996553083129 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2619132061201856, dt = 0.009354010577817326
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.8%)
patch tree reduce : 1482.00 ns (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 305.93 us (93.8%)
LB move op cnt : 0
LB apply : 4.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.4%)
Info: cfl dt = 0.009354009402630883 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9616e+05 | 32768 | 1 | 1.106e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 304.348220159012 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2712672166980029, dt = 0.009354009402630883
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.7%)
patch tree reduce : 1482.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 : 298.66 us (93.9%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1944.00 ns (67.2%)
Info: cfl dt = 0.009354008039109959 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0884e+05 | 32768 | 1 | 1.061e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 317.38387454017965 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2806212261006338, dt = 0.009354008039109959
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.9%)
patch tree reduce : 1543.00 ns (0.5%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.4%)
LB compute : 294.19 us (93.8%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.6%)
Info: cfl dt = 0.009354005105330507 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0632e+05 | 32768 | 1 | 1.070e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 314.7909010341092 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28997523413974374, dt = 0.009354005105330507
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.7%)
patch tree reduce : 1442.00 ns (0.4%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1403.00 ns (0.4%)
LB compute : 319.03 us (94.3%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.9%)
Info: cfl dt = 0.00935400343453309 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1535e+05 | 32768 | 1 | 1.039e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.07413288163775 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29932923924507426, dt = 0.00935400343453309
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.8%)
patch tree reduce : 1432.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 333.68 us (94.5%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (67.7%)
Info: cfl dt = 0.00935400313170543 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1559e+05 | 32768 | 1 | 1.038e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.31923640271475 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30868324267960734, dt = 0.00935400313170543
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.6%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 335.88 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.85 us (74.8%)
Info: cfl dt = 0.009354000054245463 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0114e+05 | 32768 | 1 | 1.088e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 309.46968874643716 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31803724581131276, dt = 0.009354000054245463
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.7%)
patch tree reduce : 1352.00 ns (0.4%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.4%)
LB compute : 298.54 us (94.0%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (64.5%)
Info: cfl dt = 0.00935399792055604 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0626e+05 | 32768 | 1 | 1.070e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 314.7294687332099 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32739124586555823, dt = 0.00935399792055604
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.9%)
patch tree reduce : 1533.00 ns (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1433.00 ns (0.4%)
LB compute : 301.52 us (93.8%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (65.2%)
Info: cfl dt = 0.009353997609864386 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8918e+05 | 32768 | 1 | 1.133e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 297.17760124204335 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33674524378611426, dt = 0.009353997609864386
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.8%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 331.34 us (94.1%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (67.8%)
Info: cfl dt = 0.00935399506117726 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0485e+05 | 32768 | 1 | 1.075e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.2842640727698 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.34609924139597864, dt = 0.00935399506117726
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.7%)
patch tree reduce : 1753.00 ns (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1293.00 ns (0.4%)
LB compute : 323.63 us (94.0%)
LB move op cnt : 0
LB apply : 4.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.7%)
Info: cfl dt = 0.009353992602423469 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0486e+05 | 32768 | 1 | 1.075e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.29705589460764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3554532364571559, dt = 0.009353992602423469
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (1.7%)
patch tree reduce : 1763.00 ns (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 347.35 us (94.3%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (69.9%)
Info: cfl dt = 0.009353991674628026 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2104e+05 | 32768 | 1 | 1.021e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.92148201434463 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36480722905957935, dt = 0.009353991674628026
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (2.0%)
patch tree reduce : 1634.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.4%)
LB compute : 291.19 us (93.3%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1954.00 ns (64.6%)
Info: cfl dt = 0.009353990122304034 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1937e+05 | 32768 | 1 | 1.026e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.2000747097818 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3741612207342074, dt = 0.009353990122304034
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.0%)
patch tree reduce : 1713.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 314.15 us (93.9%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1754.00 ns (63.7%)
Info: cfl dt = 0.009353987444339457 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0996e+05 | 32768 | 1 | 1.057e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.530831838933 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3835152108565114, dt = 0.009353987444339457
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.0%)
patch tree reduce : 1653.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 303.55 us (93.8%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1784.00 ns (63.8%)
Info: cfl dt = 0.009353986008052546 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1374e+05 | 32768 | 1 | 1.044e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 322.4185097298487 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3928691983008509, dt = 0.009353986008052546
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.7%)
patch tree reduce : 1423.00 ns (0.4%)
gen split merge : 1112.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1363.00 ns (0.4%)
LB compute : 324.62 us (94.2%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (66.9%)
Info: cfl dt = 0.00935398548075211 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0423e+05 | 32768 | 1 | 1.077e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 312.647549551524 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4022231843089034, dt = 0.00935398548075211
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.6%)
patch tree reduce : 1743.00 ns (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 319.99 us (94.3%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.2%)
Info: cfl dt = 0.009353982627727644 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0128e+05 | 32768 | 1 | 1.088e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 309.6148336237648 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41157716978965553, dt = 0.009353982627727644
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.6%)
patch tree reduce : 1502.00 ns (0.4%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 335.95 us (94.6%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.9%)
Info: cfl dt = 0.009353980725845893 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9629e+05 | 32768 | 1 | 1.106e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 304.481545295896 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42093115241738316, dt = 0.009353980725845893
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 1513.00 ns (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.4%)
LB compute : 291.41 us (93.8%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (66.7%)
Info: cfl dt = 0.009353980586634808 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1091e+05 | 32768 | 1 | 1.054e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 319.50646284091323 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.430285133143229, dt = 0.009353980586634808
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (2.0%)
patch tree reduce : 1743.00 ns (0.5%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.4%)
LB compute : 297.54 us (93.6%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.2%)
Info: cfl dt = 0.009353977985005722 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0938e+05 | 32768 | 1 | 1.059e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 317.9401940462804 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43963911372986386, dt = 0.009353977985005722
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.9%)
patch tree reduce : 1563.00 ns (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 300.25 us (93.9%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.0%)
Info: cfl dt = 0.009353975716037119 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1210e+05 | 32768 | 1 | 1.050e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.73006002207313 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44899309171486956, dt = 0.009353975716037119
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.7%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1433.00 ns (0.4%)
LB compute : 325.70 us (94.1%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (71.7%)
Info: cfl dt = 0.009353974934539747 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1002e+05 | 32768 | 1 | 1.057e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.59338624220516 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4583470674309067, dt = 0.009353974934539747
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.7%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 1232.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 337.46 us (94.5%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (69.1%)
Info: cfl dt = 0.009353973277431567 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0746e+05 | 32768 | 1 | 1.066e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.96409790183424 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46770104236544646, dt = 0.009353973277431567
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (1.9%)
patch tree reduce : 1703.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 328.06 us (93.9%)
LB move op cnt : 0
LB apply : 4.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (69.6%)
Info: cfl dt = 0.009353970777021159 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0988e+05 | 32768 | 1 | 1.057e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.44717764907983 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47705501564287806, dt = 0.009353970777021159
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.6%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.4%)
LB compute : 322.98 us (94.3%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.7%)
Info: cfl dt = 0.009353969492541981 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1727e+05 | 32768 | 1 | 1.033e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.03994977123443 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4864089864198992, dt = 0.009353969492541981
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (1.9%)
patch tree reduce : 1583.00 ns (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 319.41 us (93.9%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (64.8%)
Info: cfl dt = 0.009353968818935953 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0650e+05 | 32768 | 1 | 1.069e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 314.97813321130354 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4957629559124412, dt = 0.009353968818935953
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.8%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 296.52 us (93.8%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (66.8%)
Info: cfl dt = 0.00935396613008551 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0190e+05 | 32768 | 1 | 1.085e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 310.24986867349185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5051169247313771, dt = 0.00935396613008551
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.8%)
patch tree reduce : 1563.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.4%)
LB compute : 308.29 us (93.9%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (66.6%)
Info: cfl dt = 0.009353964389444525 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9592e+05 | 32768 | 1 | 1.107e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 304.1084690367217 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5144708908614627, dt = 0.009353964389444525
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.8%)
patch tree reduce : 1533.00 ns (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.4%)
LB compute : 304.39 us (94.0%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.8%)
Info: cfl dt = 0.009353964363723065 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9759e+05 | 32768 | 1 | 1.101e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 305.8185010453614 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5238248552509073, dt = 0.009353964363723065
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.6%)
patch tree reduce : 1572.00 ns (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1153.00 ns (0.3%)
LB compute : 336.90 us (94.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (62.6%)
Info: cfl dt = 0.009353961738053248 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0324e+05 | 32768 | 1 | 1.081e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.62222619592444 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5331788196146303, dt = 0.009353961738053248
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.8%)
patch tree reduce : 1372.00 ns (0.4%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 304.30 us (94.0%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (65.7%)
Info: cfl dt = 0.009353959610622548 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9922e+05 | 32768 | 1 | 1.095e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 307.49913783746223 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5425327813526836, dt = 0.009353959610622548
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.9%)
patch tree reduce : 1803.00 ns (0.5%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.4%)
LB compute : 310.11 us (93.9%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (66.7%)
Info: cfl dt = 0.00935395893696203 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0158e+05 | 32768 | 1 | 1.087e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 309.92581503242934 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5518867409633061, dt = 0.00935395893696203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.8%)
patch tree reduce : 1493.00 ns (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.4%)
LB compute : 303.75 us (93.7%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (68.3%)
Info: cfl dt = 0.009353957207138195 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0386e+05 | 32768 | 1 | 1.078e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 312.26153293284614 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5612406999002681, dt = 0.009353957207138195
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (2.0%)
patch tree reduce : 1683.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1453.00 ns (0.4%)
LB compute : 305.05 us (93.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (66.6%)
Info: cfl dt = 0.009353954844717592 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0361e+05 | 32768 | 1 | 1.079e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 312.00233998839116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5705946571074063, dt = 0.009353954844717592
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.18 us (3.2%)
patch tree reduce : 4.11 us (1.2%)
gen split merge : 2.19 us (0.6%)
split / merge op : 0/0
apply split merge : 1683.00 ns (0.5%)
LB compute : 315.25 us (90.8%)
LB move op cnt : 0
LB apply : 4.16 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (69.3%)
Info: cfl dt = 0.00935395367927799 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0583e+05 | 32768 | 1 | 1.071e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 314.2929242691771 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5799486119521239, dt = 0.00935395367927799
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.7%)
patch tree reduce : 1724.00 ns (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 334.43 us (94.3%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (70.1%)
Info: cfl dt = 0.009353952891896602 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0131e+05 | 32768 | 1 | 1.088e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 309.641447777905 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5893025656314018, dt = 0.009353952891896602
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.6%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 326.96 us (94.3%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.1%)
Info: cfl dt = 0.009353950335108727 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0263e+05 | 32768 | 1 | 1.083e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 310.9987798763663 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5986565185232984, dt = 0.009353950335108727
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.8%)
patch tree reduce : 1533.00 ns (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.4%)
LB compute : 301.13 us (94.0%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (67.0%)
Info: cfl dt = 0.009353948725881089 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0107e+05 | 32768 | 1 | 1.088e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 309.3983785238124 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6080104688584071, dt = 0.009353948725881089
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.8%)
patch tree reduce : 1333.00 ns (0.4%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.4%)
LB compute : 303.59 us (93.8%)
LB move op cnt : 0
LB apply : 3.74 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (65.5%)
Info: cfl dt = 0.009353948799885563 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9751e+05 | 32768 | 1 | 1.101e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 305.7379559311428 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6173644175842883, dt = 0.009353948799885563
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.8%)
patch tree reduce : 1593.00 ns (0.5%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1233.00 ns (0.4%)
LB compute : 309.96 us (93.7%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.8%)
Info: cfl dt = 0.009353946150941603 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0088e+05 | 32768 | 1 | 1.089e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 309.205947881713 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6267183663841739, dt = 0.009353946150941603
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.7%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.4%)
LB compute : 303.60 us (94.1%)
LB move op cnt : 0
LB apply : 3.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (67.4%)
Info: cfl dt = 0.00935394414217964 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9769e+05 | 32768 | 1 | 1.101e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 305.92765446137906 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6360723125351155, dt = 0.00935394414217964
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.5%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 377.63 us (94.8%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (66.6%)
Info: cfl dt = 0.009353943566878048 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0062e+05 | 32768 | 1 | 1.090e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.9345521957247 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6454262566772951, dt = 0.009353943566878048
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.9%)
patch tree reduce : 1593.00 ns (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 302.16 us (93.9%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.3%)
Info: cfl dt = 0.009353941769246223 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8517e+05 | 32768 | 1 | 1.149e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 293.05276540027467 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6547802002441732, dt = 0.009353941769246223
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.53 us (2.8%)
patch tree reduce : 1914.00 ns (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1392.00 ns (0.4%)
LB compute : 348.25 us (93.3%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.1%)
Info: cfl dt = 0.009353939524935021 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9554e+05 | 32768 | 1 | 1.109e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 303.7109068152346 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6641341420134194, dt = 0.009353939524935021
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.5%)
patch tree reduce : 1402.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1403.00 ns (0.4%)
LB compute : 361.28 us (94.9%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (66.1%)
Info: cfl dt = 0.009353938468965959 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9984e+05 | 32768 | 1 | 1.093e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.1296831680691 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6734880815383544, dt = 0.009353938468965959
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.7%)
patch tree reduce : 1933.00 ns (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1223.00 ns (0.3%)
LB compute : 337.49 us (94.4%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.9%)
Info: cfl dt = 0.009353937575423195 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9456e+05 | 32768 | 1 | 1.112e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 302.7097801257354 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6828420200073203, dt = 0.009353937575423195
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.6%)
patch tree reduce : 1934.00 ns (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1512.00 ns (0.4%)
LB compute : 362.41 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.29 us (68.4%)
Info: cfl dt = 0.009353935133736762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8989e+05 | 32768 | 1 | 1.130e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 297.9106645953296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6921959575827435, dt = 0.009353935133736762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.5%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 359.44 us (94.7%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (68.1%)
Info: cfl dt = 0.009353933645561202 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0264e+05 | 32768 | 1 | 1.083e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.0041178467995 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7015498927164803, dt = 0.009353933645561202
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.6%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 344.74 us (94.5%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (70.3%)
Info: cfl dt = 0.009353933684966197 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0218e+05 | 32768 | 1 | 1.084e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 310.5326694640693 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7109038263620415, dt = 0.009353933684966197
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.8%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 300.53 us (93.9%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1873.00 ns (64.9%)
Info: cfl dt = 0.0093539310831012 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0633e+05 | 32768 | 1 | 1.070e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 314.7995695386414 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7202577600470077, dt = 0.0093539310831012
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.7%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1033.00 ns (0.3%)
LB compute : 302.25 us (94.2%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (68.3%)
Info: cfl dt = 0.009353929195071097 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0307e+05 | 32768 | 1 | 1.081e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.45528364028445 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7296116911301089, dt = 0.009353929195071097
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.6%)
patch tree reduce : 1814.00 ns (0.5%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.3%)
LB compute : 366.15 us (94.7%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (69.8%)
Info: cfl dt = 0.009353928735686563 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9911e+05 | 32768 | 1 | 1.096e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 307.383642043551 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.73896562032518, dt = 0.009353928735686563
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.6%)
patch tree reduce : 1774.00 ns (0.5%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 338.87 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.39 us (67.9%)
Info: cfl dt = 0.00935392686516202 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9691e+05 | 32768 | 1 | 1.104e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 305.1206025722192 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7483195490608665, dt = 0.00935392686516202
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.7%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 311.12 us (94.1%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (66.3%)
Info: cfl dt = 0.009353924730538666 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8796e+05 | 32768 | 1 | 1.138e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 295.9237387970069 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7576734759260285, dt = 0.009353924730538666
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.9%)
patch tree reduce : 1843.00 ns (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 290.58 us (93.8%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.0%)
Info: cfl dt = 0.009353923788328817 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1699e+05 | 32768 | 1 | 1.034e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 325.75463222675296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7670274006565672, dt = 0.009353923788328817
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.9%)
patch tree reduce : 1433.00 ns (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.5%)
LB compute : 267.35 us (93.4%)
LB move op cnt : 0
LB apply : 3.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1883.00 ns (64.6%)
Info: cfl dt = 0.009353922786110993 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4873e+05 | 32768 | 1 | 9.396e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 358.37377621738517 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7763813244448959, dt = 0.009353922786110993
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (2.0%)
patch tree reduce : 1363.00 ns (0.4%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1463.00 ns (0.5%)
LB compute : 286.43 us (93.5%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (68.6%)
Info: cfl dt = 0.009353920451071323 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1459e+05 | 32768 | 1 | 7.904e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 426.0511862067658 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.785735247231007, dt = 0.009353920451071323
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.8%)
patch tree reduce : 1663.00 ns (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1343.00 ns (0.4%)
LB compute : 310.83 us (93.8%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (66.9%)
Info: cfl dt = 0.009353919083898451 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1634e+05 | 32768 | 1 | 7.871e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 427.850430782165 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7950891676820783, dt = 0.009353919083898451
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.7%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1483.00 ns (0.4%)
LB compute : 330.95 us (94.4%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1974.00 ns (67.5%)
Info: cfl dt = 0.009353918985499591 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4198e+05 | 32768 | 1 | 7.414e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 454.2027695763361 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8044430867659768, dt = 0.009353918985499591
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.8%)
patch tree reduce : 1553.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.4%)
LB compute : 276.29 us (93.6%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.3%)
Info: cfl dt = 0.009353916483810863 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3434e+05 | 32768 | 1 | 7.544e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 446.34800451641286 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8137970057514764, dt = 0.009353916483810863
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.9%)
patch tree reduce : 1653.00 ns (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 288.89 us (93.7%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.1%)
Info: cfl dt = 0.009353914723220903 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3238e+05 | 32768 | 1 | 7.578e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 444.3391843368947 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8231509222352873, dt = 0.009353914723220903
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (2.0%)
patch tree reduce : 1703.00 ns (0.5%)
gen split merge : 1172.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 306.49 us (93.8%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (66.3%)
Info: cfl dt = 0.009353914400579784 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3890e+05 | 32768 | 1 | 7.466e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 451.03148829178116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8325048369585082, dt = 0.009353914400579784
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.8%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 314.62 us (94.1%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.2%)
Info: cfl dt = 0.009353912446789339 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3241e+05 | 32768 | 1 | 7.578e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 444.36394078253977 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8418587513590879, dt = 0.009353912446789339
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.8%)
patch tree reduce : 1884.00 ns (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 283.98 us (93.5%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (67.9%)
Info: cfl dt = 0.009353910418473966 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5802e+05 | 32768 | 1 | 9.153e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 367.91506810581564 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8512126638058772, dt = 0.009353910418473966
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (2.0%)
patch tree reduce : 1683.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1263.00 ns (0.4%)
LB compute : 286.75 us (93.6%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1904.00 ns (66.5%)
Info: cfl dt = 0.009353909598166333 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2601e+05 | 32768 | 1 | 1.005e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.02077172262335 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8605665742243512, dt = 0.009353909598166333
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 1342.00 ns (0.4%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.4%)
LB compute : 330.16 us (94.5%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (69.8%)
Info: cfl dt = 0.009353908479578626 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2412e+05 | 32768 | 1 | 1.011e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 333.0811529294483 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8699204838225175, dt = 0.009353908479578626
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (2.0%)
patch tree reduce : 1793.00 ns (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.4%)
LB compute : 287.81 us (93.6%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1783.00 ns (63.8%)
Info: cfl dt = 0.00935390624705006 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3603e+05 | 32768 | 1 | 9.751e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 345.3238008530308 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8792743923020961, dt = 0.00935390624705006
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.9%)
patch tree reduce : 1463.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1372.00 ns (0.4%)
LB compute : 292.54 us (93.7%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.2%)
Info: cfl dt = 0.009353905004505366 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3753e+05 | 32768 | 1 | 9.708e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.8669832933313 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8886282985491462, dt = 0.009353905004505366
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.8%)
patch tree reduce : 1543.00 ns (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 300.73 us (93.7%)
LB move op cnt : 0
LB apply : 3.80 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (65.7%)
Info: cfl dt = 0.009353904762694537 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3499e+05 | 32768 | 1 | 9.782e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 344.2548651981822 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8979822035536515, dt = 0.009353904762694537
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.9%)
patch tree reduce : 1523.00 ns (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 293.60 us (93.8%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (70.1%)
Info: cfl dt = 0.009353902357508005 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4041e+05 | 32768 | 1 | 9.626e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 349.82731028321143 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.907336108316346, dt = 0.009353902357508005
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.8%)
patch tree reduce : 1924.00 ns (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.4%)
LB compute : 316.22 us (93.9%)
LB move op cnt : 0
LB apply : 3.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.1%)
Info: cfl dt = 0.009353900725365228 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3631e+05 | 32768 | 1 | 9.743e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 345.614244654493 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.916690010673854, dt = 0.009353900725365228
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 26.22 us (7.6%)
patch tree reduce : 1593.00 ns (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 307.23 us (88.6%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (68.2%)
Info: cfl dt = 0.009353900551134437 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3749e+05 | 32768 | 1 | 9.709e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.82081828325744 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9260439113992193, dt = 0.009353900551134437
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.7%)
patch tree reduce : 1623.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 337.88 us (94.4%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (69.0%)
Info: cfl dt = 0.009353898500945996 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2255e+05 | 32768 | 1 | 1.016e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 331.4673184113178 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9353978119503537, dt = 0.009353898500945996
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.8%)
patch tree reduce : 1763.00 ns (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 299.15 us (93.9%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.6%)
Info: cfl dt = 0.009353896577011847 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1912e+05 | 32768 | 1 | 1.027e-01 | 0.0% | 1.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 327.93928530291737 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9447517104512997, dt = 0.009353896577011847
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.9%)
patch tree reduce : 1783.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 309.40 us (93.8%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (65.4%)
Info: cfl dt = 0.009353895884974098 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2421e+05 | 32768 | 1 | 1.011e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 333.173725340872 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9541056070283115, dt = 0.009353895884974098
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.6%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 346.05 us (94.4%)
LB move op cnt : 0
LB apply : 4.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (67.9%)
Info: cfl dt = 0.009353894639553937 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2890e+05 | 32768 | 1 | 9.963e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 337.99186955120257 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9634595029132856, dt = 0.009353894639553937
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 311.39 us (93.7%)
LB move op cnt : 0
LB apply : 4.50 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (67.6%)
Info: cfl dt = 0.009353892507279428 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3544e+05 | 32768 | 1 | 9.769e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 344.7159411195374 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9728133975528396, dt = 0.009353892507279428
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.1%)
patch tree reduce : 1743.00 ns (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.4%)
LB compute : 305.66 us (93.5%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (66.7%)
Info: cfl dt = 0.009353891392851988 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3028e+05 | 32768 | 1 | 9.921e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.4164527511539 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.982167290060119, dt = 0.009353891392851988
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.9%)
patch tree reduce : 1463.00 ns (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 296.05 us (93.8%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1834.00 ns (65.6%)
Info: cfl dt = 0.00935389099921683 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2231e+05 | 32768 | 1 | 1.017e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 331.22230740692567 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9915211814529711, dt = 0.008478818547028921
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (2.0%)
patch tree reduce : 1513.00 ns (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.4%)
LB compute : 292.29 us (93.8%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1984.00 ns (66.4%)
Info: cfl dt = 0.009353888890503696 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2190e+05 | 32768 | 1 | 1.018e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 299.8578293245267 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 53.310542006000006 (s) [Godunov][rank=0]
Info: pushing data in scheduler, N = 4096 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 1158.84 us [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: Compute load ... [DataInserterUtility][rank=0]
Info: run scheduler step ... [DataInserterUtility][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (60.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 : 1303.00 ns (0.4%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 311.47 us (96.7%)
LB move op cnt : 0
LB apply : 3.16 us (1.0%)
Info: patch count stable after 1 runs npatch = 1 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.21 us (3.2%)
patch tree reduce : 1874.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1313.00 ns (0.4%)
LB compute : 324.06 us (92.7%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (66.0%)
Info: cfl dt = 0.009354083528780794 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2099e+05 | 32768 | 1 | 1.021e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.009354083528780794
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.6%)
patch tree reduce : 1593.00 ns (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 331.33 us (94.4%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1924.00 ns (65.5%)
Info: cfl dt = 0.009354072778192094 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3884e+05 | 32768 | 1 | 9.671e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 348.21740681036016 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009354083528780794, dt = 0.009354072778192094
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.7%)
patch tree reduce : 1753.00 ns (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 329.04 us (94.2%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.0%)
Info: cfl dt = 0.009354069799318255 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2447e+05 | 32768 | 1 | 1.010e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 333.44750044889895 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018708156306972888, dt = 0.009354069799318255
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (2.0%)
patch tree reduce : 1543.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 298.25 us (93.7%)
LB move op cnt : 0
LB apply : 4.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (66.7%)
Info: cfl dt = 0.009354068824705755 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1521e+05 | 32768 | 1 | 1.040e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.9305285819463 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028062226106291145, dt = 0.009354068824705755
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.7%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 303.45 us (94.2%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1934.00 ns (65.4%)
Info: cfl dt = 0.009354063115090478 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2626e+05 | 32768 | 1 | 1.004e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.2823966949354 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0374162949309969, dt = 0.009354063115090478
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (1.9%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.3%)
LB compute : 314.26 us (94.1%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.2%)
Info: cfl dt = 0.009354059722878038 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2743e+05 | 32768 | 1 | 1.001e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.4867668189511 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04677035804608738, dt = 0.009354059722878038
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.1%)
patch tree reduce : 2.33 us (0.7%)
gen split merge : 1813.00 ns (0.6%)
split / merge op : 0/0
apply split merge : 3.19 us (1.0%)
LB compute : 300.94 us (91.9%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (68.2%)
Info: cfl dt = 0.009354059540598522 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3432e+05 | 32768 | 1 | 9.801e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.5739469714198 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05612441776896542, dt = 0.009354059540598522
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.8%)
patch tree reduce : 1984.00 ns (0.6%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1333.00 ns (0.4%)
LB compute : 311.89 us (93.6%)
LB move op cnt : 0
LB apply : 4.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (67.8%)
Info: cfl dt = 0.009354054967483448 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2959e+05 | 32768 | 1 | 9.942e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.70568114809055 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06547847730956394, dt = 0.009354054967483448
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.6%)
patch tree reduce : 1854.00 ns (0.5%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 367.26 us (94.7%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (67.3%)
Info: cfl dt = 0.009354051404497547 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1537e+05 | 32768 | 1 | 7.889e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 426.8595680398371 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07483253227704739, dt = 0.009354051404497547
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.6%)
patch tree reduce : 1452.00 ns (0.4%)
gen split merge : 993.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 341.74 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.09 us (68.3%)
Info: cfl dt = 0.009354050526566368 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3133e+05 | 32768 | 1 | 7.597e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 443.2597033961887 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08418658368154494, dt = 0.009354050526566368
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.9%)
patch tree reduce : 1753.00 ns (0.5%)
gen split merge : 1222.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 310.83 us (93.9%)
LB move op cnt : 0
LB apply : 3.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1934.00 ns (65.0%)
Info: cfl dt = 0.009354047505936595 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0762e+05 | 32768 | 1 | 1.065e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.1308087857623 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0935406342081113, dt = 0.009354047505936595
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.6%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 342.73 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.31 us (65.8%)
Info: cfl dt = 0.0093540438900453 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0456e+05 | 32768 | 1 | 1.076e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 312.9898291311383 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10289468171404789, dt = 0.0093540438900453
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.6%)
patch tree reduce : 1613.00 ns (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 337.91 us (94.3%)
LB move op cnt : 0
LB apply : 4.16 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (66.9%)
Info: cfl dt = 0.009354042436406503 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0933e+05 | 32768 | 1 | 1.059e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 317.88752264158774 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11224872560409319, dt = 0.009354042436406503
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.8%)
patch tree reduce : 1783.00 ns (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 323.20 us (94.1%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.4%)
Info: cfl dt = 0.009354040823324547 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0404e+05 | 32768 | 1 | 1.078e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 312.4564534635319 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12160276804049969, dt = 0.009354040823324547
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.8%)
patch tree reduce : 1754.00 ns (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1133.00 ns (0.3%)
LB compute : 312.23 us (93.9%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (64.2%)
Info: cfl dt = 0.009354037151122919 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0795e+05 | 32768 | 1 | 1.064e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.47295877663515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13095680886382424, dt = 0.009354037151122919
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.3%)
patch tree reduce : 1853.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 : 389.43 us (95.2%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.3%)
Info: cfl dt = 0.009354035152573763 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0656e+05 | 32768 | 1 | 1.069e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.03658829036436 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14031084601494717, dt = 0.009354035152573763
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 27.06 us (6.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 : 1112.00 ns (0.3%)
LB compute : 365.44 us (90.0%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1983.00 ns (67.8%)
Info: cfl dt = 0.009354034842960357 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0678e+05 | 32768 | 1 | 1.068e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.2695779029679 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14966488116752094, dt = 0.009354034842960357
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (1.6%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 370.28 us (94.6%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (69.0%)
Info: cfl dt = 0.009354031134269556 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0992e+05 | 32768 | 1 | 1.057e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.49305438582974 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1590189160104813, dt = 0.009354031134269556
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.5%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1091.00 ns (0.3%)
LB compute : 367.68 us (95.0%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.4%)
Info: cfl dt = 0.009354028626215581 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1037e+05 | 32768 | 1 | 1.056e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.95900354011644 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16837294714475085, dt = 0.009354028626215581
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 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 : 1022.00 ns (0.3%)
LB compute : 339.56 us (94.7%)
LB move op cnt : 0
LB apply : 3.23 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (66.6%)
Info: cfl dt = 0.009354028348760464 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1192e+05 | 32768 | 1 | 1.051e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.5492507977709 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17772697577096644, dt = 0.009354028348760464
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.5%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 327.57 us (94.5%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (64.9%)
Info: cfl dt = 0.009354025334628197 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8581e+05 | 32768 | 1 | 1.146e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 293.71806961999795 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1870810041197269, dt = 0.009354025334628197
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.7%)
patch tree reduce : 1803.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 315.82 us (94.2%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1893.00 ns (64.9%)
Info: cfl dt = 0.009354022489516856 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0307e+05 | 32768 | 1 | 1.081e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.4529861080112 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1964350294543551, dt = 0.009354022489516856
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (1.7%)
patch tree reduce : 1753.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.3%)
LB compute : 349.66 us (94.4%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.9%)
Info: cfl dt = 0.00935402151680195 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0921e+05 | 32768 | 1 | 1.060e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 317.7663749401571 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20578905194387195, dt = 0.00935402151680195
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.7%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 339.21 us (94.5%)
LB move op cnt : 0
LB apply : 3.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1973.00 ns (65.9%)
Info: cfl dt = 0.009354019699335154 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0740e+05 | 32768 | 1 | 1.066e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.90253319382265 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2151430734606739, dt = 0.009354019699335154
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.4%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 387.52 us (95.2%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (69.1%)
Info: cfl dt = 0.009354016647241722 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8145e+05 | 32768 | 1 | 1.164e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 289.23853756813736 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22449709316000907, dt = 0.009354016647241722
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 1172.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 314.74 us (94.2%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (65.8%)
Info: cfl dt = 0.009354015099560641 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1316e+05 | 32768 | 1 | 1.046e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.81921004956536 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2338511098072508, dt = 0.009354015099560641
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.6%)
patch tree reduce : 1552.00 ns (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.4%)
LB compute : 354.27 us (94.6%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (66.6%)
Info: cfl dt = 0.009354014475617959 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0697e+05 | 32768 | 1 | 1.067e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.4640752535169 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24320512490681143, dt = 0.009354014475617959
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.8%)
patch tree reduce : 1553.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 321.09 us (94.2%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (70.7%)
Info: cfl dt = 0.009354011267904512 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0977e+05 | 32768 | 1 | 1.058e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.3362018142429 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2525591393824294, dt = 0.009354011267904512
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.7%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 348.62 us (94.3%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (65.8%)
Info: cfl dt = 0.009354009194280097 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1101e+05 | 32768 | 1 | 1.054e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 319.6103747133115 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26191315065033394, dt = 0.009354009194280097
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.6%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 334.95 us (94.8%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1854.00 ns (64.7%)
Info: cfl dt = 0.00935400914737758 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0573e+05 | 32768 | 1 | 1.072e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 314.1834900668842 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.271267159844614, dt = 0.00935400914737758
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.6%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 1212.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 362.28 us (94.6%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.0%)
Info: cfl dt = 0.009354006186411409 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1143e+05 | 32768 | 1 | 1.052e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.0487190361482 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28062116899199163, dt = 0.009354006186411409
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.7%)
patch tree reduce : 1894.00 ns (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1053.00 ns (0.3%)
LB compute : 329.49 us (94.4%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.0%)
Info: cfl dt = 0.009354003694237728 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1405e+05 | 32768 | 1 | 1.043e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 322.73334513384634 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28997517517840304, dt = 0.009354003694237728
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.6%)
patch tree reduce : 1393.00 ns (0.4%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 343.27 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.21 us (67.6%)
Info: cfl dt = 0.009354002913477454 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1036e+05 | 32768 | 1 | 1.056e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.9414193830505 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29932917887264077, dt = 0.009354002913477454
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.5%)
patch tree reduce : 1713.00 ns (0.5%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 356.01 us (94.6%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (67.5%)
Info: cfl dt = 0.009354001038625152 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0923e+05 | 32768 | 1 | 1.060e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 317.7876999494705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3086831817861182, dt = 0.009354001038625152
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (0.1%)
patch tree reduce : 1423.00 ns (0.0%)
gen split merge : 922.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1373.00 ns (0.0%)
LB compute : 4.70 ms (99.5%)
LB move op cnt : 0
LB apply : 4.37 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (74.0%)
Info: cfl dt = 0.009353998302565907 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9531e+05 | 32768 | 1 | 1.110e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 303.4805098441227 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31803718282474336, dt = 0.009353998302565907
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.7%)
patch tree reduce : 1553.00 ns (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 325.12 us (94.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (68.0%)
Info: cfl dt = 0.009353996954119235 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0952e+05 | 32768 | 1 | 1.059e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.0768483836178 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32739118112730925, dt = 0.009353996954119235
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.6%)
patch tree reduce : 1572.00 ns (0.4%)
gen split merge : 1212.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 354.62 us (94.6%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (68.3%)
Info: cfl dt = 0.009353996192093612 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0837e+05 | 32768 | 1 | 1.063e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.89809039561106 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3367451780814285, dt = 0.009353996192093612
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.5%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 331.34 us (94.5%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (57.5%)
Info: cfl dt = 0.009353993265190767 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0688e+05 | 32768 | 1 | 1.068e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.36854852393407 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3460991742735221, dt = 0.009353993265190767
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.8%)
patch tree reduce : 1572.00 ns (0.5%)
gen split merge : 1122.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1413.00 ns (0.4%)
LB compute : 320.26 us (93.7%)
LB move op cnt : 0
LB apply : 3.98 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (67.3%)
Info: cfl dt = 0.009353991405825731 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0554e+05 | 32768 | 1 | 1.072e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.99305771731815 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35545316753871287, dt = 0.009353991405825731
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.7%)
patch tree reduce : 1844.00 ns (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 355.23 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.42 us (70.9%)
Info: cfl dt = 0.00935399143176134 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9911e+05 | 32768 | 1 | 1.096e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 307.3815253274766 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3648071589445386, dt = 0.00935399143176134
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.8%)
patch tree reduce : 1632.00 ns (0.5%)
gen split merge : 1253.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 313.81 us (93.7%)
LB move op cnt : 0
LB apply : 4.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (68.2%)
Info: cfl dt = 0.009353988558522992 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0113e+05 | 32768 | 1 | 1.088e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 309.4567627994226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37416115037629993, dt = 0.009353988558522992
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.7%)
patch tree reduce : 1543.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1413.00 ns (0.4%)
LB compute : 322.61 us (94.1%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (67.1%)
Info: cfl dt = 0.009353986265519348 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0208e+05 | 32768 | 1 | 1.085e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 310.43502672311337 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3835151389348229, dt = 0.009353986265519348
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.8%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 312.51 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.50 us (64.9%)
Info: cfl dt = 0.009353985567328502 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0028e+05 | 32768 | 1 | 1.091e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.58160463778506 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3928691252003423, dt = 0.009353985567328502
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.8%)
patch tree reduce : 1513.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1312.00 ns (0.4%)
LB compute : 302.16 us (93.9%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.3%)
Info: cfl dt = 0.00935398370006811 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9098e+05 | 32768 | 1 | 1.126e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 299.02973377813186 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4022231107676708, dt = 0.00935398370006811
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.5%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 353.71 us (94.9%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (67.8%)
Info: cfl dt = 0.009353981156521213 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0417e+05 | 32768 | 1 | 1.077e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 312.58461422814037 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41157709446773894, dt = 0.009353981156521213
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (1.9%)
patch tree reduce : 1513.00 ns (0.5%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 310.00 us (93.6%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1853.00 ns (66.1%)
Info: cfl dt = 0.009353979913156963 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0530e+05 | 32768 | 1 | 1.073e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.74074149225726 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42093107562426013, dt = 0.009353979913156963
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (1.9%)
patch tree reduce : 1853.00 ns (0.5%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1183.00 ns (0.3%)
LB compute : 303.37 us (88.0%)
LB move op cnt : 0
LB apply : 23.95 us (6.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (67.9%)
Info: cfl dt = 0.009353979091786249 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0602e+05 | 32768 | 1 | 1.071e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 314.4892883591043 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4302850555374171, dt = 0.009353979091786249
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (2.0%)
patch tree reduce : 1543.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 296.32 us (93.6%)
LB move op cnt : 0
LB apply : 4.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1873.00 ns (65.6%)
Info: cfl dt = 0.009353976347375923 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1352e+05 | 32768 | 1 | 1.045e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 322.19260093014054 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43963903462920334, dt = 0.009353976347375923
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.6%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1213.00 ns (0.3%)
LB compute : 330.29 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.07 us (68.5%)
Info: cfl dt = 0.009353974616420164 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0951e+05 | 32768 | 1 | 1.059e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.0706518531671 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4489930109765793, dt = 0.009353974616420164
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.9%)
patch tree reduce : 1633.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1283.00 ns (0.4%)
LB compute : 307.51 us (93.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1943.00 ns (67.1%)
Info: cfl dt = 0.009353974668293507 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0765e+05 | 32768 | 1 | 1.065e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.1608355829965 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45834698559299947, dt = 0.009353974668293507
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.7%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 1253.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 329.21 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.13 us (69.6%)
Info: cfl dt = 0.009353971881599964 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0464e+05 | 32768 | 1 | 1.076e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.0655172219656 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.467700960261293, dt = 0.009353971881599964
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.7%)
patch tree reduce : 1412.00 ns (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 330.37 us (94.4%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.3%)
Info: cfl dt = 0.009353969722786027 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1012e+05 | 32768 | 1 | 1.057e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.69336212456847 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47705493214289296, dt = 0.009353969722786027
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.6%)
patch tree reduce : 1653.00 ns (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 337.94 us (94.3%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (67.6%)
Info: cfl dt = 0.009353969074925927 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0169e+05 | 32768 | 1 | 1.086e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 310.0388399796398 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.486408901865679, dt = 0.009353969074925927
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.9%)
patch tree reduce : 1734.00 ns (0.5%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.4%)
LB compute : 300.92 us (93.7%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (63.3%)
Info: cfl dt = 0.009353967229821054 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6044e+05 | 32768 | 1 | 9.091e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 370.4104316747476 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4957628709406049, dt = 0.009353967229821054
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.4%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 357.25 us (94.9%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (68.3%)
Info: cfl dt = 0.009353964823264997 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2283e+05 | 32768 | 1 | 7.750e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 434.52910715256604 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.505116838170426, dt = 0.009353964823264997
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.6%)
patch tree reduce : 1914.00 ns (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 331.97 us (94.1%)
LB move op cnt : 0
LB apply : 4.48 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (70.0%)
Info: cfl dt = 0.009353963655442676 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1481e+05 | 32768 | 1 | 1.041e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.51280991626624 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.514470802993691, dt = 0.009353963655442676
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.4%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 379.58 us (95.1%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (69.0%)
Info: cfl dt = 0.00935396279929126 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2033e+05 | 32768 | 1 | 1.023e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.1912034016794 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5238247666491337, dt = 0.00935396279929126
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.8%)
patch tree reduce : 1883.00 ns (0.6%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1021.00 ns (0.3%)
LB compute : 313.32 us (94.0%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (67.0%)
Info: cfl dt = 0.009353960190414906 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2072e+05 | 32768 | 1 | 1.022e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.5903459219643 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5331787294484249, dt = 0.009353960190414906
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 1543.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 316.40 us (93.9%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (66.1%)
Info: cfl dt = 0.009353958557985011 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0893e+05 | 32768 | 1 | 1.061e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 317.4768134328801 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5425326896388398, dt = 0.009353958557985011
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.8%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 318.91 us (93.8%)
LB move op cnt : 0
LB apply : 4.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.07 us (95.2%)
Info: cfl dt = 0.009353958637581792 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8699e+05 | 32768 | 1 | 8.467e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 397.69084056514197 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5518866481968249, dt = 0.009353958637581792
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.8%)
patch tree reduce : 1704.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 314.89 us (94.0%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1943.00 ns (64.4%)
Info: cfl dt = 0.009353955915084334 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3634e+05 | 32768 | 1 | 7.510e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 448.41076355837146 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5612406068344067, dt = 0.009353955915084334
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.4%)
patch tree reduce : 1724.00 ns (0.4%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 369.77 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.46 us (69.6%)
Info: cfl dt = 0.009353953863297041 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3611e+05 | 32768 | 1 | 9.749e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 345.4044023729525 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.570594562749491, dt = 0.009353953863297041
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.9%)
patch tree reduce : 1533.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 294.48 us (93.7%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (65.3%)
Info: cfl dt = 0.009353953266273795 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5367e+05 | 32768 | 1 | 9.265e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 363.4473921904635 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5799485166127881, dt = 0.009353953266273795
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.9%)
patch tree reduce : 1573.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1363.00 ns (0.4%)
LB compute : 289.75 us (93.5%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (69.0%)
Info: cfl dt = 0.009353951431714257 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1856e+05 | 32768 | 1 | 7.829e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 430.13931976153094 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5893024698790619, dt = 0.009353951431714257
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.9%)
patch tree reduce : 1533.00 ns (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.4%)
LB compute : 293.56 us (93.5%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (66.0%)
Info: cfl dt = 0.009353949136988296 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1859e+05 | 32768 | 1 | 7.828e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 430.1647199504006 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5986564213107761, dt = 0.009353949136988296
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.7%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 323.95 us (94.3%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.7%)
Info: cfl dt = 0.009353948041912408 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3095e+05 | 32768 | 1 | 7.604e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 442.86420922001815 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6080103704477644, dt = 0.009353948041912408
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.7%)
patch tree reduce : 1493.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 : 326.31 us (94.2%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (68.7%)
Info: cfl dt = 0.00935394714785815 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5986e+05 | 32768 | 1 | 9.106e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 369.81132779915 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6173643184896768, dt = 0.00935394714785815
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.8%)
patch tree reduce : 1272.00 ns (0.4%)
gen split merge : 1272.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 319.59 us (93.9%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (65.4%)
Info: cfl dt = 0.009353944651666045 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2110e+05 | 32768 | 1 | 7.782e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 432.7428149582782 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.626718265637535, dt = 0.009353944651666045
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.7%)
patch tree reduce : 1804.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 302.81 us (88.1%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.1%)
Info: cfl dt = 0.009353943111457316 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2333e+05 | 32768 | 1 | 7.740e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 435.03934833418754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.636072210289201, dt = 0.009353943111457316
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.8%)
patch tree reduce : 1614.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1313.00 ns (0.4%)
LB compute : 297.37 us (93.5%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (67.3%)
Info: cfl dt = 0.009353943184348103 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0433e+05 | 32768 | 1 | 1.077e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 312.742757693689 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6454261534006583, dt = 0.009353943184348103
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.7%)
patch tree reduce : 1512.00 ns (0.4%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 324.56 us (94.2%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (69.4%)
Info: cfl dt = 0.00935394052780625 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5753e+05 | 32768 | 1 | 9.165e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 367.41781096712305 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6547800965850065, dt = 0.00935394052780625
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.7%)
patch tree reduce : 1873.00 ns (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 330.42 us (94.2%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.9%)
Info: cfl dt = 0.009353938577386778 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3146e+05 | 32768 | 1 | 7.595e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 443.39280102161354 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6641340371128127, dt = 0.009353938577386778
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.8%)
patch tree reduce : 1473.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 276.67 us (93.4%)
LB move op cnt : 0
LB apply : 3.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (65.9%)
Info: cfl dt = 0.009353938049362583 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2971e+05 | 32768 | 1 | 7.626e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 441.59001089455546 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6734879756901995, dt = 0.009353938049362583
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (2.0%)
patch tree reduce : 1403.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.4%)
LB compute : 269.92 us (93.2%)
LB move op cnt : 0
LB apply : 3.71 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (67.2%)
Info: cfl dt = 0.00935393620403651 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3321e+05 | 32768 | 1 | 7.564e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 445.1885820332369 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.682841913739562, dt = 0.00935393620403651
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (2.1%)
patch tree reduce : 1753.00 ns (0.6%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.4%)
LB compute : 273.59 us (93.2%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.7%)
Info: cfl dt = 0.009353934010554277 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3803e+05 | 32768 | 1 | 7.481e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 450.14776819835106 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6921958499435985, dt = 0.009353934010554277
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (2.1%)
patch tree reduce : 1422.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.4%)
LB compute : 271.40 us (93.0%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (65.1%)
Info: cfl dt = 0.009353932997166787 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4760e+05 | 32768 | 1 | 7.321e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 459.97824638757015 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7015497839541528, dt = 0.009353932997166787
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.7%)
patch tree reduce : 1683.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 337.27 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.42 us (71.0%)
Info: cfl dt = 0.00935393205053462 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4894e+05 | 32768 | 1 | 7.299e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 461.3555295591663 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7109037169513196, dt = 0.00935393205053462
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (2.0%)
patch tree reduce : 1563.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1021.00 ns (0.3%)
LB compute : 295.11 us (93.7%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (65.4%)
Info: cfl dt = 0.009353929656133705 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2915e+05 | 32768 | 1 | 9.955e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.2518517196933 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7202576490018542, dt = 0.009353929656133705
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 34.35 us (9.8%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 304.18 us (86.3%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.3%)
Info: cfl dt = 0.009353928211996137 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2723e+05 | 32768 | 1 | 1.001e-01 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.27947678721875 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7296115786579879, dt = 0.009353928211996137
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.6%)
patch tree reduce : 1533.00 ns (0.5%)
gen split merge : 1072.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 320.00 us (94.2%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.4%)
Info: cfl dt = 0.009353928196625822 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2860e+05 | 32768 | 1 | 7.645e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 440.4529057341889 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.738965506869984, dt = 0.009353928196625822
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (1.9%)
patch tree reduce : 1833.00 ns (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 310.37 us (93.7%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (66.2%)
Info: cfl dt = 0.009353925638163101 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4005e+05 | 32768 | 1 | 7.446e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 452.2167843521585 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7483194350666098, dt = 0.009353925638163101
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.6%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1253.00 ns (0.3%)
LB compute : 343.49 us (94.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.4%)
Info: cfl dt = 0.009353923795675559 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3272e+05 | 32768 | 1 | 7.573e-02 | 0.0% | 0.9% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 444.6808722422791 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7576733607047729, dt = 0.009353923795675559
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.6%)
patch tree reduce : 1612.00 ns (0.4%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 21.34 us (5.9%)
LB compute : 319.22 us (88.7%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (67.2%)
Info: cfl dt = 0.009353923363650105 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1818e+05 | 32768 | 1 | 7.836e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 429.7434725941932 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7670272845004484, dt = 0.009353923363650105
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.3%)
patch tree reduce : 1713.00 ns (0.6%)
gen split merge : 1412.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1352.00 ns (0.5%)
LB compute : 274.75 us (92.6%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (60.6%)
Info: cfl dt = 0.0093539214847313 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1086e+05 | 32768 | 1 | 7.976e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 422.21741778652427 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7763812078640986, dt = 0.0093539214847313
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (2.1%)
patch tree reduce : 1863.00 ns (0.6%)
gen split merge : 1032.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1333.00 ns (0.5%)
LB compute : 272.92 us (93.0%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.6%)
Info: cfl dt = 0.009353919389081417 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3798e+05 | 32768 | 1 | 7.482e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 450.0867790728351 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7857351293488299, dt = 0.009353919389081417
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.8%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 304.08 us (93.7%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.7%)
Info: cfl dt = 0.00935391847085935 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2907e+05 | 32768 | 1 | 7.637e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 440.93755742331484 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7950890487379113, dt = 0.00935391847085935
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.9%)
patch tree reduce : 1513.00 ns (0.5%)
gen split merge : 1202.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 289.89 us (93.5%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (67.9%)
Info: cfl dt = 0.009353917453835169 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4130e+05 | 32768 | 1 | 7.425e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 453.5037382102217 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8044429672087706, dt = 0.009353917453835169
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (1.9%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 1132.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.4%)
LB compute : 309.05 us (93.7%)
LB move op cnt : 0
LB apply : 4.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (68.6%)
Info: cfl dt = 0.009353915156389817 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3682e+05 | 32768 | 1 | 7.502e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 448.89692966324367 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8137968846626058, dt = 0.009353915156389817
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (2.0%)
patch tree reduce : 1533.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 274.39 us (93.3%)
LB move op cnt : 0
LB apply : 3.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (65.5%)
Info: cfl dt = 0.009353913816049456 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4355e+05 | 32768 | 1 | 7.388e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 455.81478095413917 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8231507998189956, dt = 0.009353913816049456
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.6%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 1313.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 322.78 us (94.3%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1984.00 ns (67.4%)
Info: cfl dt = 0.009353913698987415 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3663e+05 | 32768 | 1 | 7.505e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 448.7009757318503 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8325047136350451, dt = 0.009353913698987415
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.5%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 365.19 us (94.8%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.2%)
Info: cfl dt = 0.009353911233459423 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3925e+05 | 32768 | 1 | 7.460e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 451.3980825666578 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8418586273340325, dt = 0.009353911233459423
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (1.7%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 350.18 us (94.1%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.1%)
Info: cfl dt = 0.009353909502726713 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3246e+05 | 32768 | 1 | 7.577e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 444.4198380450811 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8512125385674919, dt = 0.009353909502726713
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.9%)
patch tree reduce : 1843.00 ns (0.6%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 304.56 us (93.5%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (66.8%)
Info: cfl dt = 0.00935390918627528 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3628e+05 | 32768 | 1 | 7.511e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 448.34865766800954 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8605664480702186, dt = 0.00935390918627528
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (1.9%)
patch tree reduce : 1924.00 ns (0.6%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 304.79 us (93.6%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1883.00 ns (66.4%)
Info: cfl dt = 0.009353907250932145 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2479e+05 | 32768 | 1 | 7.714e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 436.5370286550924 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.869920357256494, dt = 0.009353907250932145
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.8%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 1033.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 317.68 us (94.2%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (67.8%)
Info: cfl dt = 0.009353905252065284 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3694e+05 | 32768 | 1 | 7.499e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 449.022619704826 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8792742645074261, dt = 0.009353905252065284
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.5%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 378.08 us (95.1%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (67.6%)
Info: cfl dt = 0.00935390444059645 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3044e+05 | 32768 | 1 | 7.613e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 442.34463299108086 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8886281697594913, dt = 0.00935390444059645
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (2.0%)
patch tree reduce : 1613.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.4%)
LB compute : 280.45 us (93.5%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (66.1%)
Info: cfl dt = 0.009353903334550108 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4057e+05 | 32768 | 1 | 7.438e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 452.75296560023287 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8979820742000878, dt = 0.009353903334550108
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.1%)
patch tree reduce : 1874.00 ns (0.6%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.4%)
LB compute : 289.96 us (93.4%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1783.00 ns (61.8%)
Info: cfl dt = 0.009353901131915424 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3660e+05 | 32768 | 1 | 7.505e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 448.6733365812875 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9073359775346379, dt = 0.009353901131915424
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.9%)
patch tree reduce : 1883.00 ns (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 307.36 us (93.9%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.0%)
Info: cfl dt = 0.009353899902706088 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2569e+05 | 32768 | 1 | 7.698e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 437.4641283832969 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9166898786665534, dt = 0.009353899902706088
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.7%)
patch tree reduce : 1663.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 314.35 us (94.2%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.4%)
Info: cfl dt = 0.009353899668966206 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4025e+05 | 32768 | 1 | 7.443e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 452.42451167045226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9260437785692595, dt = 0.009353899668966206
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (2.1%)
patch tree reduce : 1523.00 ns (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.4%)
LB compute : 274.10 us (93.1%)
LB move op cnt : 0
LB apply : 3.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1964.00 ns (64.1%)
Info: cfl dt = 0.009353897293927573 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4010e+05 | 32768 | 1 | 7.446e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 452.2721816931131 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9353976782382256, dt = 0.009353897293927573
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.9%)
patch tree reduce : 1553.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 295.06 us (93.7%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (67.8%)
Info: cfl dt = 0.009353895679256468 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2311e+05 | 32768 | 1 | 7.745e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 434.81175470104455 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9447515755321532, dt = 0.009353895679256468
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.7%)
patch tree reduce : 1733.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 334.13 us (94.2%)
LB move op cnt : 0
LB apply : 4.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (72.1%)
Info: cfl dt = 0.009353895494558838 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2858e+05 | 32768 | 1 | 7.646e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 440.425796315829 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9541054712114097, dt = 0.009353895494558838
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.8%)
patch tree reduce : 1482.00 ns (0.4%)
gen split merge : 1122.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 321.47 us (94.0%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1984.00 ns (67.1%)
Info: cfl dt = 0.009353893483200227 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2274e+05 | 32768 | 1 | 7.751e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 434.42760591599585 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9634593667059684, dt = 0.009353893483200227
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.9%)
patch tree reduce : 1673.00 ns (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 278.55 us (93.5%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1754.00 ns (64.8%)
Info: cfl dt = 0.009353891581012337 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2854e+05 | 32768 | 1 | 7.646e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 440.3919915698705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9728132601891687, dt = 0.009353891581012337
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (2.0%)
patch tree reduce : 1653.00 ns (0.5%)
gen split merge : 1442.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1503.00 ns (0.5%)
LB compute : 290.98 us (93.2%)
LB move op cnt : 0
LB apply : 3.87 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (69.4%)
Info: cfl dt = 0.009353890885690986 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2587e+05 | 32768 | 1 | 7.694e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 437.645271202804 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.982167151770181, dt = 0.009353890885690986
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (2.0%)
patch tree reduce : 1663.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.4%)
LB compute : 295.77 us (93.7%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (68.2%)
Info: cfl dt = 0.009353889674092578 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3042e+05 | 32768 | 1 | 7.613e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 442.3196199063692 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9915210426558719, dt = 0.008478957344128069
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (1.9%)
patch tree reduce : 1553.00 ns (0.5%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 305.94 us (93.7%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (67.6%)
Info: cfl dt = 0.009353887732682704 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2443e+05 | 32768 | 1 | 7.720e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 395.3712564782716 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 63.449800368000005 (s) [Godunov][rank=0]
Info: pushing data in scheduler, N = 4096 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 955.72 us [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: Compute load ... [DataInserterUtility][rank=0]
Info: run scheduler step ... [DataInserterUtility][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (61.3%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1753.00 ns (0.6%)
patch tree reduce : 1112.00 ns (0.4%)
gen split merge : 752.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 282.76 us (96.1%)
LB move op cnt : 0
LB apply : 3.44 us (1.2%)
Info: patch count stable after 1 runs npatch = 1 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.70 us (3.5%)
patch tree reduce : 2.15 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 309.94 us (92.3%)
LB move op cnt : 0
LB apply : 3.87 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (67.2%)
Info: cfl dt = 0.009354083528780794 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8178e+05 | 32768 | 1 | 1.163e-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.009354083528780794
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (2.0%)
patch tree reduce : 1974.00 ns (0.6%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 293.07 us (93.7%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.7%)
Info: cfl dt = 0.009354072778192094 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9149e+05 | 32768 | 1 | 1.124e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 299.5585744216625 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009354083528780794, dt = 0.009354072778192094
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.8%)
patch tree reduce : 1492.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1133.00 ns (0.4%)
LB compute : 303.46 us (94.1%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (68.4%)
Info: cfl dt = 0.009354069799318255 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0845e+05 | 32768 | 1 | 1.062e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.9865203505415 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018708156306972888, dt = 0.009354069799318255
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.8%)
patch tree reduce : 1572.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.3%)
LB compute : 299.90 us (94.0%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.0%)
Info: cfl dt = 0.009354068824705755 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5827e+05 | 32768 | 1 | 9.146e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 368.18300899595715 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028062226106291145, dt = 0.009354068824705755
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.7%)
patch tree reduce : 1824.00 ns (0.5%)
gen split merge : 1312.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.3%)
LB compute : 313.29 us (93.9%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (70.4%)
Info: cfl dt = 0.009354063115090478 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0354e+05 | 32768 | 1 | 8.120e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 414.7080748988316 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0374162949309969, dt = 0.009354063115090478
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.77 us (2.3%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.4%)
LB compute : 311.10 us (93.2%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (68.6%)
Info: cfl dt = 0.009354059722878038 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0994e+05 | 32768 | 1 | 7.993e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 421.2814294979095 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04677035804608738, dt = 0.009354059722878038
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.9%)
patch tree reduce : 1803.00 ns (0.6%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.4%)
LB compute : 289.25 us (93.2%)
LB move op cnt : 0
LB apply : 4.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (67.5%)
Info: cfl dt = 0.009354059540598522 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1984e+05 | 32768 | 1 | 7.805e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 431.45323788903244 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05612441776896542, dt = 0.009354059540598522
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.6%)
patch tree reduce : 1703.00 ns (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 321.39 us (94.2%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.8%)
Info: cfl dt = 0.009354054967483448 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2178e+05 | 32768 | 1 | 7.769e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 433.44899029755226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06547847730956394, dt = 0.009354054967483448
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.8%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 301.54 us (93.7%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (69.8%)
Info: cfl dt = 0.009354051404497547 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2250e+05 | 32768 | 1 | 7.756e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 434.1933573972 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07483253227704739, dt = 0.009354051404497547
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (2.1%)
patch tree reduce : 1863.00 ns (0.6%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 280.63 us (93.2%)
LB move op cnt : 0
LB apply : 4.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (67.7%)
Info: cfl dt = 0.009354050526566368 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2215e+05 | 32768 | 1 | 7.762e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 433.82892459835637 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08418658368154494, dt = 0.009354050526566368
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.7%)
patch tree reduce : 1773.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 332.85 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.58 us (68.2%)
Info: cfl dt = 0.009354047505936595 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0446e+05 | 32768 | 1 | 8.102e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 415.64496835540376 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0935406342081113, dt = 0.009354047505936595
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.5%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1292.00 ns (0.3%)
LB compute : 356.55 us (94.9%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (69.2%)
Info: cfl dt = 0.0093540438900453 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9960e+05 | 32768 | 1 | 8.200e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 410.660467165881 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10289468171404789, dt = 0.0093540438900453
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.9%)
patch tree reduce : 1503.00 ns (0.5%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 300.52 us (93.6%)
LB move op cnt : 0
LB apply : 3.98 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (67.8%)
Info: cfl dt = 0.009354042436406503 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8955e+05 | 32768 | 1 | 8.412e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 400.324610209933 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11224872560409319, dt = 0.009354042436406503
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.9%)
patch tree reduce : 1803.00 ns (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1393.00 ns (0.5%)
LB compute : 283.67 us (93.5%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (67.2%)
Info: cfl dt = 0.009354040823324547 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9409e+05 | 32768 | 1 | 8.315e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 404.9938427016868 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12160276804049969, dt = 0.009354040823324547
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (2.1%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 280.82 us (93.2%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.0%)
Info: cfl dt = 0.009354037151122919 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9439e+05 | 32768 | 1 | 8.309e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 405.30177435702797 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13095680886382424, dt = 0.009354037151122919
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.8%)
patch tree reduce : 1754.00 ns (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 289.09 us (93.7%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (66.8%)
Info: cfl dt = 0.009354035152573763 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0487e+05 | 32768 | 1 | 8.093e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 416.07532897672246 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14031084601494717, dt = 0.009354035152573763
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.4%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 366.39 us (95.0%)
LB move op cnt : 0
LB apply : 4.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (70.1%)
Info: cfl dt = 0.009354034842960357 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9298e+05 | 32768 | 1 | 8.338e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 403.8499118553309 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14966488116752094, dt = 0.009354034842960357
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.9%)
patch tree reduce : 1693.00 ns (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1292.00 ns (0.4%)
LB compute : 298.08 us (93.4%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1964.00 ns (66.0%)
Info: cfl dt = 0.009354031134269556 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8940e+05 | 32768 | 1 | 8.415e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 400.17161495684064 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1590189160104813, dt = 0.009354031134269556
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.7%)
patch tree reduce : 1884.00 ns (0.5%)
gen split merge : 1222.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 330.10 us (94.0%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (68.6%)
Info: cfl dt = 0.009354028626215581 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0148e+05 | 32768 | 1 | 8.162e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 412.5840773487251 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16837294714475085, dt = 0.009354028626215581
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.7%)
patch tree reduce : 1834.00 ns (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1332.00 ns (0.4%)
LB compute : 324.74 us (94.1%)
LB move op cnt : 0
LB apply : 3.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (67.8%)
Info: cfl dt = 0.009354028348760464 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0098e+05 | 32768 | 1 | 8.172e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 412.0733491642331 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17772697577096644, dt = 0.009354028348760464
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.7%)
patch tree reduce : 1723.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 324.53 us (94.2%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (68.1%)
Info: cfl dt = 0.009354025334628197 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0147e+05 | 32768 | 1 | 8.162e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 412.5729146028292 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1870810041197269, dt = 0.009354025334628197
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.8%)
patch tree reduce : 1683.00 ns (0.5%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.3%)
LB compute : 280.94 us (87.6%)
LB move op cnt : 0
LB apply : 24.09 us (7.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (65.8%)
Info: cfl dt = 0.009354022489516856 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0282e+05 | 32768 | 1 | 8.135e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 413.95959477766877 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1964350294543551, dt = 0.009354022489516856
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.8%)
patch tree reduce : 1733.00 ns (0.6%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1352.00 ns (0.4%)
LB compute : 282.56 us (93.5%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (67.8%)
Info: cfl dt = 0.00935402151680195 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9730e+05 | 32768 | 1 | 8.248e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 408.2947538324274 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20578905194387195, dt = 0.00935402151680195
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (2.0%)
patch tree reduce : 1853.00 ns (0.6%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1223.00 ns (0.4%)
LB compute : 287.83 us (93.6%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (66.2%)
Info: cfl dt = 0.009354019699335154 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0047e+05 | 32768 | 1 | 8.182e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 411.55288690023656 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2151430734606739, dt = 0.009354019699335154
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (2.0%)
patch tree reduce : 1854.00 ns (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 290.11 us (93.5%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (64.2%)
Info: cfl dt = 0.009354016647241722 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8976e+05 | 32768 | 1 | 8.407e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 400.5409679810852 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22449709316000907, dt = 0.009354016647241722
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.8%)
patch tree reduce : 1774.00 ns (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.4%)
LB compute : 304.84 us (94.1%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (64.7%)
Info: cfl dt = 0.009354015099560641 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8048e+05 | 32768 | 1 | 8.612e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 391.006911952751 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2338511098072508, dt = 0.009354015099560641
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.42 us (2.1%)
patch tree reduce : 1833.00 ns (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1583.00 ns (0.4%)
LB compute : 329.98 us (93.4%)
LB move op cnt : 0
LB apply : 4.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.8%)
Info: cfl dt = 0.009354014475617959 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8195e+05 | 32768 | 1 | 1.162e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 289.74993498627424 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24320512490681143, dt = 0.009354014475617959
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.8%)
patch tree reduce : 1853.00 ns (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 298.48 us (93.8%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (68.2%)
Info: cfl dt = 0.009354011267904512 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.5858e+05 | 32768 | 1 | 1.267e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 265.73543442290986 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2525591393824294, dt = 0.009354011267904512
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.8%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 313.84 us (94.2%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 21.31 us (93.7%)
Info: cfl dt = 0.009354009194280097 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9081e+05 | 32768 | 1 | 1.127e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 298.8504760818757 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26191315065033394, dt = 0.009354009194280097
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.9%)
patch tree reduce : 1373.00 ns (0.4%)
gen split merge : 1232.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 293.71 us (93.7%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (67.2%)
Info: cfl dt = 0.00935400914737758 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8086e+05 | 32768 | 1 | 1.167e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 288.6291304833856 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.271267159844614, dt = 0.00935400914737758
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.9%)
patch tree reduce : 1814.00 ns (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.4%)
LB compute : 291.31 us (93.6%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (67.7%)
Info: cfl dt = 0.009354006186411409 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9296e+05 | 32768 | 1 | 1.119e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 301.0676259570751 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28062116899199163, dt = 0.009354006186411409
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.6%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 327.29 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.22 us (69.2%)
Info: cfl dt = 0.009354003694237728 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8743e+05 | 32768 | 1 | 1.140e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 295.37591333646634 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28997517517840304, dt = 0.009354003694237728
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.6%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 322.53 us (89.3%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (69.6%)
Info: cfl dt = 0.009354002913477454 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9143e+05 | 32768 | 1 | 1.124e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 299.49631001893505 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29932917887264077, dt = 0.009354002913477454
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.7%)
patch tree reduce : 1583.00 ns (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 323.55 us (94.3%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (68.9%)
Info: cfl dt = 0.009354001038625152 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8250e+05 | 32768 | 1 | 1.160e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 290.31269943791744 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3086831817861182, dt = 0.009354001038625152
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.6%)
patch tree reduce : 1824.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 308.71 us (88.4%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.2%)
Info: cfl dt = 0.009353998302565907 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.7462e+05 | 32768 | 1 | 1.193e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 282.2123390250798 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31803718282474336, dt = 0.009353998302565907
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.8%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 296.80 us (93.8%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (67.0%)
Info: cfl dt = 0.009353996954119235 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8311e+05 | 32768 | 1 | 1.157e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 290.9400584544501 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32739118112730925, dt = 0.009353996954119235
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.9%)
patch tree reduce : 1874.00 ns (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1233.00 ns (0.4%)
LB compute : 294.47 us (93.6%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (67.2%)
Info: cfl dt = 0.009353996192093612 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.7985e+05 | 32768 | 1 | 1.171e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 287.5892383805263 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3367451780814285, dt = 0.009353996192093612
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (1.9%)
patch tree reduce : 1853.00 ns (0.6%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 307.48 us (93.6%)
LB move op cnt : 0
LB apply : 3.98 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.9%)
Info: cfl dt = 0.009353993265190767 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8101e+05 | 32768 | 1 | 1.166e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 288.786523169497 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3460991742735221, dt = 0.009353993265190767
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.7%)
patch tree reduce : 1692.00 ns (0.5%)
gen split merge : 1222.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 329.64 us (94.3%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (69.0%)
Info: cfl dt = 0.009353991405825731 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.7983e+05 | 32768 | 1 | 1.171e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 287.56771922348395 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35545316753871287, dt = 0.009353991405825731
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (1.9%)
patch tree reduce : 1984.00 ns (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 326.43 us (94.0%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (62.4%)
Info: cfl dt = 0.00935399143176134 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8163e+05 | 32768 | 1 | 1.164e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 289.42298607825404 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3648071589445386, dt = 0.00935399143176134
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.0%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 300.71 us (93.5%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (67.3%)
Info: cfl dt = 0.009353988558522992 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.7704e+05 | 32768 | 1 | 1.183e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 284.70024720595245 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37416115037629993, dt = 0.009353988558522992
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (1.9%)
patch tree reduce : 1714.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 339.66 us (94.1%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (68.0%)
Info: cfl dt = 0.009353986265519348 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8145e+05 | 32768 | 1 | 1.164e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 289.2340668155421 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3835151389348229, dt = 0.009353986265519348
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.8%)
patch tree reduce : 1754.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 331.07 us (94.3%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.7%)
Info: cfl dt = 0.009353985567328502 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8452e+05 | 32768 | 1 | 1.152e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 292.38965050283787 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3928691252003423, dt = 0.009353985567328502
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.6%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 342.09 us (94.3%)
LB move op cnt : 0
LB apply : 4.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.6%)
Info: cfl dt = 0.00935398370006811 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9331e+05 | 32768 | 1 | 1.117e-01 | 0.0% | 0.9% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 301.4260124664569 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4022231107676708, dt = 0.00935398370006811
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.6%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 330.81 us (94.3%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.4%)
Info: cfl dt = 0.009353981156521213 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8156e+05 | 32768 | 1 | 1.164e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 289.3498419482696 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41157709446773894, dt = 0.009353981156521213
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.00 us (2.3%)
patch tree reduce : 2.35 us (0.6%)
gen split merge : 1262.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1473.00 ns (0.4%)
LB compute : 359.12 us (93.2%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (69.1%)
Info: cfl dt = 0.009353979913156963 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8471e+05 | 32768 | 1 | 1.151e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 292.582870308838 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42093107562426013, dt = 0.009353979913156963
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.7%)
patch tree reduce : 1704.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 316.22 us (94.1%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (67.5%)
Info: cfl dt = 0.009353979091786249 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9021e+05 | 32768 | 1 | 1.129e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 298.2337776991541 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4302850555374171, dt = 0.009353979091786249
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.7%)
patch tree reduce : 1814.00 ns (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 307.35 us (94.0%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (71.5%)
Info: cfl dt = 0.009353976347375923 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9114e+05 | 32768 | 1 | 1.126e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 299.18989240871736 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43963903462920334, dt = 0.009353976347375923
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (0.9%)
patch tree reduce : 1893.00 ns (0.3%)
gen split merge : 1263.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 310.32 us (46.4%)
LB move op cnt : 0
LB apply : 3.73 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (71.3%)
Info: cfl dt = 0.009353974616420164 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8934e+05 | 32768 | 1 | 1.132e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 297.3455001130185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4489930109765793, dt = 0.009353974616420164
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.7%)
patch tree reduce : 1683.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1573.00 ns (0.5%)
LB compute : 319.30 us (94.2%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (67.4%)
Info: cfl dt = 0.009353974668293507 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9015e+05 | 32768 | 1 | 1.129e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 298.1741100107041 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45834698559299947, dt = 0.009353974668293507
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.7%)
patch tree reduce : 1803.00 ns (0.5%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 326.27 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.09 us (66.1%)
Info: cfl dt = 0.009353971881599964 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9038e+05 | 32768 | 1 | 1.128e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 298.4073573270884 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.467700960261293, dt = 0.009353971881599964
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 333.54 us (94.5%)
LB move op cnt : 0
LB apply : 3.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1964.00 ns (67.6%)
Info: cfl dt = 0.009353969722786027 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8810e+05 | 32768 | 1 | 1.137e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 296.0672940354968 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47705493214289296, dt = 0.009353969722786027
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.7%)
patch tree reduce : 1623.00 ns (0.5%)
gen split merge : 1162.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1253.00 ns (0.4%)
LB compute : 328.71 us (94.2%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.9%)
Info: cfl dt = 0.009353969074925927 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8875e+05 | 32768 | 1 | 1.135e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 296.7388694345867 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.486408901865679, dt = 0.009353969074925927
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.5%)
patch tree reduce : 1764.00 ns (0.5%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 344.31 us (94.4%)
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.2%)
Info: cfl dt = 0.009353967229821054 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9503e+05 | 32768 | 1 | 1.111e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 303.1944892306404 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4957628709406049, dt = 0.009353967229821054
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (2.0%)
patch tree reduce : 1713.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.4%)
LB compute : 294.73 us (93.4%)
LB move op cnt : 0
LB apply : 3.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1873.00 ns (66.8%)
Info: cfl dt = 0.009353964823264997 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9533e+05 | 32768 | 1 | 1.110e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 303.50149435745834 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.505116838170426, dt = 0.009353964823264997
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.9%)
patch tree reduce : 1533.00 ns (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 : 300.43 us (93.8%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.7%)
Info: cfl dt = 0.009353963655442676 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9380e+05 | 32768 | 1 | 1.115e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 301.93034320491563 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.514470802993691, dt = 0.009353963655442676
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.8%)
patch tree reduce : 1773.00 ns (0.5%)
gen split merge : 1182.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 304.64 us (93.9%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.8%)
Info: cfl dt = 0.00935396279929126 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8918e+05 | 32768 | 1 | 1.133e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 297.17876283665714 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5238247666491337, dt = 0.00935396279929126
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.6%)
patch tree reduce : 1843.00 ns (0.5%)
gen split merge : 1222.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1033.00 ns (0.3%)
LB compute : 358.20 us (94.6%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (70.2%)
Info: cfl dt = 0.009353960190414906 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8742e+05 | 32768 | 1 | 1.140e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 295.3700222571187 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5331787294484249, dt = 0.009353960190414906
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.8%)
patch tree reduce : 1714.00 ns (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1051.00 ns (0.3%)
LB compute : 309.13 us (93.9%)
LB move op cnt : 0
LB apply : 3.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1864.00 ns (65.1%)
Info: cfl dt = 0.009353958557985011 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8490e+05 | 32768 | 1 | 1.150e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 292.7752386259431 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5425326896388398, dt = 0.009353958557985011
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.9%)
patch tree reduce : 1713.00 ns (0.5%)
gen split merge : 1152.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.3%)
LB compute : 294.15 us (93.7%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (69.3%)
Info: cfl dt = 0.009353958637581792 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9167e+05 | 32768 | 1 | 1.123e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 299.7401687487556 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5518866481968249, dt = 0.009353958637581792
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.9%)
patch tree reduce : 1864.00 ns (0.6%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.4%)
LB compute : 296.30 us (93.6%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (66.1%)
Info: cfl dt = 0.009353955915084334 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8655e+05 | 32768 | 1 | 1.144e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 294.47176619999715 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5612406068344067, dt = 0.009353955915084334
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (1.9%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 1252.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1253.00 ns (0.4%)
LB compute : 325.56 us (93.9%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.8%)
Info: cfl dt = 0.009353953863297041 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9231e+05 | 32768 | 1 | 1.121e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 300.39253687256377 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.570594562749491, dt = 0.009353953863297041
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (1.8%)
patch tree reduce : 1623.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 335.50 us (94.0%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.8%)
Info: cfl dt = 0.009353953266273795 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8677e+05 | 32768 | 1 | 1.143e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 294.7048108451295 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5799485166127881, dt = 0.009353953266273795
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.5%)
patch tree reduce : 1753.00 ns (0.5%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 357.65 us (94.7%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (71.8%)
Info: cfl dt = 0.009353951431714257 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9134e+05 | 32768 | 1 | 1.125e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 299.39835214131926 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5893024698790619, dt = 0.009353951431714257
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.9%)
patch tree reduce : 1753.00 ns (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 293.69 us (93.6%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (71.5%)
Info: cfl dt = 0.009353949136988296 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8591e+05 | 32768 | 1 | 1.146e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 293.8133657712904 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5986564213107761, dt = 0.009353949136988296
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.9%)
patch tree reduce : 1673.00 ns (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 310.01 us (93.7%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1944.00 ns (66.7%)
Info: cfl dt = 0.009353948041912408 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9151e+05 | 32768 | 1 | 1.124e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 299.5691059073418 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6080103704477644, dt = 0.009353948041912408
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.0%)
patch tree reduce : 1763.00 ns (0.5%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 308.25 us (93.4%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1973.00 ns (68.4%)
Info: cfl dt = 0.00935394714785815 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9128e+05 | 32768 | 1 | 1.125e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 299.3375498606203 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6173643184896768, dt = 0.00935394714785815
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.6%)
patch tree reduce : 1894.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 347.73 us (94.6%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (69.2%)
Info: cfl dt = 0.009353944651666045 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9268e+05 | 32768 | 1 | 1.120e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 300.7767880821655 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.626718265637535, dt = 0.009353944651666045
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.8%)
patch tree reduce : 1563.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 : 334.12 us (94.2%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (67.5%)
Info: cfl dt = 0.009353943111457316 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8910e+05 | 32768 | 1 | 1.133e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 297.0906625501151 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.636072210289201, dt = 0.009353943111457316
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 1943.00 ns (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 321.01 us (94.2%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.3%)
Info: cfl dt = 0.009353943184348103 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8629e+05 | 32768 | 1 | 1.145e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 294.21132483757407 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6454261534006583, dt = 0.009353943184348103
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.9%)
patch tree reduce : 1733.00 ns (0.5%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 297.52 us (93.8%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.6%)
Info: cfl dt = 0.00935394052780625 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9103e+05 | 32768 | 1 | 1.126e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 299.0811081928392 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6547800965850065, dt = 0.00935394052780625
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.7%)
patch tree reduce : 1733.00 ns (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 317.28 us (94.2%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.3%)
Info: cfl dt = 0.009353938577386778 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9181e+05 | 32768 | 1 | 1.123e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 299.8770176187016 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6641340371128127, dt = 0.009353938577386778
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (0.9%)
patch tree reduce : 1713.00 ns (0.3%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.1%)
LB compute : 623.91 us (96.8%)
LB move op cnt : 0
LB apply : 3.92 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (70.3%)
Info: cfl dt = 0.009353938049362583 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9306e+05 | 32768 | 1 | 1.118e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 301.1658876699992 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6734879756901995, dt = 0.009353938049362583
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (1.8%)
patch tree reduce : 1583.00 ns (0.5%)
gen split merge : 1103.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.4%)
LB compute : 327.13 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.36 us (66.9%)
Info: cfl dt = 0.00935393620403651 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8930e+05 | 32768 | 1 | 1.133e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 297.3051485964386 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.682841913739562, dt = 0.00935393620403651
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.7%)
patch tree reduce : 1683.00 ns (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.4%)
LB compute : 328.87 us (94.1%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (68.4%)
Info: cfl dt = 0.009353934010554277 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9687e+05 | 32768 | 1 | 1.104e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 305.0779911761519 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6921958499435985, dt = 0.009353934010554277
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.7%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 305.92 us (94.1%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1883.00 ns (65.7%)
Info: cfl dt = 0.009353932997166787 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8964e+05 | 32768 | 1 | 1.131e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 297.65260708753453 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7015497839541528, dt = 0.009353932997166787
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.6%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 1021.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 340.40 us (94.3%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (67.9%)
Info: cfl dt = 0.00935393205053462 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8525e+05 | 32768 | 1 | 1.149e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 293.13947686907164 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7109037169513196, dt = 0.00935393205053462
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.44 us (2.2%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 1162.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 311.44 us (92.9%)
LB move op cnt : 0
LB apply : 4.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1924.00 ns (65.6%)
Info: cfl dt = 0.009353929656133705 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9199e+05 | 32768 | 1 | 1.122e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 300.06267552647336 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7202576490018542, dt = 0.009353929656133705
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.9%)
patch tree reduce : 1813.00 ns (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 293.78 us (93.5%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (65.6%)
Info: cfl dt = 0.009353928211996137 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8871e+05 | 32768 | 1 | 1.135e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 296.69689059226346 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7296115786579879, dt = 0.009353928211996137
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.7%)
patch tree reduce : 1673.00 ns (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 299.76 us (94.2%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (69.5%)
Info: cfl dt = 0.009353928196625822 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8767e+05 | 32768 | 1 | 1.139e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 295.62250405558405 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.738965506869984, dt = 0.009353928196625822
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.8%)
patch tree reduce : 1704.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1433.00 ns (0.4%)
LB compute : 303.87 us (93.9%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (69.3%)
Info: cfl dt = 0.009353925638163101 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9269e+05 | 32768 | 1 | 1.120e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 300.78863930757694 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7483194350666098, dt = 0.009353925638163101
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.8%)
patch tree reduce : 1854.00 ns (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 320.48 us (94.0%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (66.2%)
Info: cfl dt = 0.009353923795675559 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9022e+05 | 32768 | 1 | 1.129e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 298.2494621308738 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7576733607047729, dt = 0.009353923795675559
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.8%)
patch tree reduce : 1844.00 ns (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 303.80 us (93.8%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.7%)
Info: cfl dt = 0.009353923363650105 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9105e+05 | 32768 | 1 | 1.126e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 299.0996495023511 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7670272845004484, dt = 0.009353923363650105
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.6%)
patch tree reduce : 1713.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 346.67 us (94.5%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (67.6%)
Info: cfl dt = 0.0093539214847313 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8464e+05 | 32768 | 1 | 1.151e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 292.5075299228686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7763812078640986, dt = 0.0093539214847313
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (2.0%)
patch tree reduce : 1973.00 ns (0.6%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1051.00 ns (0.3%)
LB compute : 295.43 us (93.5%)
LB move op cnt : 0
LB apply : 3.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (66.3%)
Info: cfl dt = 0.009353919389081417 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.7925e+05 | 32768 | 1 | 1.173e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 286.97663789600546 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7857351293488299, dt = 0.009353919389081417
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.1%)
patch tree reduce : 1914.00 ns (0.6%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.4%)
LB compute : 292.23 us (93.3%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1924.00 ns (64.9%)
Info: cfl dt = 0.00935391847085935 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9692e+05 | 32768 | 1 | 1.104e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 305.13009329338126 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7950890487379113, dt = 0.00935391847085935
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.8%)
patch tree reduce : 1904.00 ns (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 328.93 us (93.9%)
LB move op cnt : 0
LB apply : 4.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (69.1%)
Info: cfl dt = 0.009353917453835169 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9383e+05 | 32768 | 1 | 1.115e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 301.951358699645 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8044429672087706, dt = 0.009353917453835169
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.9%)
patch tree reduce : 1843.00 ns (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 289.14 us (93.4%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (65.8%)
Info: cfl dt = 0.009353915156389817 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.7651e+05 | 32768 | 1 | 1.185e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 284.15905954192226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8137968846626058, dt = 0.009353915156389817
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.8%)
patch tree reduce : 1593.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 290.40 us (94.0%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.9%)
Info: cfl dt = 0.009353913816049456 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8102e+05 | 32768 | 1 | 1.166e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 288.7890241046081 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8231507998189956, dt = 0.009353913816049456
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.8%)
patch tree reduce : 1913.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 331.58 us (94.0%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (68.3%)
Info: cfl dt = 0.009353913698987415 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.7716e+05 | 32768 | 1 | 1.182e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 284.8204336690217 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8325047136350451, dt = 0.009353913698987415
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.6%)
patch tree reduce : 1733.00 ns (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 330.20 us (94.4%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (68.0%)
Info: cfl dt = 0.009353911233459423 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8108e+05 | 32768 | 1 | 1.166e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 288.85139437510963 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8418586273340325, dt = 0.009353911233459423
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.4%)
patch tree reduce : 1833.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.2%)
LB compute : 394.26 us (95.0%)
LB move op cnt : 0
LB apply : 4.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (68.6%)
Info: cfl dt = 0.009353909502726713 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9639e+05 | 32768 | 1 | 1.106e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 304.5831747553949 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8512125385674919, dt = 0.009353909502726713
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.9%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 292.85 us (93.8%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (67.5%)
Info: cfl dt = 0.00935390918627528 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9113e+05 | 32768 | 1 | 1.126e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 299.18444218933234 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8605664480702186, dt = 0.00935390918627528
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.7%)
patch tree reduce : 1754.00 ns (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 304.27 us (94.1%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1844.00 ns (64.6%)
Info: cfl dt = 0.009353907250932145 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9505e+05 | 32768 | 1 | 1.111e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 303.2056737982875 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.869920357256494, dt = 0.009353907250932145
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.7%)
patch tree reduce : 1773.00 ns (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 312.42 us (94.2%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (66.1%)
Info: cfl dt = 0.009353905252065284 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8475e+05 | 32768 | 1 | 1.151e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 292.62100927611925 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8792742645074261, dt = 0.009353905252065284
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.9%)
patch tree reduce : 1934.00 ns (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 301.62 us (93.9%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.1%)
Info: cfl dt = 0.00935390444059645 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9207e+05 | 32768 | 1 | 1.122e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 300.149996364095 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8886281697594913, dt = 0.00935390444059645
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.8%)
patch tree reduce : 1693.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1263.00 ns (0.4%)
LB compute : 304.35 us (94.0%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (66.4%)
Info: cfl dt = 0.009353903334550108 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9337e+05 | 32768 | 1 | 1.117e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 301.47675994104816 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8979820742000878, dt = 0.009353903334550108
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.9%)
patch tree reduce : 1753.00 ns (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 312.05 us (93.9%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.4%)
Info: cfl dt = 0.009353901131915424 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8718e+05 | 32768 | 1 | 1.141e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 295.11795435897886 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9073359775346379, dt = 0.009353901131915424
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.6%)
patch tree reduce : 1913.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1453.00 ns (0.4%)
LB compute : 351.84 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.77 us (69.3%)
Info: cfl dt = 0.009353899902706088 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.7867e+05 | 32768 | 1 | 1.176e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 286.373523613458 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9166898786665534, dt = 0.009353899902706088
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.5%)
patch tree reduce : 1814.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 : 340.64 us (94.4%)
LB move op cnt : 0
LB apply : 4.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (69.9%)
Info: cfl dt = 0.009353899668966206 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8593e+05 | 32768 | 1 | 1.146e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 293.8401311022642 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9260437785692595, dt = 0.009353899668966206
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.6%)
patch tree reduce : 1483.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 : 342.04 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.14 us (68.2%)
Info: cfl dt = 0.009353897293927573 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8797e+05 | 32768 | 1 | 1.138e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 295.9323498432941 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9353976782382256, dt = 0.009353897293927573
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.6%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 331.64 us (94.1%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.5%)
Info: cfl dt = 0.009353895679256468 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9569e+05 | 32768 | 1 | 1.108e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 303.86774416148586 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9447515755321532, dt = 0.009353895679256468
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (1.7%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 352.82 us (94.3%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (70.5%)
Info: cfl dt = 0.009353895494558838 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9146e+05 | 32768 | 1 | 1.124e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 299.5160325132474 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9541054712114097, dt = 0.009353895494558838
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.8%)
patch tree reduce : 1873.00 ns (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1103.00 ns (0.4%)
LB compute : 294.92 us (93.7%)
LB move op cnt : 0
LB apply : 4.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (66.8%)
Info: cfl dt = 0.009353893483200227 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9798e+05 | 32768 | 1 | 1.100e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 306.2215406833073 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9634593667059684, dt = 0.009353893483200227
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.8%)
patch tree reduce : 1653.00 ns (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 323.63 us (94.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (68.8%)
Info: cfl dt = 0.009353891581012337 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9303e+05 | 32768 | 1 | 1.118e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 301.1318967748267 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9728132601891687, dt = 0.009353891581012337
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.6%)
patch tree reduce : 1893.00 ns (0.5%)
gen split merge : 1303.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 359.36 us (94.5%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.1%)
Info: cfl dt = 0.009353890885690986 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8917e+05 | 32768 | 1 | 1.133e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 297.168954168417 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.982167151770181, dt = 0.009353890885690986
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.5%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 360.86 us (94.8%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.6%)
Info: cfl dt = 0.009353889674092578 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8728e+05 | 32768 | 1 | 1.141e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 295.22353331090255 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9915210426558719, dt = 0.008478957344128069
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (2.1%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 298.28 us (93.6%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (67.7%)
Info: cfl dt = 0.009353887732682704 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9635e+05 | 32768 | 1 | 1.106e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 276.0606756176961 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 75.11925418 (s) [Godunov][rank=0]
Info: pushing data in scheduler, N = 4096 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 1363.87 us [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: Compute load ... [DataInserterUtility][rank=0]
Info: run scheduler step ... [DataInserterUtility][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.03 us (53.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 : 1442.00 ns (0.5%)
patch tree reduce : 922.00 ns (0.3%)
gen split merge : 801.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 299.08 us (96.3%)
LB move op cnt : 0
LB apply : 4.01 us (1.3%)
Info: patch count stable after 1 runs npatch = 1 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.96 us (2.8%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 1313.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 369.50 us (93.5%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (67.1%)
Info: cfl dt = 0.009354083528780794 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2133e+05 | 32768 | 1 | 1.020e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.009354083528780794
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.8%)
patch tree reduce : 2.19 us (0.7%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 306.97 us (93.6%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1944.00 ns (65.8%)
Info: cfl dt = 0.009354078154867489 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2390e+05 | 32768 | 1 | 1.012e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.86345581081815 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009354083528780794, dt = 0.009354078154867489
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.9%)
patch tree reduce : 1713.00 ns (0.6%)
gen split merge : 1182.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 289.16 us (93.5%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (68.0%)
Info: cfl dt = 0.009354073115995854 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1189e+05 | 32768 | 1 | 1.051e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.52122772473416 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018708161683648285, dt = 0.009354073115995854
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (1.7%)
patch tree reduce : 1723.00 ns (0.5%)
gen split merge : 1292.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 351.40 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.17 us (69.1%)
Info: cfl dt = 0.009354069835700992 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0958e+05 | 32768 | 1 | 1.058e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.145498424194 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02806223479964414, dt = 0.009354069835700992
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.8%)
patch tree reduce : 1463.00 ns (0.5%)
gen split merge : 1312.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.4%)
LB compute : 302.48 us (93.9%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1913.00 ns (66.7%)
Info: cfl dt = 0.009354067793680202 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1031e+05 | 32768 | 1 | 1.056e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.8950075451631 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.037416304635345135, dt = 0.009354067793680202
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.7%)
patch tree reduce : 1653.00 ns (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 341.56 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.07 us (67.4%)
Info: cfl dt = 0.009354063668939042 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0857e+05 | 32768 | 1 | 1.062e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 317.1089279527467 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.046770372429025334, dt = 0.009354063668939042
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.7%)
patch tree reduce : 1803.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1383.00 ns (0.4%)
LB compute : 343.03 us (94.4%)
LB move op cnt : 0
LB apply : 3.36 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (68.0%)
Info: cfl dt = 0.009354060922640276 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1202e+05 | 32768 | 1 | 1.050e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.6486645669769 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05612443609796437, dt = 0.009354060922640276
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.5%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 368.77 us (93.8%)
LB move op cnt : 0
LB apply : 8.29 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (69.3%)
Info: cfl dt = 0.009354060012819689 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8100e+05 | 32768 | 1 | 1.166e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 288.77250379185944 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06547849702060465, dt = 0.009354060012819689
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.7%)
patch tree reduce : 1863.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 : 345.63 us (94.3%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (70.4%)
Info: cfl dt = 0.00935405618047606 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1976e+05 | 32768 | 1 | 1.025e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.6107859530708 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07483255703342434, dt = 0.00935405618047606
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (2.0%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1462.00 ns (0.4%)
LB compute : 308.43 us (93.4%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (66.7%)
Info: cfl dt = 0.009354053649009163 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2120e+05 | 32768 | 1 | 1.020e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 330.08978185148976 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0841866132139004, dt = 0.009354053649009163
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (1.2%)
patch tree reduce : 1643.00 ns (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1343.00 ns (0.2%)
LB compute : 542.51 us (96.1%)
LB move op cnt : 0
LB apply : 3.95 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (74.5%)
Info: cfl dt = 0.009354052903820962 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2391e+05 | 32768 | 1 | 1.012e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.8677853291181 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09354066686290957, dt = 0.009354052903820962
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 1713.00 ns (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 316.89 us (94.1%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.6%)
Info: cfl dt = 0.009354049738579461 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9497e+05 | 32768 | 1 | 1.111e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 303.13093326949274 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10289471976673054, dt = 0.009354049738579461
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.7%)
patch tree reduce : 1634.00 ns (0.5%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1213.00 ns (0.3%)
LB compute : 330.98 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.35 us (65.2%)
Info: cfl dt = 0.00935404717623245 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9050e+05 | 32768 | 1 | 1.128e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 298.5330285591662 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11224876950531, dt = 0.00935404717623245
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (2.0%)
patch tree reduce : 1844.00 ns (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.4%)
LB compute : 300.52 us (93.6%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1834.00 ns (63.5%)
Info: cfl dt = 0.009354046229852642 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1929e+05 | 32768 | 1 | 1.026e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.12282731619496 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12160281668154245, dt = 0.009354046229852642
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.8%)
patch tree reduce : 1583.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 299.37 us (94.0%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (67.0%)
Info: cfl dt = 0.009354043982820812 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1678e+05 | 32768 | 1 | 1.034e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 325.54102088126274 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13095686291139508, dt = 0.009354043982820812
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.8%)
patch tree reduce : 1572.00 ns (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1013.00 ns (0.3%)
LB compute : 317.62 us (93.9%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.4%)
Info: cfl dt = 0.009354041296404839 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2655e+05 | 32768 | 1 | 1.003e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.5858389922925 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14031090689421588, dt = 0.009354041296404839
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (2.0%)
patch tree reduce : 1483.00 ns (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1372.00 ns (0.4%)
LB compute : 295.55 us (93.7%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.5%)
Info: cfl dt = 0.009354040042086443 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1911e+05 | 32768 | 1 | 1.027e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 327.9434037286464 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1496649481906207, dt = 0.009354040042086443
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.8%)
patch tree reduce : 1673.00 ns (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 293.10 us (93.7%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1884.00 ns (66.2%)
Info: cfl dt = 0.009354038722821527 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1900e+05 | 32768 | 1 | 1.027e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 327.83042104520854 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15901898823270716, dt = 0.009354038722821527
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.9%)
patch tree reduce : 1403.00 ns (0.4%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.4%)
LB compute : 294.34 us (93.9%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.6%)
Info: cfl dt = 0.009354035904787316 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0815e+05 | 32768 | 1 | 1.063e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.67585284167114 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1683730269555287, dt = 0.009354035904787316
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.6%)
patch tree reduce : 1933.00 ns (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 349.50 us (94.6%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.3%)
Info: cfl dt = 0.00935403436362084 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1325e+05 | 32768 | 1 | 1.046e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.9120335252275 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.177727062860316, dt = 0.00935403436362084
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.5%)
patch tree reduce : 1542.00 ns (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1163.00 ns (0.3%)
LB compute : 359.76 us (94.8%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.4%)
Info: cfl dt = 0.009354033921675844 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1425e+05 | 32768 | 1 | 1.043e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 322.9457397933224 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18708109722393684, dt = 0.009354033921675844
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.8%)
patch tree reduce : 1503.00 ns (0.5%)
gen split merge : 1343.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 310.31 us (93.7%)
LB move op cnt : 0
LB apply : 4.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1923.00 ns (66.9%)
Info: cfl dt = 0.009354030996332864 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1941e+05 | 32768 | 1 | 1.026e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.2429412196817 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19643513114561267, dt = 0.009354030996332864
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (2.0%)
patch tree reduce : 1573.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1123.00 ns (0.4%)
LB compute : 300.83 us (93.8%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1984.00 ns (68.5%)
Info: cfl dt = 0.009354029119607844 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2104e+05 | 32768 | 1 | 1.021e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.92449441606135 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20578916214194554, dt = 0.009354029119607844
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.8%)
patch tree reduce : 1613.00 ns (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 296.41 us (93.7%)
LB move op cnt : 0
LB apply : 4.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (72.2%)
Info: cfl dt = 0.0093540288238183 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2147e+05 | 32768 | 1 | 1.019e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 330.364565484971 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21514319126155337, dt = 0.0093540288238183
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.6%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 337.58 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.44 us (70.4%)
Info: cfl dt = 0.00935402632744781 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1992e+05 | 32768 | 1 | 1.024e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.7712691613832 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22449722008537168, dt = 0.00935402632744781
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.9%)
patch tree reduce : 1523.00 ns (0.5%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1273.00 ns (0.4%)
LB compute : 306.12 us (93.8%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (70.3%)
Info: cfl dt = 0.009354024208256482 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1889e+05 | 32768 | 1 | 1.028e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 327.71666180894675 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23385124641281949, dt = 0.009354024208256482
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.7%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 334.07 us (94.1%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (69.7%)
Info: cfl dt = 0.009354023432050333 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1973e+05 | 32768 | 1 | 1.025e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.57354960619296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24320527062107597, dt = 0.009354023432050333
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1292.00 ns (0.4%)
LB compute : 306.22 us (93.9%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (67.4%)
Info: cfl dt = 0.009354021848116907 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1949e+05 | 32768 | 1 | 1.026e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.32577610607404 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2525592940531263, dt = 0.009354021848116907
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.6%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 339.07 us (94.3%)
LB move op cnt : 0
LB apply : 3.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.5%)
Info: cfl dt = 0.009354019534411182 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2196e+05 | 32768 | 1 | 1.018e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 330.8683430773647 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2619133159012432, dt = 0.009354019534411182
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.8%)
patch tree reduce : 1522.00 ns (0.5%)
gen split merge : 1323.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 302.01 us (93.7%)
LB move op cnt : 0
LB apply : 3.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.0%)
Info: cfl dt = 0.009354018352934595 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2070e+05 | 32768 | 1 | 1.022e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.57251324824296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2712673354356544, dt = 0.009354018352934595
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.7%)
patch tree reduce : 1894.00 ns (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 322.65 us (94.0%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (70.4%)
Info: cfl dt = 0.009354017647616328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2269e+05 | 32768 | 1 | 1.015e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 331.6136001543216 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.280621353788589, dt = 0.009354017647616328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.8%)
patch tree reduce : 1773.00 ns (0.5%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 319.81 us (94.0%)
LB move op cnt : 0
LB apply : 3.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (68.9%)
Info: cfl dt = 0.009354015140126938 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9876e+05 | 32768 | 1 | 1.097e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 307.0245960790614 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28997537143620533, dt = 0.009354015140126938
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.7%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 333.68 us (94.1%)
LB move op cnt : 0
LB apply : 4.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (65.7%)
Info: cfl dt = 0.009354013648637456 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1863e+05 | 32768 | 1 | 1.028e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 327.44840913949497 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2993293865763323, dt = 0.009354013648637456
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (1.9%)
patch tree reduce : 1924.00 ns (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 315.30 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.23 us (66.0%)
Info: cfl dt = 0.009354013607492183 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9978e+05 | 32768 | 1 | 1.093e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.0732422434199 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30868340022496976, dt = 0.009354013607492183
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.8%)
patch tree reduce : 1724.00 ns (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 312.47 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.95 us (69.4%)
Info: cfl dt = 0.009354011034580742 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1240e+05 | 32768 | 1 | 1.049e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.0383621805936 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3180374138324619, dt = 0.009354011034580742
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.8%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 330.22 us (94.1%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (72.6%)
Info: cfl dt = 0.009354009239098997 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0979e+05 | 32768 | 1 | 1.058e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.3631349615229 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32739142486704265, dt = 0.009354009239098997
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.5%)
patch tree reduce : 1744.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 361.65 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.28 us (69.1%)
Info: cfl dt = 0.009354008698417725 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0553e+05 | 32768 | 1 | 1.072e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.9843628470926 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33674543410614166, dt = 0.009354008698417725
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (2.0%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.4%)
LB compute : 283.05 us (93.1%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (67.2%)
Info: cfl dt = 0.00935400697854128 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5535e+05 | 32768 | 1 | 7.196e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 467.9486036636959 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3460994428045594, dt = 0.00935400697854128
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.9%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 309.69 us (93.5%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.0%)
Info: cfl dt = 0.009354004953324896 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5393e+05 | 32768 | 1 | 7.219e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 466.48912933978033 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3554534497831007, dt = 0.009354004953324896
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (2.0%)
patch tree reduce : 1523.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.4%)
LB compute : 295.34 us (93.6%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1893.00 ns (65.4%)
Info: cfl dt = 0.00935400404458406 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5488e+05 | 32768 | 1 | 7.204e-02 | 0.0% | 0.9% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 467.46408091703154 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36480745473642556, dt = 0.00935400404458406
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (2.1%)
patch tree reduce : 1663.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 286.37 us (93.4%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (63.8%)
Info: cfl dt = 0.009354003137325146 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5934e+05 | 32768 | 1 | 7.134e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 472.0454792081219 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37416145878100965, dt = 0.009354003137325146
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.1%)
patch tree reduce : 1833.00 ns (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.4%)
LB compute : 303.81 us (93.6%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1883.00 ns (65.3%)
Info: cfl dt = 0.009354000897273486 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5581e+05 | 32768 | 1 | 7.189e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 468.4207962378916 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3835154619183348, dt = 0.009354000897273486
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (2.0%)
patch tree reduce : 1533.00 ns (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.4%)
LB compute : 280.08 us (93.4%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (68.0%)
Info: cfl dt = 0.009353999655229834 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3223e+05 | 32768 | 1 | 9.863e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.41651879733314 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3928694628156083, dt = 0.009353999655229834
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (2.1%)
patch tree reduce : 1954.00 ns (0.6%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1633.00 ns (0.5%)
LB compute : 286.57 us (92.8%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (67.9%)
Info: cfl dt = 0.00935399953307208 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2021e+05 | 32768 | 1 | 1.023e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.0637900967591 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4022234624708381, dt = 0.00935399953307208
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.8%)
patch tree reduce : 1623.00 ns (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1292.00 ns (0.4%)
LB compute : 325.04 us (93.8%)
LB move op cnt : 0
LB apply : 4.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (72.7%)
Info: cfl dt = 0.00935399710433741 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4125e+05 | 32768 | 1 | 7.426e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 453.45706653805837 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4115774620039102, dt = 0.00935399710433741
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.7%)
patch tree reduce : 1503.00 ns (0.5%)
gen split merge : 1013.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 306.09 us (94.0%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1994.00 ns (67.2%)
Info: cfl dt = 0.0093539955462583 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4329e+05 | 32768 | 1 | 7.392e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 455.55689753263033 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42093145910824764, dt = 0.0093539955462583
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.7%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 338.89 us (94.2%)
LB move op cnt : 0
LB apply : 4.28 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (70.3%)
Info: cfl dt = 0.00935399524692934 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5371e+05 | 32768 | 1 | 7.222e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 466.2568289913938 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43028545465450596, dt = 0.00935399524692934
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (2.1%)
patch tree reduce : 1733.00 ns (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1143.00 ns (0.4%)
LB compute : 285.97 us (93.0%)
LB move op cnt : 0
LB apply : 4.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1914.00 ns (66.8%)
Info: cfl dt = 0.00935399337887989 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3621e+05 | 32768 | 1 | 7.512e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 448.2771821620674 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4396394499014353, dt = 0.00935399337887989
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.8%)
patch tree reduce : 1452.00 ns (0.4%)
gen split merge : 1393.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.4%)
LB compute : 311.44 us (93.8%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (68.0%)
Info: cfl dt = 0.009353991576363673 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4360e+05 | 32768 | 1 | 7.387e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 455.87188299312004 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44899344328031515, dt = 0.009353991576363673
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (1.8%)
patch tree reduce : 1363.00 ns (0.4%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 323.24 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.10 us (69.1%)
Info: cfl dt = 0.009353990874762762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4249e+05 | 32768 | 1 | 7.405e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 454.7292787589813 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45834743485667884, dt = 0.009353990874762762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.9%)
patch tree reduce : 1503.00 ns (0.5%)
gen split merge : 1402.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 281.55 us (93.4%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.4%)
Info: cfl dt = 0.009353989782768886 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1536e+05 | 32768 | 1 | 7.889e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 426.84915478534515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4677014257314416, dt = 0.009353989782768886
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.7%)
patch tree reduce : 1724.00 ns (0.5%)
gen split merge : 1292.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 323.70 us (94.2%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (70.2%)
Info: cfl dt = 0.009353987770686845 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4063e+05 | 32768 | 1 | 7.437e-02 | 0.0% | 0.9% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 452.8180880703796 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4770554155142105, dt = 0.009353987770686845
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.8%)
patch tree reduce : 1744.00 ns (0.5%)
gen split merge : 1001.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 328.44 us (94.2%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (69.6%)
Info: cfl dt = 0.009353986743504614 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4669e+05 | 32768 | 1 | 7.336e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 459.04147110361686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48640940328489735, dt = 0.009353986743504614
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (1.7%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1683.00 ns (0.5%)
LB compute : 344.80 us (94.2%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (70.7%)
Info: cfl dt = 0.009353986397497157 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4925e+05 | 32768 | 1 | 7.294e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 461.6798463310252 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.495763390028402, dt = 0.009353986397497157
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.2%)
patch tree reduce : 1793.00 ns (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 275.80 us (93.2%)
LB move op cnt : 0
LB apply : 3.77 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1983.00 ns (67.5%)
Info: cfl dt = 0.009353984190947679 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4628e+05 | 32768 | 1 | 7.342e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 458.62638418445647 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5051173764258992, dt = 0.009353984190947679
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (1.6%)
patch tree reduce : 1873.00 ns (0.5%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1422.00 ns (0.3%)
LB compute : 383.98 us (94.3%)
LB move op cnt : 0
LB apply : 4.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (71.8%)
Info: cfl dt = 0.009353982862051148 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4022e+05 | 32768 | 1 | 7.443e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 452.39977792429323 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5144713606168468, dt = 0.009353982862051148
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.5%)
patch tree reduce : 1824.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.3%)
LB compute : 364.93 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.50 us (71.2%)
Info: cfl dt = 0.009353982792781945 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4923e+05 | 32768 | 1 | 7.294e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 461.652198196319 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.523825343478898, dt = 0.009353982792781945
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (1.8%)
patch tree reduce : 1633.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.3%)
LB compute : 335.54 us (94.0%)
LB move op cnt : 0
LB apply : 4.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (69.3%)
Info: cfl dt = 0.009353980759532898 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8896e+05 | 32768 | 1 | 8.424e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 399.71984582719114 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.53317932627168, dt = 0.009353980759532898
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.8%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 316.96 us (94.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (68.2%)
Info: cfl dt = 0.009353979164731106 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4377e+05 | 32768 | 1 | 7.384e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 456.045943019552 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5425333070312128, dt = 0.009353979164731106
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.3%)
patch tree reduce : 2.18 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 283.12 us (92.8%)
LB move op cnt : 0
LB apply : 3.85 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (68.9%)
Info: cfl dt = 0.009353978696187704 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5286e+05 | 32768 | 1 | 9.286e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 362.6177253081909 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.551887286195944, dt = 0.009353978696187704
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.6%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 345.64 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.43 us (70.6%)
Info: cfl dt = 0.009353977392728755 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4356e+05 | 32768 | 1 | 9.538e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 353.06195430544955 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5612412648921317, dt = 0.009353977392728755
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (2.0%)
patch tree reduce : 1713.00 ns (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1313.00 ns (0.4%)
LB compute : 283.54 us (93.4%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (64.9%)
Info: cfl dt = 0.009353975586950126 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3809e+05 | 32768 | 1 | 7.480e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 450.21113710290814 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5705952422848605, dt = 0.009353975586950126
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.8%)
patch tree reduce : 1744.00 ns (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 282.62 us (93.5%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (69.7%)
Info: cfl dt = 0.009353974777686918 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5347e+05 | 32768 | 1 | 7.226e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 466.00721845078726 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5799492178718106, dt = 0.009353974777686918
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.8%)
patch tree reduce : 1864.00 ns (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 297.47 us (94.0%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1874.00 ns (64.7%)
Info: cfl dt = 0.009353974197290484 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5495e+05 | 32768 | 1 | 7.203e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 467.53104458953305 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5893031926494976, dt = 0.009353974197290484
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (2.0%)
patch tree reduce : 2.04 us (0.7%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.4%)
LB compute : 286.51 us (93.3%)
LB move op cnt : 0
LB apply : 3.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (66.8%)
Info: cfl dt = 0.009353972194286814 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5365e+05 | 32768 | 1 | 7.223e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 466.19724394087194 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.598657166846788, dt = 0.009353972194286814
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.2%)
patch tree reduce : 1623.00 ns (0.5%)
gen split merge : 1282.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.4%)
LB compute : 278.05 us (92.6%)
LB move op cnt : 0
LB apply : 4.57 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.9%)
Info: cfl dt = 0.00935397108812354 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7210e+05 | 32768 | 1 | 8.806e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 382.38819616092815 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6080111390410748, dt = 0.00935397108812354
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.9%)
patch tree reduce : 1443.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 : 279.70 us (93.2%)
LB move op cnt : 0
LB apply : 4.45 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (68.9%)
Info: cfl dt = 0.009353971206801667 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5267e+05 | 32768 | 1 | 9.291e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 362.42527296246465 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6173651101291984, dt = 0.009353971206801667
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.7%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 328.00 us (94.1%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.0%)
Info: cfl dt = 0.009353969019530324 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9707e+05 | 32768 | 1 | 8.252e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 408.05121493878903 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6267190813360001, dt = 0.009353969019530324
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.9%)
patch tree reduce : 1693.00 ns (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1383.00 ns (0.5%)
LB compute : 286.64 us (93.6%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (67.7%)
Info: cfl dt = 0.009353967628115934 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4580e+05 | 32768 | 1 | 9.476e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 355.36694113966144 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6360730503555304, dt = 0.009353967628115934
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (2.2%)
patch tree reduce : 1963.00 ns (0.7%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 281.09 us (93.1%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (65.8%)
Info: cfl dt = 0.009353967403590522 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4971e+05 | 32768 | 1 | 7.287e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 462.14312577586264 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6454270179836463, dt = 0.009353967403590522
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (1.8%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 1253.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.4%)
LB compute : 334.68 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.03 us (67.9%)
Info: cfl dt = 0.009353965853638109 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3805e+05 | 32768 | 1 | 7.480e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 450.16235202662295 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6547809853872368, dt = 0.009353965853638109
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.7%)
patch tree reduce : 1633.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 322.20 us (94.0%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (68.9%)
Info: cfl dt = 0.009353964250676874 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5328e+05 | 32768 | 1 | 7.229e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 465.8115617685918 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.664134951240875, dt = 0.009353964250676874
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (2.0%)
patch tree reduce : 1693.00 ns (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.4%)
LB compute : 279.80 us (93.1%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (71.1%)
Info: cfl dt = 0.009353963682393236 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4686e+05 | 32768 | 1 | 7.333e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 459.21441750969274 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6734889154915519, dt = 0.009353963682393236
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (2.0%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 1152.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1213.00 ns (0.4%)
LB compute : 281.29 us (93.3%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1963.00 ns (66.7%)
Info: cfl dt = 0.009353962819548008 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6133e+05 | 32768 | 1 | 7.103e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 474.08834853946075 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6828428791739451, dt = 0.009353962819548008
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (2.0%)
patch tree reduce : 2.26 us (0.8%)
gen split merge : 1112.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1093.00 ns (0.4%)
LB compute : 279.40 us (93.1%)
LB move op cnt : 0
LB apply : 3.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (68.8%)
Info: cfl dt = 0.009353961021369425 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2389e+05 | 32768 | 1 | 7.730e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 435.6169267024083 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6921968419934932, dt = 0.009353961021369425
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.7%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 1273.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 329.56 us (94.0%)
LB move op cnt : 0
LB apply : 4.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (75.1%)
Info: cfl dt = 0.009353960150382494 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3982e+05 | 32768 | 1 | 7.450e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 451.98655885141926 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7015508030148626, dt = 0.009353960150382494
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.9%)
patch tree reduce : 1543.00 ns (0.5%)
gen split merge : 1313.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.4%)
LB compute : 291.27 us (93.5%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1893.00 ns (67.9%)
Info: cfl dt = 0.009353959966081333 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4829e+05 | 32768 | 1 | 7.310e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 460.6843758249251 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7109047631652451, dt = 0.009353959966081333
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.8%)
patch tree reduce : 1523.00 ns (0.5%)
gen split merge : 1273.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.4%)
LB compute : 294.98 us (93.7%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1884.00 ns (65.8%)
Info: cfl dt = 0.009353957982786315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5575e+05 | 32768 | 1 | 7.190e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 468.35611019329394 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7202587231313264, dt = 0.009353957982786315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (2.1%)
patch tree reduce : 1663.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 299.36 us (93.3%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (70.1%)
Info: cfl dt = 0.00935395683473473 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3118e+05 | 32768 | 1 | 9.894e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.33677727840904 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7296126811141127, dt = 0.00935395683473473
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.8%)
patch tree reduce : 1623.00 ns (0.5%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 331.61 us (93.9%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (68.4%)
Info: cfl dt = 0.009353956903229982 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2965e+05 | 32768 | 1 | 9.940e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.7661162608519 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7389666379488474, dt = 0.009353956903229982
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.9%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 1283.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 299.47 us (93.3%)
LB move op cnt : 0
LB apply : 3.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (69.4%)
Info: cfl dt = 0.009353955070097904 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0584e+05 | 32768 | 1 | 1.071e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 314.2993707798103 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7483205948520774, dt = 0.009353955070097904
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.9%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 309.93 us (93.8%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (66.7%)
Info: cfl dt = 0.009353953678405287 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1144e+05 | 32768 | 1 | 1.052e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.0533965913732 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7576745499221753, dt = 0.009353953678405287
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.7%)
patch tree reduce : 1653.00 ns (0.5%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1073.00 ns (0.3%)
LB compute : 322.51 us (93.8%)
LB move op cnt : 0
LB apply : 4.73 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (67.8%)
Info: cfl dt = 0.009353953386628052 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1186e+05 | 32768 | 1 | 1.051e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.480763519136 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7670285036005806, dt = 0.009353953386628052
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.9%)
patch tree reduce : 2.21 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 305.73 us (93.4%)
LB move op cnt : 0
LB apply : 4.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (65.4%)
Info: cfl dt = 0.0093539522088303 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2073e+05 | 32768 | 1 | 1.022e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.60427656751045 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7763824569872086, dt = 0.0093539522088303
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 1472.00 ns (0.5%)
gen split merge : 1303.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.4%)
LB compute : 301.81 us (93.8%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (66.1%)
Info: cfl dt = 0.009353950620957197 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1875e+05 | 32768 | 1 | 1.028e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 327.56150043035404 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7857364091960389, dt = 0.009353950620957197
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.9%)
patch tree reduce : 1483.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 301.08 us (93.9%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (68.2%)
Info: cfl dt = 0.009353950009026005 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1613e+05 | 32768 | 1 | 1.037e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.871708989939 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7950903598169962, dt = 0.009353950009026005
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 1984.00 ns (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 303.42 us (93.7%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (68.1%)
Info: cfl dt = 0.009353949491366477 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1918e+05 | 32768 | 1 | 1.027e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.00821089067637 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8044443098260222, dt = 0.009353949491366477
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.7%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1073.00 ns (0.3%)
LB compute : 339.93 us (94.2%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (70.7%)
Info: cfl dt = 0.009353947715650342 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1950e+05 | 32768 | 1 | 1.026e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.33354002903707 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8137982593173887, dt = 0.009353947715650342
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.7%)
patch tree reduce : 1502.00 ns (0.5%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1143.00 ns (0.4%)
LB compute : 301.60 us (93.5%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1954.00 ns (65.9%)
Info: cfl dt = 0.009353946821726198 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2291e+05 | 32768 | 1 | 1.015e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 331.8380426138822 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.823152207033039, dt = 0.009353946821726198
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.7%)
patch tree reduce : 1583.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 326.74 us (94.2%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.0%)
Info: cfl dt = 0.00935394694934706 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2019e+05 | 32768 | 1 | 1.023e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.04115698782647 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8325061538547652, dt = 0.00935394694934706
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.6%)
patch tree reduce : 1714.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 332.56 us (94.3%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.4%)
Info: cfl dt = 0.009353944995966337 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2326e+05 | 32768 | 1 | 1.014e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.20324376538184 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8418601008041123, dt = 0.009353944995966337
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.7%)
patch tree reduce : 1572.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 341.31 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.52 us (66.9%)
Info: cfl dt = 0.00935394383516957 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2470e+05 | 32768 | 1 | 1.009e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 333.6787785947448 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8512140458000786, dt = 0.00935394383516957
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.6%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 328.37 us (94.3%)
LB move op cnt : 0
LB apply : 4.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (70.7%)
Info: cfl dt = 0.009353943840557644 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2220e+05 | 32768 | 1 | 1.017e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 331.1065804879239 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8605679896352482, dt = 0.009353943840557644
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.6%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 337.54 us (94.3%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (71.7%)
Info: cfl dt = 0.009353942316090711 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2645e+05 | 32768 | 1 | 1.004e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.4815606175725 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8699219334758058, dt = 0.009353942316090711
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.6%)
patch tree reduce : 1503.00 ns (0.5%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 302.98 us (94.1%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (67.1%)
Info: cfl dt = 0.009353940941880337 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2847e+05 | 32768 | 1 | 9.976e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 337.5576787680837 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8792758757918965, dt = 0.009353940941880337
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.7%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1111.00 ns (0.3%)
LB compute : 313.83 us (94.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (69.8%)
Info: cfl dt = 0.009353940615400813 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1723e+05 | 32768 | 1 | 1.033e-01 | 0.0% | 1.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.0009605209382 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8886298167337768, dt = 0.009353940615400813
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.9%)
patch tree reduce : 1552.00 ns (0.5%)
gen split merge : 1533.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1053.00 ns (0.3%)
LB compute : 305.14 us (93.6%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1964.00 ns (66.9%)
Info: cfl dt = 0.009353939727278066 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1707e+05 | 32768 | 1 | 1.033e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 325.8386965657506 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8979837573491777, dt = 0.009353939727278066
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.6%)
patch tree reduce : 1963.00 ns (0.6%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 331.04 us (94.2%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.2%)
Info: cfl dt = 0.009353938163272686 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1642e+05 | 32768 | 1 | 1.036e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 325.16551198840256 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9073376970764557, dt = 0.009353938163272686
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.7%)
patch tree reduce : 1664.00 ns (0.5%)
gen split merge : 1031.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 327.77 us (94.0%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (70.4%)
Info: cfl dt = 0.009353937528830247 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2316e+05 | 32768 | 1 | 1.014e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.0928165023843 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9166916352397284, dt = 0.009353937528830247
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.9%)
patch tree reduce : 1814.00 ns (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 296.85 us (93.7%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1974.00 ns (66.4%)
Info: cfl dt = 0.009353937283498844 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1931e+05 | 32768 | 1 | 1.026e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.1443206160989 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9260455727685587, dt = 0.009353937283498844
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (1.9%)
patch tree reduce : 1413.00 ns (0.4%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1663.00 ns (0.5%)
LB compute : 310.70 us (93.7%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (67.4%)
Info: cfl dt = 0.009353935535482997 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2197e+05 | 32768 | 1 | 1.018e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 330.87811871299783 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9353995100520576, dt = 0.009353935535482997
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.7%)
patch tree reduce : 1613.00 ns (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 330.98 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.58 us (66.5%)
Info: cfl dt = 0.009353934631720247 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2333e+05 | 32768 | 1 | 1.013e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.2694750194997 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9447534455875406, dt = 0.009353934631720247
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 1824.00 ns (0.5%)
gen split merge : 1312.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 313.95 us (93.8%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (68.4%)
Info: cfl dt = 0.009353934954674296 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1674e+05 | 32768 | 1 | 1.035e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 325.50160751221716 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9541073802192609, dt = 0.009353934954674296
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 336.77 us (94.3%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (69.3%)
Info: cfl dt = 0.009353933079148329 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2488e+05 | 32768 | 1 | 7.712e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 436.6325039806501 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9634613151739352, dt = 0.009353933079148329
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.9%)
patch tree reduce : 1944.00 ns (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 313.99 us (93.7%)
LB move op cnt : 0
LB apply : 3.98 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.2%)
Info: cfl dt = 0.009353931916772355 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4729e+05 | 32768 | 1 | 7.326e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 459.66162196904605 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9728152482530835, dt = 0.009353931916772355
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.6%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 1132.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.3%)
LB compute : 351.14 us (94.5%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (73.8%)
Info: cfl dt = 0.009353931874363772 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3533e+05 | 32768 | 1 | 7.527e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 447.367210777784 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9821691801698559, dt = 0.009353931874363772
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.7%)
patch tree reduce : 1864.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 321.48 us (94.0%)
LB move op cnt : 0
LB apply : 4.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (68.5%)
Info: cfl dt = 0.009353930612990181 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4273e+05 | 32768 | 1 | 7.401e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 454.9745879702723 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9915231120442196, dt = 0.008476887955780388
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.7%)
patch tree reduce : 1843.00 ns (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 345.50 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.58 us (72.3%)
Info: cfl dt = 0.009353929364831646 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4570e+05 | 32768 | 1 | 7.352e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 415.0816325052908 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 85.210004404 (s) [Godunov][rank=0]
Info: pushing data in scheduler, N = 4096 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 1263.44 us [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: Compute load ... [DataInserterUtility][rank=0]
Info: run scheduler step ... [DataInserterUtility][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (64.2%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1362.00 ns (0.4%)
patch tree reduce : 1272.00 ns (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1273.00 ns (0.4%)
LB compute : 326.47 us (96.7%)
LB move op cnt : 0
LB apply : 3.16 us (0.9%)
Info: patch count stable after 1 runs npatch = 1 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.70 us (2.8%)
patch tree reduce : 1814.00 ns (0.4%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 390.68 us (93.7%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (68.5%)
Info: cfl dt = 0.009354083528780794 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3808e+05 | 32768 | 1 | 7.480e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.009354083528780794
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.7%)
patch tree reduce : 1663.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 310.82 us (94.1%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (69.1%)
Info: cfl dt = 0.009354072778192094 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3681e+05 | 32768 | 1 | 7.502e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 448.8938351593447 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009354083528780794, dt = 0.009354072778192094
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.9%)
patch tree reduce : 1613.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 285.49 us (93.8%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.5%)
Info: cfl dt = 0.009354070025152395 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4030e+05 | 32768 | 1 | 7.442e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 452.4829058034614 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018708156306972888, dt = 0.009354070025152395
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (2.3%)
patch tree reduce : 1843.00 ns (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1463.00 ns (0.5%)
LB compute : 282.18 us (92.6%)
LB move op cnt : 0
LB apply : 3.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (67.7%)
Info: cfl dt = 0.009354068997132361 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5890e+05 | 32768 | 1 | 7.141e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 471.5958767760756 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02806222633212528, dt = 0.009354068997132361
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.7%)
patch tree reduce : 1623.00 ns (0.5%)
gen split merge : 1213.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 333.63 us (94.3%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (66.9%)
Info: cfl dt = 0.009354063560589144 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4432e+05 | 32768 | 1 | 7.375e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 456.611939957764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.037416295329257644, dt = 0.009354063560589144
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (2.1%)
patch tree reduce : 1793.00 ns (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.3%)
LB compute : 298.25 us (93.4%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.6%)
Info: cfl dt = 0.009354060430101651 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2512e+05 | 32768 | 1 | 7.708e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 436.88720549645217 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04677035888984679, dt = 0.009354060430101651
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (2.1%)
patch tree reduce : 1623.00 ns (0.5%)
gen split merge : 1072.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1343.00 ns (0.4%)
LB compute : 286.72 us (92.8%)
LB move op cnt : 0
LB apply : 4.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (67.2%)
Info: cfl dt = 0.009354060331855442 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3993e+05 | 32768 | 1 | 7.448e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 452.10320056943425 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.056124419319948445, dt = 0.009354060331855442
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.8%)
patch tree reduce : 1914.00 ns (0.6%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 275.44 us (93.4%)
LB move op cnt : 0
LB apply : 3.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (62.9%)
Info: cfl dt = 0.009354056142077238 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4297e+05 | 32768 | 1 | 7.397e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 455.2271929182523 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06547847965180388, dt = 0.009354056142077238
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.8%)
patch tree reduce : 1412.00 ns (0.4%)
gen split merge : 1252.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 306.93 us (94.0%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (65.8%)
Info: cfl dt = 0.009354053148485976 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4149e+05 | 32768 | 1 | 7.422e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 453.70192488267315 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07483253579388112, dt = 0.009354053148485976
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (2.1%)
patch tree reduce : 1903.00 ns (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 282.08 us (93.4%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (67.0%)
Info: cfl dt = 0.009354052192277168 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8216e+05 | 32768 | 1 | 8.574e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 392.73354394466463 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0841865889423671, dt = 0.009354052192277168
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (2.0%)
patch tree reduce : 1773.00 ns (0.6%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.4%)
LB compute : 288.61 us (93.5%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (66.6%)
Info: cfl dt = 0.009354049658216564 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4348e+05 | 32768 | 1 | 7.389e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 455.7452222185113 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09354064113464426, dt = 0.009354049658216564
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (2.0%)
patch tree reduce : 1423.00 ns (0.5%)
gen split merge : 1252.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.4%)
LB compute : 276.75 us (93.4%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (70.1%)
Info: cfl dt = 0.00935404660958092 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5510e+05 | 32768 | 1 | 7.200e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 467.69608456856014 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10289469079286083, dt = 0.00935404660958092
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.9%)
patch tree reduce : 1924.00 ns (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 312.05 us (93.6%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (65.3%)
Info: cfl dt = 0.009354045408483705 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3740e+05 | 32768 | 1 | 7.492e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 449.5000026762287 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11224873740244175, dt = 0.009354045408483705
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.7%)
patch tree reduce : 1573.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 322.80 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.17 us (67.8%)
Info: cfl dt = 0.00935404404930604 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5450e+05 | 32768 | 1 | 7.210e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 467.0747490117387 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12160278281092546, dt = 0.00935404404930604
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (2.0%)
patch tree reduce : 1583.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1353.00 ns (0.5%)
LB compute : 278.38 us (93.3%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.5%)
Info: cfl dt = 0.009354040828235837 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4405e+05 | 32768 | 1 | 7.379e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 456.33418276749154 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1309568268602315, dt = 0.009354040828235837
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.7%)
patch tree reduce : 1482.00 ns (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 321.32 us (94.2%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (69.6%)
Info: cfl dt = 0.009354039248471365 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4077e+05 | 32768 | 1 | 7.434e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 452.9607605965056 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14031086768846734, dt = 0.009354039248471365
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (2.2%)
patch tree reduce : 1683.00 ns (0.6%)
gen split merge : 1282.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.4%)
LB compute : 274.31 us (92.9%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (66.1%)
Info: cfl dt = 0.00935403903237343 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3219e+05 | 32768 | 1 | 7.582e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 444.14957998964485 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1496649069369387, dt = 0.00935403903237343
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.8%)
patch tree reduce : 1783.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 328.70 us (94.0%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (70.0%)
Info: cfl dt = 0.009354035682225157 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4048e+05 | 32768 | 1 | 7.439e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 452.6707247112449 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15901894596931213, dt = 0.009354035682225157
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.0%)
patch tree reduce : 1773.00 ns (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.3%)
LB compute : 297.47 us (93.5%)
LB move op cnt : 0
LB apply : 4.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (69.2%)
Info: cfl dt = 0.009354033673201465 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4158e+05 | 32768 | 1 | 7.421e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 453.79765709930876 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16837298165153727, dt = 0.009354033673201465
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (2.1%)
patch tree reduce : 1954.00 ns (0.7%)
gen split merge : 1172.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1021.00 ns (0.3%)
LB compute : 279.54 us (93.2%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (68.6%)
Info: cfl dt = 0.009354033425175785 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2909e+05 | 32768 | 1 | 7.637e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 440.9563923417359 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17772701532473872, dt = 0.009354033425175785
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (2.1%)
patch tree reduce : 1563.00 ns (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 272.37 us (93.2%)
LB move op cnt : 0
LB apply : 3.69 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (65.2%)
Info: cfl dt = 0.0093540308403691 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3815e+05 | 32768 | 1 | 7.479e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 450.2663874146221 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18708104874991452, dt = 0.0093540308403691
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.2%)
patch tree reduce : 1844.00 ns (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.4%)
LB compute : 276.80 us (92.8%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (65.3%)
Info: cfl dt = 0.009354028485579452 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3661e+05 | 32768 | 1 | 7.505e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 448.6843368296412 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1964350795902836, dt = 0.009354028485579452
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.8%)
patch tree reduce : 1463.00 ns (0.5%)
gen split merge : 1252.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1303.00 ns (0.4%)
LB compute : 290.55 us (93.5%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (68.7%)
Info: cfl dt = 0.009354027740402665 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3042e+05 | 32768 | 1 | 7.613e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 442.3312221453449 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20578910807586306, dt = 0.009354027740402665
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (2.0%)
patch tree reduce : 1884.00 ns (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 287.29 us (93.1%)
LB move op cnt : 0
LB apply : 3.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (66.0%)
Info: cfl dt = 0.0093540262525428 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3968e+05 | 32768 | 1 | 7.453e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 451.847750171347 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21514313581626573, dt = 0.0093540262525428
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (2.0%)
patch tree reduce : 1673.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 292.08 us (93.5%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (66.9%)
Info: cfl dt = 0.009354023677664806 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5063e+05 | 32768 | 1 | 7.272e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 463.09727031662396 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22449716206880854, dt = 0.009354023677664806
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.2%)
patch tree reduce : 1473.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 280.75 us (93.3%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (65.3%)
Info: cfl dt = 0.009354022448693428 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1846e+05 | 32768 | 1 | 1.029e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 327.2714405512987 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23385118574647334, dt = 0.009354022448693428
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (2.1%)
patch tree reduce : 1482.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1153.00 ns (0.4%)
LB compute : 277.60 us (93.3%)
LB move op cnt : 0
LB apply : 3.84 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.0%)
Info: cfl dt = 0.009354022005517115 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5186e+05 | 32768 | 1 | 9.313e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 361.5952539512296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24320520819516678, dt = 0.009354022005517115
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.9%)
patch tree reduce : 1522.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.4%)
LB compute : 297.81 us (93.8%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (70.6%)
Info: cfl dt = 0.009354019207333072 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4802e+05 | 32768 | 1 | 7.314e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 460.41231294955134 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2525592302006839, dt = 0.009354019207333072
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.2%)
patch tree reduce : 1463.00 ns (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.4%)
LB compute : 268.82 us (93.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1814.00 ns (64.6%)
Info: cfl dt = 0.009354017548712134 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4452e+05 | 32768 | 1 | 7.372e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 456.8125601762406 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26191324940801697, dt = 0.009354017548712134
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (2.2%)
patch tree reduce : 1312.00 ns (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.4%)
LB compute : 272.11 us (93.2%)
LB move op cnt : 0
LB apply : 3.84 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1913.00 ns (65.2%)
Info: cfl dt = 0.009354017456260246 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4005e+05 | 32768 | 1 | 9.636e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 349.46026053436526 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2712672669567291, dt = 0.009354017456260246
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.6%)
patch tree reduce : 1713.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1292.00 ns (0.4%)
LB compute : 345.15 us (94.5%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (69.8%)
Info: cfl dt = 0.009354014962342597 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4518e+05 | 32768 | 1 | 9.493e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 354.72449573185503 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28062128441298934, dt = 0.009354014962342597
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (2.0%)
patch tree reduce : 1482.00 ns (0.5%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1173.00 ns (0.4%)
LB compute : 282.56 us (93.0%)
LB move op cnt : 0
LB apply : 4.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (65.0%)
Info: cfl dt = 0.009354012973802932 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5038e+05 | 32768 | 1 | 7.276e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 462.8371715506529 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28997529937533195, dt = 0.009354012973802932
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (2.1%)
patch tree reduce : 1583.00 ns (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 272.13 us (93.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (66.7%)
Info: cfl dt = 0.009354012344533591 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5464e+05 | 32768 | 1 | 7.207e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 467.2174549938445 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2993293123491349, dt = 0.009354012344533591
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (2.1%)
patch tree reduce : 1442.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1423.00 ns (0.5%)
LB compute : 276.69 us (93.2%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (66.2%)
Info: cfl dt = 0.009354010842266341 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5363e+05 | 32768 | 1 | 7.224e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 466.1751819621591 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3086833246936685, dt = 0.009354010842266341
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (2.2%)
patch tree reduce : 1583.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1203.00 ns (0.4%)
LB compute : 275.57 us (93.2%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (68.8%)
Info: cfl dt = 0.009354008589287725 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5812e+05 | 32768 | 1 | 7.153e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 470.7904049284185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31803733553593483, dt = 0.009354008589287725
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.7%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 325.75 us (94.2%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (67.3%)
Info: cfl dt = 0.009354007561995637 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4988e+05 | 32768 | 1 | 7.284e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 462.32811893138864 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3273913441252225, dt = 0.009354007561995637
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.8%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 1021.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1413.00 ns (0.4%)
LB compute : 326.35 us (93.9%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.9%)
Info: cfl dt = 0.009354006984716879 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6137e+05 | 32768 | 1 | 7.102e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 474.1284402800509 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33674535168721814, dt = 0.009354006984716879
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.7%)
patch tree reduce : 1573.00 ns (0.5%)
gen split merge : 1263.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 327.49 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.46 us (71.2%)
Info: cfl dt = 0.009354004489580554 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5146e+05 | 32768 | 1 | 7.258e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 463.94345754615864 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.34609935867193503, dt = 0.009354004489580554
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.7%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 321.92 us (94.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.9%)
Info: cfl dt = 0.009354003071474527 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3698e+05 | 32768 | 1 | 9.724e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.306469359604 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3554533631615156, dt = 0.009354003071474527
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.8%)
patch tree reduce : 1753.00 ns (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 304.81 us (93.9%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (66.0%)
Info: cfl dt = 0.009354003056385634 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5403e+05 | 32768 | 1 | 9.256e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 363.82376046462184 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36480736623299015, dt = 0.009354003056385634
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.6%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 348.01 us (94.5%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (72.1%)
Info: cfl dt = 0.009354000616045745 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4687e+05 | 32768 | 1 | 7.333e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 459.2282713994814 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37416136928937577, dt = 0.009354000616045745
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.8%)
patch tree reduce : 1623.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 294.22 us (93.7%)
LB move op cnt : 0
LB apply : 4.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (68.8%)
Info: cfl dt = 0.009353998846818248 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3012e+05 | 32768 | 1 | 9.926e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.2511868311734 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3835153699054215, dt = 0.009353998846818248
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (1.9%)
patch tree reduce : 1592.00 ns (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 315.71 us (93.8%)
LB move op cnt : 0
LB apply : 3.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (69.7%)
Info: cfl dt = 0.009353998385449303 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3318e+05 | 32768 | 1 | 7.565e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 445.1585361066825 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39286936875223977, dt = 0.009353998385449303
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.8%)
patch tree reduce : 1833.00 ns (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 314.19 us (93.9%)
LB move op cnt : 0
LB apply : 4.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (73.5%)
Info: cfl dt = 0.009353996820371442 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4178e+05 | 32768 | 1 | 7.417e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 453.99849073784605 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4022233671376891, dt = 0.009353996820371442
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (2.1%)
patch tree reduce : 1563.00 ns (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1413.00 ns (0.5%)
LB compute : 274.79 us (93.1%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.2%)
Info: cfl dt = 0.009353994788429866 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3946e+05 | 32768 | 1 | 7.456e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 451.61737617754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41157736395806055, dt = 0.009353994788429866
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (2.0%)
patch tree reduce : 1943.00 ns (0.6%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1071.00 ns (0.3%)
LB compute : 290.57 us (93.5%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1863.00 ns (65.9%)
Info: cfl dt = 0.009353993931422994 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4235e+05 | 32768 | 1 | 9.571e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 351.8215506402389 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4209313587464904, dt = 0.009353993931422994
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (1.7%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 1202.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1442.00 ns (0.4%)
LB compute : 356.93 us (94.5%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.9%)
Info: cfl dt = 0.009353993234544418 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4670e+05 | 32768 | 1 | 9.451e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 356.2878858127901 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4302853526779134, dt = 0.009353993234544418
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (2.0%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 293.69 us (93.5%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.4%)
Info: cfl dt = 0.009353990970832723 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4611e+05 | 32768 | 1 | 7.345e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 458.44884533429774 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43963934591245785, dt = 0.009353990970832723
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.5%)
patch tree reduce : 1383.00 ns (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 361.93 us (94.8%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (71.1%)
Info: cfl dt = 0.009353989741475248 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5667e+05 | 32768 | 1 | 7.175e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 469.30453746918784 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4489933368832906, dt = 0.009353989741475248
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.6%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 340.16 us (94.6%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (69.8%)
Info: cfl dt = 0.009353989869870316 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5878e+05 | 32768 | 1 | 7.142e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 471.47461047285236 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4583473266247658, dt = 0.009353989869870316
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.7%)
patch tree reduce : 1363.00 ns (0.4%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1553.00 ns (0.5%)
LB compute : 324.03 us (94.1%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (68.7%)
Info: cfl dt = 0.009353987401498322 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4729e+05 | 32768 | 1 | 9.435e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 356.9001494327903 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4677013164946361, dt = 0.009353987401498322
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (2.0%)
patch tree reduce : 1503.00 ns (0.5%)
gen split merge : 1252.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 300.40 us (93.7%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1984.00 ns (65.6%)
Info: cfl dt = 0.009353985820193643 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3986e+05 | 32768 | 1 | 9.641e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 349.2652215593709 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47705530389613443, dt = 0.009353985820193643
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (1.9%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1443.00 ns (0.4%)
LB compute : 334.34 us (93.9%)
LB move op cnt : 0
LB apply : 4.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1974.00 ns (67.9%)
Info: cfl dt = 0.00935398550497466 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3834e+05 | 32768 | 1 | 9.685e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 347.7020605712635 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4864092897163281, dt = 0.00935398550497466
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (2.0%)
patch tree reduce : 1513.00 ns (0.5%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.4%)
LB compute : 294.29 us (93.7%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1853.00 ns (65.8%)
Info: cfl dt = 0.009353983846291462 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3228e+05 | 32768 | 1 | 9.862e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.46718497040695 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49576327522130276, dt = 0.009353983846291462
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (1.9%)
patch tree reduce : 1554.00 ns (0.5%)
gen split merge : 1113.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.4%)
LB compute : 305.70 us (93.6%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.4%)
Info: cfl dt = 0.009353982017661121 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2163e+05 | 32768 | 1 | 7.772e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 433.2929070546258 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5051172590675942, dt = 0.009353982017661121
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (2.0%)
patch tree reduce : 1523.00 ns (0.5%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1363.00 ns (0.4%)
LB compute : 286.77 us (93.3%)
LB move op cnt : 0
LB apply : 4.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (69.3%)
Info: cfl dt = 0.009353981333168686 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4732e+05 | 32768 | 1 | 7.325e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 459.6942093833178 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5144712410852553, dt = 0.009353981333168686
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.9%)
patch tree reduce : 1854.00 ns (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 309.18 us (93.8%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (68.3%)
Info: cfl dt = 0.009353980474210393 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4107e+05 | 32768 | 1 | 9.607e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 350.50646558969794 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.523825222418424, dt = 0.009353980474210393
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (2.0%)
patch tree reduce : 1723.00 ns (0.6%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1193.00 ns (0.4%)
LB compute : 284.91 us (93.3%)
LB move op cnt : 0
LB apply : 3.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (66.8%)
Info: cfl dt = 0.009353978417789465 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4978e+05 | 32768 | 1 | 7.285e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 462.2240567951241 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5331792028926344, dt = 0.009353978417789465
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (2.0%)
patch tree reduce : 1913.00 ns (0.6%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 278.88 us (93.2%)
LB move op cnt : 0
LB apply : 3.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.7%)
Info: cfl dt = 0.009353977388183369 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5759e+05 | 32768 | 1 | 7.161e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 470.2509006835955 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5425331813104239, dt = 0.009353977388183369
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (2.0%)
patch tree reduce : 1592.00 ns (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 282.73 us (93.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (67.9%)
Info: cfl dt = 0.009353977314102488 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5360e+05 | 32768 | 1 | 7.224e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 466.1477046534709 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5518871586986073, dt = 0.009353977314102488
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.7%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 327.56 us (94.3%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.5%)
Info: cfl dt = 0.00935397504346732 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5958e+05 | 32768 | 1 | 7.130e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 472.29620350975785 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5612411360127098, dt = 0.00935397504346732
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (2.0%)
patch tree reduce : 1633.00 ns (0.5%)
gen split merge : 1212.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 280.78 us (93.3%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.8%)
Info: cfl dt = 0.009353973679986693 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5664e+05 | 32768 | 1 | 7.176e-02 | 0.0% | 0.9% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 469.2747135332019 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5705951110561771, dt = 0.009353973679986693
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.8%)
patch tree reduce : 1864.00 ns (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.4%)
LB compute : 304.26 us (93.5%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (71.3%)
Info: cfl dt = 0.009353973555669812 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5647e+05 | 32768 | 1 | 7.179e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 469.09191957630406 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5799490847361638, dt = 0.009353973555669812
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (2.0%)
patch tree reduce : 1552.00 ns (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 292.35 us (93.5%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (66.3%)
Info: cfl dt = 0.009353971736157094 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6733e+05 | 32768 | 1 | 8.921e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 377.48794973515913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5893030582918336, dt = 0.009353971736157094
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.9%)
patch tree reduce : 1473.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.4%)
LB compute : 299.69 us (93.8%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.2%)
Info: cfl dt = 0.009353970105417025 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3901e+05 | 32768 | 1 | 9.666e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 348.39123078427696 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5986570300279906, dt = 0.009353970105417025
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (2.0%)
patch tree reduce : 1472.00 ns (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 301.66 us (94.0%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1783.00 ns (64.0%)
Info: cfl dt = 0.009353969617749865 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4081e+05 | 32768 | 1 | 7.434e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 453.003121751493 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6080110001334077, dt = 0.009353969617749865
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.8%)
patch tree reduce : 1573.00 ns (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.4%)
LB compute : 296.70 us (93.9%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (67.0%)
Info: cfl dt = 0.00935396854934411 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5303e+05 | 32768 | 1 | 7.233e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 465.56447558721345 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6173649697511575, dt = 0.00935396854934411
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.3%)
patch tree reduce : 1843.00 ns (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1563.00 ns (0.5%)
LB compute : 276.30 us (92.9%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (66.6%)
Info: cfl dt = 0.00935396669532592 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5994e+05 | 32768 | 1 | 7.124e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 472.6594545373145 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6267189383005016, dt = 0.00935396669532592
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (1.8%)
patch tree reduce : 1703.00 ns (0.5%)
gen split merge : 1152.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.3%)
LB compute : 321.64 us (93.3%)
LB move op cnt : 0
LB apply : 4.73 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.5%)
Info: cfl dt = 0.009353965878050199 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5414e+05 | 32768 | 1 | 7.215e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 466.7013504882786 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6360729049958276, dt = 0.009353965878050199
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.2%)
patch tree reduce : 1733.00 ns (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.4%)
LB compute : 268.95 us (93.0%)
LB move op cnt : 0
LB apply : 3.65 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (68.4%)
Info: cfl dt = 0.009353965555511826 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5427e+05 | 32768 | 1 | 7.213e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 466.8374327088883 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6454268708738777, dt = 0.009353965555511826
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.9%)
patch tree reduce : 1423.00 ns (0.4%)
gen split merge : 1172.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.4%)
LB compute : 303.64 us (93.7%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (70.6%)
Info: cfl dt = 0.009353963491904588 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5835e+05 | 32768 | 1 | 7.149e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 471.02899576742595 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6547808364293896, dt = 0.009353963491904588
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.8%)
patch tree reduce : 1523.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1153.00 ns (0.4%)
LB compute : 289.65 us (93.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (67.0%)
Info: cfl dt = 0.009353962358539462 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5763e+05 | 32768 | 1 | 7.160e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 470.28475380462015 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6641347999212941, dt = 0.009353962358539462
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (2.1%)
patch tree reduce : 1513.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.4%)
LB compute : 274.50 us (93.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.0%)
Info: cfl dt = 0.009353962473571006 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5284e+05 | 32768 | 1 | 7.236e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 465.36345411150876 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6734887622798336, dt = 0.009353962473571006
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (2.1%)
patch tree reduce : 1563.00 ns (0.5%)
gen split merge : 1323.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.4%)
LB compute : 280.88 us (93.3%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1903.00 ns (65.5%)
Info: cfl dt = 0.00935396044663836 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4269e+05 | 32768 | 1 | 9.562e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 352.17063901008913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6828427247534046, dt = 0.00935396044663836
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.0%)
patch tree reduce : 1563.00 ns (0.3%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1353.00 ns (0.2%)
LB compute : 586.68 us (96.7%)
LB move op cnt : 0
LB apply : 3.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (67.9%)
Info: cfl dt = 0.009353959024287557 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7218e+05 | 32768 | 1 | 8.804e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 382.4703354397068 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.692196685200043, dt = 0.009353959024287557
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.8%)
patch tree reduce : 1513.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 314.78 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.90 us (65.2%)
Info: cfl dt = 0.009353958763348437 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5719e+05 | 32768 | 1 | 7.167e-02 | 0.0% | 0.9% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 469.8383651421112 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7015506442243306, dt = 0.009353958763348437
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.9%)
patch tree reduce : 1954.00 ns (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.4%)
LB compute : 314.16 us (93.9%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (69.3%)
Info: cfl dt = 0.009353957439416364 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5148e+05 | 32768 | 1 | 7.258e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 463.9621407854915 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.710904602987679, dt = 0.009353957439416364
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.9%)
patch tree reduce : 1482.00 ns (0.4%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 316.16 us (94.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (70.5%)
Info: cfl dt = 0.009353955794545508 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4936e+05 | 32768 | 1 | 7.292e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 461.7849276240177 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7202585604270954, dt = 0.009353955794545508
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.4%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 360.58 us (94.8%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (66.8%)
Info: cfl dt = 0.009353955216079877 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4302e+05 | 32768 | 1 | 7.397e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 455.26785800362546 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7296125162216408, dt = 0.009353955216079877
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.9%)
patch tree reduce : 1503.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 : 304.80 us (93.9%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.0%)
Info: cfl dt = 0.009353954595174846 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5647e+05 | 32768 | 1 | 9.192e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 366.3265340237749 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7389664714377207, dt = 0.009353954595174846
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.2%)
patch tree reduce : 1492.00 ns (0.5%)
gen split merge : 1303.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.4%)
LB compute : 273.79 us (93.0%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1884.00 ns (65.8%)
Info: cfl dt = 0.009353952744835447 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4282e+05 | 32768 | 1 | 9.558e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 352.3031148782296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7483204260328955, dt = 0.009353952744835447
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.8%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 20.79 us (6.3%)
split / merge op : 0/0
apply split merge : 1513.00 ns (0.5%)
LB compute : 291.14 us (87.9%)
LB move op cnt : 0
LB apply : 3.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1984.00 ns (67.6%)
Info: cfl dt = 0.009353951862272022 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4075e+05 | 32768 | 1 | 7.435e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 452.9390949356715 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7576743787777309, dt = 0.009353951862272022
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (2.1%)
patch tree reduce : 1523.00 ns (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1292.00 ns (0.4%)
LB compute : 288.55 us (93.3%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (66.2%)
Info: cfl dt = 0.009353951940225312 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7345e+05 | 32768 | 1 | 8.774e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 383.78211898933574 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.767028330640003, dt = 0.009353951940225312
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.0%)
patch tree reduce : 1823.00 ns (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1263.00 ns (0.4%)
LB compute : 299.52 us (93.3%)
LB move op cnt : 0
LB apply : 4.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.7%)
Info: cfl dt = 0.009353949893704576 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4267e+05 | 32768 | 1 | 9.563e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 352.14485699909454 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7763822825802282, dt = 0.009353949893704576
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (2.0%)
patch tree reduce : 1693.00 ns (0.6%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.4%)
LB compute : 278.80 us (93.2%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (69.3%)
Info: cfl dt = 0.009353948714124975 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5117e+05 | 32768 | 1 | 9.331e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 360.87768491408843 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7857362324739328, dt = 0.009353948714124975
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (2.0%)
patch tree reduce : 1783.00 ns (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.4%)
LB compute : 276.31 us (93.2%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1894.00 ns (67.3%)
Info: cfl dt = 0.009353948725391857 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4500e+05 | 32768 | 1 | 7.364e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 457.3039832105015 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7950901811880577, dt = 0.009353948725391857
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (2.0%)
patch tree reduce : 1592.00 ns (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 281.47 us (93.5%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1953.00 ns (64.8%)
Info: cfl dt = 0.009353947093186417 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4527e+05 | 32768 | 1 | 9.491e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 354.8193707779139 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8044441299134496, dt = 0.009353947093186417
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.9%)
patch tree reduce : 1643.00 ns (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.4%)
LB compute : 275.88 us (93.5%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1933.00 ns (65.6%)
Info: cfl dt = 0.009353945669028196 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6764e+05 | 32768 | 1 | 8.913e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 377.80958124556446 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.813798077006636, dt = 0.009353945669028196
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.7%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 1031.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 323.03 us (94.2%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (69.4%)
Info: cfl dt = 0.009353945349011253 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4460e+05 | 32768 | 1 | 7.370e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 456.8995167795445 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8231520226756641, dt = 0.009353945349011253
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.1%)
patch tree reduce : 1673.00 ns (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 311.25 us (93.7%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.7%)
Info: cfl dt = 0.009353944392502679 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5067e+05 | 32768 | 1 | 9.344e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 360.3692920347578 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8325059680246754, dt = 0.009353944392502679
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.7%)
patch tree reduce : 1753.00 ns (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 306.53 us (94.1%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (70.4%)
Info: cfl dt = 0.00935394275937207 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3152e+05 | 32768 | 1 | 7.594e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 443.4548604506857 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8418599124171781, dt = 0.00935394275937207
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.8%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 336.11 us (94.3%)
LB move op cnt : 0
LB apply : 4.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.5%)
Info: cfl dt = 0.009353942137629934 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7286e+05 | 32768 | 1 | 8.788e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 383.17217206267486 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8512138551765501, dt = 0.009353942137629934
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.1%)
patch tree reduce : 1563.00 ns (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 296.09 us (93.4%)
LB move op cnt : 0
LB apply : 4.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1803.00 ns (62.9%)
Info: cfl dt = 0.009353941858104228 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8474e+05 | 32768 | 1 | 8.517e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 395.3787712169716 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8605677973141801, dt = 0.009353941858104228
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.8%)
patch tree reduce : 1543.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.4%)
LB compute : 297.42 us (93.7%)
LB move op cnt : 0
LB apply : 4.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (65.4%)
Info: cfl dt = 0.009353940027368775 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1538e+05 | 32768 | 1 | 1.039e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.09870928978364 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8699217391722843, dt = 0.009353940027368775
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (2.0%)
patch tree reduce : 1884.00 ns (0.6%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1393.00 ns (0.4%)
LB compute : 295.00 us (93.4%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (68.4%)
Info: cfl dt = 0.009353939111858564 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2127e+05 | 32768 | 1 | 1.020e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 330.15462560904064 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8792756791996531, dt = 0.009353939111858564
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.7%)
patch tree reduce : 1532.00 ns (0.5%)
gen split merge : 1031.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1053.00 ns (0.3%)
LB compute : 318.33 us (94.1%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.9%)
Info: cfl dt = 0.009353939429925445 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2656e+05 | 32768 | 1 | 1.003e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.5925043771678 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8886296183115117, dt = 0.009353939429925445
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.8%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 1142.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1373.00 ns (0.4%)
LB compute : 300.49 us (93.9%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (66.1%)
Info: cfl dt = 0.009353937468471782 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2682e+05 | 32768 | 1 | 1.003e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.8549474688319 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8979835577414371, dt = 0.009353937468471782
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.1%)
patch tree reduce : 1453.00 ns (0.5%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 299.48 us (93.6%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1823.00 ns (64.3%)
Info: cfl dt = 0.009353936269104364 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2626e+05 | 32768 | 1 | 1.004e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.2826924665237 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9073374952099089, dt = 0.009353936269104364
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.6%)
patch tree reduce : 1904.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 : 360.82 us (94.7%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (69.6%)
Info: cfl dt = 0.009353936211637347 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2672e+05 | 32768 | 1 | 1.003e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.75043275259395 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9166914314790133, dt = 0.009353936211637347
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.7%)
patch tree reduce : 1532.00 ns (0.4%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1412.00 ns (0.4%)
LB compute : 333.22 us (94.4%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (68.4%)
Info: cfl dt = 0.009353934895751008 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2295e+05 | 32768 | 1 | 1.015e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 331.87745213481844 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9260453676906507, dt = 0.009353934895751008
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.6%)
patch tree reduce : 1723.00 ns (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 351.18 us (94.5%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (70.0%)
Info: cfl dt = 0.009353933479267877 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3126e+05 | 32768 | 1 | 9.892e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.4225327542724 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9353993025864017, dt = 0.009353933479267877
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.7%)
patch tree reduce : 1693.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 334.67 us (94.3%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (66.3%)
Info: cfl dt = 0.009353933118100078 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3098e+05 | 32768 | 1 | 9.900e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.13658332182706 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9447532360656695, dt = 0.009353933118100078
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.4%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 376.22 us (95.0%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (70.0%)
Info: cfl dt = 0.009353932459237014 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2077e+05 | 32768 | 1 | 1.022e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.63586915798976 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9541071691837696, dt = 0.009353932459237014
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (1.6%)
patch tree reduce : 1784.00 ns (0.5%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 370.70 us (94.6%)
LB move op cnt : 0
LB apply : 4.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.6%)
Info: cfl dt = 0.009353930842317077 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2394e+05 | 32768 | 1 | 1.012e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.90017679941394 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9634611016430066, dt = 0.009353930842317077
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.5%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 365.65 us (94.7%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (69.0%)
Info: cfl dt = 0.009353930188359708 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3158e+05 | 32768 | 1 | 9.882e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.7457568250842 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9728150324853236, dt = 0.009353930188359708
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.4%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 1203.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.3%)
LB compute : 412.50 us (95.3%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (72.5%)
Info: cfl dt = 0.009353930189055431 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2590e+05 | 32768 | 1 | 1.005e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.91654328243067 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9821689626736834, dt = 0.009353930189055431
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.8%)
patch tree reduce : 1453.00 ns (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1303.00 ns (0.4%)
LB compute : 295.86 us (93.9%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (67.1%)
Info: cfl dt = 0.00935392837860284 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3155e+05 | 32768 | 1 | 9.883e-02 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.71543490968196 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9915228928627388, dt = 0.008477107137261242
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 1302.00 ns (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 321.68 us (94.4%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (70.7%)
Info: cfl dt = 0.009353927494690238 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2687e+05 | 32768 | 1 | 1.002e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 304.4257792197274 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 94.24367182200001 (s) [Godunov][rank=0]
Info: pushing data in scheduler, N = 4096 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 1169.04 us [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: Compute load ... [DataInserterUtility][rank=0]
Info: run scheduler step ... [DataInserterUtility][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (59.2%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1363.00 ns (0.5%)
patch tree reduce : 1333.00 ns (0.4%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 290.60 us (96.4%)
LB move op cnt : 0
LB apply : 3.09 us (1.0%)
Info: patch count stable after 1 runs npatch = 1 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: time since start : 94.320546953 (s) [Godunov][rank=0]
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.21 us (2.4%)
patch tree reduce : 1873.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 320.17 us (93.4%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (68.0%)
Info: cfl dt = 0.009354083528780794 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0639e+05 | 32768 | 1 | 1.069e-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.009354083528780794
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.7%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.4%)
LB compute : 342.75 us (94.5%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (69.0%)
Info: cfl dt = 0.009354072778192094 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0616e+05 | 32768 | 1 | 1.070e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 314.63168143935906 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009354083528780794, dt = 0.009354072778192094
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.9%)
patch tree reduce : 1453.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.4%)
LB compute : 296.86 us (93.8%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1883.00 ns (66.4%)
Info: cfl dt = 0.009354070025152395 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0974e+05 | 32768 | 1 | 1.058e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.3087180296238 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018708156306972888, dt = 0.006291843693027113
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (1.9%)
patch tree reduce : 1462.00 ns (0.4%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1213.00 ns (0.4%)
LB compute : 310.68 us (93.7%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.9%)
Info: cfl dt = 0.009354069892516555 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0362e+05 | 32768 | 1 | 1.079e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 209.87173755360894 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 94.768754345 (s) [Godunov][rank=0]
amr::Godunov: t = 0.025, dt = 0.009354069892516555
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.89 us (2.2%)
patch tree reduce : 1984.00 ns (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 331.26 us (93.7%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (69.3%)
Info: cfl dt = 0.009354065311255261 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0099e+05 | 32768 | 1 | 1.089e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 309.3157035770501 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034354069892516555, dt = 0.009354065311255261
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.7%)
patch tree reduce : 1563.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1163.00 ns (0.4%)
LB compute : 304.00 us (93.9%)
LB move op cnt : 0
LB apply : 3.74 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.8%)
Info: cfl dt = 0.009354061378167551 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0091e+05 | 32768 | 1 | 1.089e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 309.23407963538267 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.043708135203771814, dt = 0.006291864796228189
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.6%)
patch tree reduce : 1794.00 ns (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.3%)
LB compute : 329.57 us (94.2%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.1%)
Info: cfl dt = 0.009354060292255313 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9637e+05 | 32768 | 1 | 1.106e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 204.86145124004636 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 95.117990695 (s) [Godunov][rank=0]
amr::Godunov: t = 0.05, dt = 0.009354060292255313
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.96 us (2.3%)
patch tree reduce : 1834.00 ns (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1312.00 ns (0.4%)
LB compute : 318.77 us (93.5%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1954.00 ns (66.3%)
Info: cfl dt = 0.009354059237287524 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0570e+05 | 32768 | 1 | 1.072e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 314.158884965548 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05935406029225532, dt = 0.009354059237287524
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.6%)
patch tree reduce : 1784.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 327.58 us (94.2%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (69.2%)
Info: cfl dt = 0.009354055074257444 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1115e+05 | 32768 | 1 | 1.053e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 319.755231649588 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06870811952954284, dt = 0.006291880470457173
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.8%)
patch tree reduce : 1573.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 299.62 us (93.7%)
LB move op cnt : 0
LB apply : 4.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (67.5%)
Info: cfl dt = 0.00935405332060999 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0819e+05 | 32768 | 1 | 1.063e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 213.03703901299673 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 95.457334738 (s) [Godunov][rank=0]
amr::Godunov: t = 0.07500000000000001, dt = 0.00935405332060999
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.93 us (2.3%)
patch tree reduce : 1743.00 ns (0.5%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 362.01 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.26 us (68.3%)
Info: cfl dt = 0.00935405240457556 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1106e+05 | 32768 | 1 | 1.053e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 319.6641691822441 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08435405332061, dt = 0.00935405240457556
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.7%)
patch tree reduce : 1683.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 294.62 us (94.0%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1963.00 ns (66.4%)
Info: cfl dt = 0.00935404982891197 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1008e+05 | 32768 | 1 | 1.057e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.6539364951049 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09370810572518555, dt = 0.006291894274814455
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 1011.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 300.33 us (94.0%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1923.00 ns (66.0%)
Info: cfl dt = 0.00935404770116929 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0400e+05 | 32768 | 1 | 1.078e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 210.13883857257338 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 95.796748733 (s) [Godunov][rank=0]
amr::Godunov: t = 0.1, dt = 0.00935404770116929
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.41 us (2.1%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 1002.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 383.82 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.41 us (70.9%)
Info: cfl dt = 0.00935404591278391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.4210e+05 | 32768 | 1 | 1.353e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 248.79680721117433 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1093540477011693, dt = 0.00935404591278391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.97 us (6.8%)
patch tree reduce : 1824.00 ns (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 327.90 us (89.2%)
LB move op cnt : 0
LB apply : 4.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.5%)
Info: cfl dt = 0.009354045694705992 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.2305e+05 | 32768 | 1 | 1.469e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 229.2256074701466 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11870809361395321, dt = 0.006291906386046792
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.8%)
patch tree reduce : 1572.00 ns (0.5%)
gen split merge : 993.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.4%)
LB compute : 301.38 us (93.7%)
LB move op cnt : 0
LB apply : 4.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (66.5%)
Info: cfl dt = 0.009354043260848795 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9792e+05 | 32768 | 1 | 1.100e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 205.93473839268933 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 96.209890359 (s) [Godunov][rank=0]
amr::Godunov: t = 0.125, dt = 0.009354043260848795
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.14 us (2.0%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 384.57 us (94.5%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (68.3%)
Info: cfl dt = 0.00935404054999176 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9949e+05 | 32768 | 1 | 1.094e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 307.7792713675474 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1343540432608488, dt = 0.00935404054999176
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.6%)
patch tree reduce : 1703.00 ns (0.5%)
gen split merge : 1333.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 356.53 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.48 us (66.1%)
Info: cfl dt = 0.009354039578543683 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9585e+05 | 32768 | 1 | 1.108e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 304.0398175730209 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14370808381084055, dt = 0.006291916189159474
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.8%)
patch tree reduce : 1493.00 ns (0.5%)
gen split merge : 1013.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.4%)
LB compute : 307.68 us (93.6%)
LB move op cnt : 0
LB apply : 4.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (69.4%)
Info: cfl dt = 0.009354039463584634 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9502e+05 | 32768 | 1 | 1.111e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 203.93372905508417 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 96.562066411 (s) [Godunov][rank=0]
amr::Godunov: t = 0.15000000000000002, dt = 0.009354039463584634
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.18 us (2.2%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1372.00 ns (0.4%)
LB compute : 348.57 us (93.9%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (67.1%)
Info: cfl dt = 0.009354036160859757 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9726e+05 | 32768 | 1 | 1.102e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 305.4799038335703 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15935403946358465, dt = 0.009354036160859757
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.0%)
patch tree reduce : 1392.00 ns (0.4%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 305.86 us (93.6%)
LB move op cnt : 0
LB apply : 3.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.3%)
Info: cfl dt = 0.009354034177637329 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9435e+05 | 32768 | 1 | 1.113e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 302.4900273606171 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1687080756244444, dt = 0.006291924375555619
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (1.8%)
patch tree reduce : 1754.00 ns (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 333.33 us (94.0%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (70.2%)
Info: cfl dt = 0.009354033778184391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9431e+05 | 32768 | 1 | 1.113e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 203.44517783901304 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 96.91582116900001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.17500000000000002, dt = 0.009354033778184391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.30 us (2.4%)
patch tree reduce : 1993.00 ns (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.3%)
LB compute : 320.29 us (93.3%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (69.1%)
Info: cfl dt = 0.009354032245833819 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9335e+05 | 32768 | 1 | 1.117e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 301.46213046921895 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1843540337781844, dt = 0.009354032245833819
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (1.9%)
patch tree reduce : 1794.00 ns (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 306.85 us (93.7%)
LB move op cnt : 0
LB apply : 3.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (66.7%)
Info: cfl dt = 0.00935402955142423 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9323e+05 | 32768 | 1 | 1.117e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 301.3395964398709 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19370806602401822, dt = 0.006291933975981795
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.8%)
patch tree reduce : 1623.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 305.20 us (94.0%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (66.4%)
Info: cfl dt = 0.009354028542815121 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9108e+05 | 32768 | 1 | 1.126e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 201.21237621475888 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 97.27273752400001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.2, dt = 0.009354028542815121
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.02 us (2.3%)
patch tree reduce : 1562.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 323.69 us (93.6%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1893.00 ns (64.9%)
Info: cfl dt = 0.009354028427680811 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9558e+05 | 32768 | 1 | 1.109e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 303.7538126098457 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20935402854281512, dt = 0.009354028427680811
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.8%)
patch tree reduce : 1482.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1382.00 ns (0.4%)
LB compute : 302.57 us (93.9%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.5%)
Info: cfl dt = 0.009354025736827832 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0006e+05 | 32768 | 1 | 1.092e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.35922465515193 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21870805697049595, dt = 0.00629194302950406
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.7%)
patch tree reduce : 1693.00 ns (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 327.38 us (94.4%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.9%)
Info: cfl dt = 0.009354024210839024 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9626e+05 | 32768 | 1 | 1.106e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 204.7914215151109 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 97.62407191300001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.225, dt = 0.009354024210839024
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.83 us (2.2%)
patch tree reduce : 1482.00 ns (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1473.00 ns (0.4%)
LB compute : 328.36 us (93.7%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.1%)
Info: cfl dt = 0.009354023047931922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8992e+05 | 32768 | 1 | 1.130e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 297.9370696454276 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23435402421083903, dt = 0.009354023047931922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.0%)
patch tree reduce : 1784.00 ns (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.4%)
LB compute : 303.54 us (93.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (68.0%)
Info: cfl dt = 0.009354022373049758 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9303e+05 | 32768 | 1 | 1.118e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 301.13792331826835 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24370804725877096, dt = 0.00629195274122904
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.8%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1563.00 ns (0.4%)
LB compute : 330.45 us (94.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (68.9%)
Info: cfl dt = 0.009354020524772362 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9341e+05 | 32768 | 1 | 1.117e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 202.82413515400066 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 97.981255644 (s) [Godunov][rank=0]
amr::Godunov: t = 0.25, dt = 0.009354020524772362
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.15 us (2.3%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 333.70 us (93.7%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.4%)
Info: cfl dt = 0.009354018506916582 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9451e+05 | 32768 | 1 | 1.113e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 302.6607389939421 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.25935402052477236, dt = 0.009354018506916582
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.7%)
patch tree reduce : 1552.00 ns (0.5%)
gen split merge : 1153.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 324.38 us (94.1%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.6%)
Info: cfl dt = 0.009354017916849065 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0031e+05 | 32768 | 1 | 1.091e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.6212748217203 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26870803903168894, dt = 0.006291960968311083
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.7%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 1332.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.4%)
LB compute : 330.57 us (94.0%)
LB move op cnt : 0
LB apply : 4.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (71.8%)
Info: cfl dt = 0.0093540173683874 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9709e+05 | 32768 | 1 | 1.103e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 205.3637718125894 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 98.332235435 (s) [Godunov][rank=0]
amr::Godunov: t = 0.275, dt = 0.0093540173683874
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.80 us (2.2%)
patch tree reduce : 1734.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 327.94 us (93.9%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (71.3%)
Info: cfl dt = 0.009354014745202578 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9707e+05 | 32768 | 1 | 1.103e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 305.2828550058139 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28435401736838745, dt = 0.009354014745202578
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.0%)
patch tree reduce : 1754.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 309.72 us (93.6%)
LB move op cnt : 0
LB apply : 4.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1854.00 ns (67.1%)
Info: cfl dt = 0.00935401324174287 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9781e+05 | 32768 | 1 | 1.100e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 306.04322895354727 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29370803211359003, dt = 0.00629196788641001
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.9%)
patch tree reduce : 1753.00 ns (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 295.76 us (93.7%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1984.00 ns (65.3%)
Info: cfl dt = 0.00935401302083272 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0017e+05 | 32768 | 1 | 1.092e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 207.49706986094657 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 98.68228129900001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.30000000000000004, dt = 0.00935401302083272
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.10 us (2.3%)
patch tree reduce : 1784.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 324.99 us (93.6%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (69.9%)
Info: cfl dt = 0.00935401137654273 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9763e+05 | 32768 | 1 | 1.101e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 305.8663548622258 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30935401302083276, dt = 0.00935401137654273
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.8%)
patch tree reduce : 1492.00 ns (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1041.00 ns (0.3%)
LB compute : 294.09 us (93.9%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1834.00 ns (65.4%)
Info: cfl dt = 0.00935400919612815 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9893e+05 | 32768 | 1 | 1.096e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 307.19582385867903 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3187080243973755, dt = 0.006291975602624511
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.8%)
patch tree reduce : 1523.00 ns (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 293.56 us (93.9%)
LB move op cnt : 0
LB apply : 3.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1903.00 ns (66.9%)
Info: cfl dt = 0.00935400841715462 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0010e+05 | 32768 | 1 | 1.092e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 207.44462674460254 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 99.03217426900001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.325, dt = 0.00935400841715462
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.04 us (2.3%)
patch tree reduce : 1863.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1051.00 ns (0.3%)
LB compute : 322.61 us (93.5%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (71.7%)
Info: cfl dt = 0.009354008459678907 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0091e+05 | 32768 | 1 | 1.089e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 309.23888353274884 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3343540084171546, dt = 0.009354008459678907
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.6%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 332.95 us (94.5%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.8%)
Info: cfl dt = 0.009354005837511337 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9786e+05 | 32768 | 1 | 1.100e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 306.0993794448819 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.34370801687683356, dt = 0.006291983123166478
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.8%)
patch tree reduce : 1462.00 ns (0.4%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1233.00 ns (0.4%)
LB compute : 309.61 us (94.1%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1863.00 ns (64.1%)
Info: cfl dt = 0.00935400457335981 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9835e+05 | 32768 | 1 | 1.098e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 206.23986379456562 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 99.381648072 (s) [Godunov][rank=0]
amr::Godunov: t = 0.35000000000000003, dt = 0.00935400457335981
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.49 us (2.4%)
patch tree reduce : 1904.00 ns (0.5%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 332.54 us (93.5%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (70.7%)
Info: cfl dt = 0.009354003672931025 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9596e+05 | 32768 | 1 | 1.107e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 304.14965921953575 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35935400457335986, dt = 0.009354003672931025
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.5%)
patch tree reduce : 1552.00 ns (0.4%)
gen split merge : 1272.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 359.40 us (94.6%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (69.2%)
Info: cfl dt = 0.009354002783386814 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9878e+05 | 32768 | 1 | 1.097e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 307.04515855934807 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3687080082462909, dt = 0.006291991753709092
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (2.0%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1153.00 ns (0.4%)
LB compute : 299.39 us (93.5%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1723.00 ns (65.4%)
Info: cfl dt = 0.009354001190722014 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9950e+05 | 32768 | 1 | 1.094e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 207.03161978492227 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 99.73311514800001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.375, dt = 0.009354001190722014
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.79 us (2.0%)
patch tree reduce : 1733.00 ns (0.4%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 371.44 us (94.4%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (69.4%)
Info: cfl dt = 0.009353999536786868 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0089e+05 | 32768 | 1 | 1.089e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 309.2173078531369 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.384354001190722, dt = 0.009353999536786868
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.6%)
patch tree reduce : 1492.00 ns (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1183.00 ns (0.3%)
LB compute : 348.96 us (94.5%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (69.0%)
Info: cfl dt = 0.009353999186884482 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0304e+05 | 32768 | 1 | 1.081e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.42418783867447 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3937080007275089, dt = 0.006291999272491133
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (1.8%)
patch tree reduce : 1773.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1273.00 ns (0.3%)
LB compute : 357.62 us (94.2%)
LB move op cnt : 0
LB apply : 4.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (66.9%)
Info: cfl dt = 0.0093539983443255 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0244e+05 | 32768 | 1 | 1.083e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 209.06636029250978 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 100.079458223 (s) [Godunov][rank=0]
amr::Godunov: t = 0.4, dt = 0.0093539983443255
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.47 us (2.4%)
patch tree reduce : 1814.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 330.01 us (93.3%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (68.3%)
Info: cfl dt = 0.009353996080800371 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0223e+05 | 32768 | 1 | 1.084e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 310.59144500173505 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4093539983443255, dt = 0.009353996080800371
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.0%)
patch tree reduce : 1803.00 ns (0.6%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1071.00 ns (0.3%)
LB compute : 302.18 us (93.4%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (69.5%)
Info: cfl dt = 0.009353994888999738 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9862e+05 | 32768 | 1 | 1.097e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 306.87953061330956 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4187079944251259, dt = 0.006292005574874138
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.8%)
patch tree reduce : 1703.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1243.00 ns (0.4%)
LB compute : 300.67 us (93.9%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.2%)
Info: cfl dt = 0.009353994828784592 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9484e+05 | 32768 | 1 | 1.111e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 203.81423481209671 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 100.430054878 (s) [Godunov][rank=0]
amr::Godunov: t = 0.42500000000000004, dt = 0.009353994828784592
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.94 us (2.3%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 361.97 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.10 us (66.3%)
Info: cfl dt = 0.009353993037649421 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9936e+05 | 32768 | 1 | 1.095e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 307.6399712087962 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4343539948287846, dt = 0.009353993037649421
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (2.0%)
patch tree reduce : 1673.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 293.96 us (93.4%)
LB move op cnt : 0
LB apply : 4.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.4%)
Info: cfl dt = 0.009353991176023695 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9741e+05 | 32768 | 1 | 1.102e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 305.64074190144703 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44370798786643406, dt = 0.00629201213356595
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (1.7%)
patch tree reduce : 1592.00 ns (0.4%)
gen split merge : 1092.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1051.00 ns (0.3%)
LB compute : 343.90 us (94.2%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (68.3%)
Info: cfl dt = 0.009353990577706379 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9038e+05 | 32768 | 1 | 1.128e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 200.72618196561265 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 100.783692998 (s) [Godunov][rank=0]
amr::Godunov: t = 0.45, dt = 0.009353990577706379
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.41 us (2.5%)
patch tree reduce : 1793.00 ns (0.5%)
gen split merge : 1292.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1041.00 ns (0.3%)
LB compute : 319.35 us (93.2%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (65.8%)
Info: cfl dt = 0.009353990416396394 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9519e+05 | 32768 | 1 | 1.110e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 303.352432957922 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4593539905777064, dt = 0.009353990416396394
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 2.14 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 : 318.76 us (94.0%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (68.1%)
Info: cfl dt = 0.00935398804415395 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9258e+05 | 32768 | 1 | 1.120e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 300.66997764667013 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46870798099410277, dt = 0.006292019005897265
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.7%)
patch tree reduce : 1633.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 330.92 us (94.2%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (70.4%)
Info: cfl dt = 0.009353986988530632 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.3090e+05 | 32768 | 1 | 1.419e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 159.61059240618113 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 101.169415431 (s) [Godunov][rank=0]
amr::Godunov: t = 0.47500000000000003, dt = 0.009353986988530632
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.33 us (0.8%)
patch tree reduce : 1703.00 ns (0.2%)
gen split merge : 1012.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1362.00 ns (0.1%)
LB compute : 1048.60 us (97.9%)
LB move op cnt : 0
LB apply : 3.92 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (71.0%)
Info: cfl dt = 0.009353986371554457 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3055e+05 | 32768 | 1 | 9.913e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.69380283718596 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48435398698853066, dt = 0.009353986371554457
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.8%)
patch tree reduce : 1753.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 327.03 us (93.9%)
LB move op cnt : 0
LB apply : 4.54 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (66.9%)
Info: cfl dt = 0.009353985224002697 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2238e+05 | 32768 | 1 | 7.758e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 434.06106878859197 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4937079733600851, dt = 0.006292026639914905
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.6%)
patch tree reduce : 1693.00 ns (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 331.21 us (94.3%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (66.6%)
Info: cfl dt = 0.009353983838839112 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2057e+05 | 32768 | 1 | 7.791e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 290.72601148918966 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 101.472977837 (s) [Godunov][rank=0]
amr::Godunov: t = 0.5, dt = 0.009353983838839112
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.12 us (2.4%)
patch tree reduce : 1874.00 ns (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.4%)
LB compute : 314.30 us (93.3%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (70.1%)
Info: cfl dt = 0.009353982506214109 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2772e+05 | 32768 | 1 | 7.661e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 439.54807883022767 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5093539838388391, dt = 0.009353982506214109
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.8%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 329.36 us (94.1%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (70.3%)
Info: cfl dt = 0.009353982424429953 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3027e+05 | 32768 | 1 | 7.616e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 442.16635213089364 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5187079663450532, dt = 0.006292033654946794
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.6%)
patch tree reduce : 1753.00 ns (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 334.17 us (94.4%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (68.1%)
Info: cfl dt = 0.009353981228463678 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0413e+05 | 32768 | 1 | 8.108e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 279.362669921479 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 101.721571706 (s) [Godunov][rank=0]
amr::Godunov: t = 0.525, dt = 0.009353981228463678
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.06 us (2.0%)
patch tree reduce : 1824.00 ns (0.4%)
gen split merge : 1272.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 381.40 us (93.8%)
LB move op cnt : 0
LB apply : 4.80 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (72.6%)
Info: cfl dt = 0.009353979269034576 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1568e+05 | 32768 | 1 | 7.883e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 427.1736382613451 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5343539812284637, dt = 0.009353979269034576
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.7%)
patch tree reduce : 1583.00 ns (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 318.73 us (94.2%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.0%)
Info: cfl dt = 0.00935397837961644 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9791e+05 | 32768 | 1 | 1.100e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 306.14776454037343 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5437079604974983, dt = 0.0062920395025017894
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (2.0%)
patch tree reduce : 1503.00 ns (0.5%)
gen split merge : 1011.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1383.00 ns (0.4%)
LB compute : 296.35 us (93.6%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1813.00 ns (65.1%)
Info: cfl dt = 0.009353978517217844 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9442e+05 | 32768 | 1 | 1.113e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 203.52471527776638 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 102.03628104100001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.55, dt = 0.009353978517217844
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.20 us (2.4%)
patch tree reduce : 1462.00 ns (0.4%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 325.92 us (93.5%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (72.7%)
Info: cfl dt = 0.009353976491011369 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9601e+05 | 32768 | 1 | 1.107e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 304.1951020611964 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5593539785172179, dt = 0.009353976491011369
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.9%)
patch tree reduce : 1973.00 ns (0.6%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.4%)
LB compute : 308.32 us (93.3%)
LB move op cnt : 0
LB apply : 4.56 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (67.0%)
Info: cfl dt = 0.009353974929746793 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9537e+05 | 32768 | 1 | 1.109e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 303.54185213007037 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5687079550082292, dt = 0.006292044991770829
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (1.7%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 344.60 us (94.1%)
LB move op cnt : 0
LB apply : 4.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (67.1%)
Info: cfl dt = 0.009353974520405763 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9698e+05 | 32768 | 1 | 1.103e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 205.29292710304298 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 102.38958341600001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.5750000000000001, dt = 0.009353974520405763
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.88 us (2.3%)
patch tree reduce : 1684.00 ns (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1402.00 ns (0.4%)
LB compute : 318.52 us (93.4%)
LB move op cnt : 0
LB apply : 3.98 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (65.9%)
Info: cfl dt = 0.009353973987258622 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9834e+05 | 32768 | 1 | 1.098e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 306.59405793724943 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5843539745204058, dt = 0.009353973987258622
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.7%)
patch tree reduce : 1873.00 ns (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 319.94 us (94.0%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (68.4%)
Info: cfl dt = 0.009353971924770858 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9489e+05 | 32768 | 1 | 1.111e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 303.04835900213493 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5937079485076644, dt = 0.006292051492335693
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.8%)
patch tree reduce : 1473.00 ns (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.4%)
LB compute : 304.60 us (94.0%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (66.9%)
Info: cfl dt = 0.009353971082196886 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9532e+05 | 32768 | 1 | 1.110e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 204.14167373541105 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 102.74173325000001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.6000000000000001, dt = 0.009353971082196886
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.75 us (2.4%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1143.00 ns (0.3%)
LB compute : 337.70 us (93.3%)
LB move op cnt : 0
LB apply : 4.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.5%)
Info: cfl dt = 0.00935397078765531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9306e+05 | 32768 | 1 | 1.118e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 301.1658675974434 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.609353971082197, dt = 0.00935397078765531
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.9%)
patch tree reduce : 1934.00 ns (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 295.22 us (93.7%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (67.0%)
Info: cfl dt = 0.00935396931431454 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9723e+05 | 32768 | 1 | 1.102e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 305.44744739011406 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6187079418698523, dt = 0.00629205813014766
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.9%)
patch tree reduce : 1883.00 ns (0.6%)
gen split merge : 1031.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1362.00 ns (0.4%)
LB compute : 307.44 us (93.6%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (67.5%)
Info: cfl dt = 0.009353968118859565 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9417e+05 | 32768 | 1 | 1.114e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 203.35184020871824 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 103.096145328 (s) [Godunov][rank=0]
amr::Godunov: t = 0.625, dt = 0.009353968118859565
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.88 us (2.3%)
patch tree reduce : 2.10 us (0.5%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 371.14 us (94.2%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (68.9%)
Info: cfl dt = 0.00935396710964047 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9713e+05 | 32768 | 1 | 1.103e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 305.3521532054177 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6343539681188596, dt = 0.00935396710964047
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.4%)
LB compute : 302.29 us (94.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (65.9%)
Info: cfl dt = 0.009353967141363584 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9795e+05 | 32768 | 1 | 1.100e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 306.19201749433194 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6437079352285, dt = 0.006292064771500017
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.8%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 290.77 us (93.8%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (68.3%)
Info: cfl dt = 0.009353965670625203 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9587e+05 | 32768 | 1 | 1.108e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 204.52319970160517 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 103.44803259300001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.65, dt = 0.009353965670625203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.64 us (2.0%)
patch tree reduce : 1893.00 ns (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1382.00 ns (0.4%)
LB compute : 358.43 us (94.1%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (71.2%)
Info: cfl dt = 0.009353964034580367 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9370e+05 | 32768 | 1 | 1.116e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 301.8218575172384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6593539656706252, dt = 0.009353964034580367
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.8%)
patch tree reduce : 1733.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1093.00 ns (0.3%)
LB compute : 304.91 us (93.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (68.4%)
Info: cfl dt = 0.009353963490767177 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9324e+05 | 32768 | 1 | 1.117e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 301.3476327589407 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6687079297052055, dt = 0.006292070294794505
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.9%)
patch tree reduce : 1844.00 ns (0.6%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 297.98 us (93.6%)
LB move op cnt : 0
LB apply : 3.74 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (67.4%)
Info: cfl dt = 0.009353963549151368 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9393e+05 | 32768 | 1 | 1.115e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 203.1822967764036 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 103.80369050700001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.675, dt = 0.009353963549151368
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.57 us (2.1%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 1323.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1203.00 ns (0.3%)
LB compute : 330.46 us (93.7%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (69.9%)
Info: cfl dt = 0.009353961439961254 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9675e+05 | 32768 | 1 | 1.104e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 304.9620607814306 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6843539635491515, dt = 0.009353961439961254
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.6%)
patch tree reduce : 1723.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 335.70 us (94.4%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (67.6%)
Info: cfl dt = 0.009353960211864158 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9738e+05 | 32768 | 1 | 1.102e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 305.60908649938375 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6937079249891127, dt = 0.006292075010887355
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.8%)
patch tree reduce : 1763.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 319.82 us (93.9%)
LB move op cnt : 0
LB apply : 3.97 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (68.9%)
Info: cfl dt = 0.009353960043766495 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0408e+05 | 32768 | 1 | 1.078e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 210.19804947565092 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 104.152924651 (s) [Godunov][rank=0]
amr::Godunov: t = 0.7000000000000001, dt = 0.009353960043766495
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.63 us (2.1%)
patch tree reduce : 1853.00 ns (0.5%)
gen split merge : 1243.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.3%)
LB compute : 345.71 us (94.0%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (67.2%)
Info: cfl dt = 0.009353959072662451 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0324e+05 | 32768 | 1 | 1.081e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.62613400811455 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7093539600437666, dt = 0.009353959072662451
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.7%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 1122.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1243.00 ns (0.4%)
LB compute : 332.26 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.75 us (70.7%)
Info: cfl dt = 0.009353957326763262 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0591e+05 | 32768 | 1 | 1.071e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 314.3685609001133 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7187079191164291, dt = 0.006292080883571027
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.8%)
patch tree reduce : 1462.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1413.00 ns (0.4%)
LB compute : 301.16 us (94.0%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1894.00 ns (66.8%)
Info: cfl dt = 0.009353956719419519 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0185e+05 | 32768 | 1 | 1.086e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 208.65828814188168 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 104.49754024100001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.7250000000000001, dt = 0.009353956719419519
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.10 us (2.3%)
patch tree reduce : 1472.00 ns (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 334.39 us (93.8%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.9%)
Info: cfl dt = 0.009353956830009738 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0081e+05 | 32768 | 1 | 1.089e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 309.1305119738483 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7343539567194196, dt = 0.009353956830009738
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 1472.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 : 298.11 us (93.8%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1833.00 ns (64.7%)
Info: cfl dt = 0.00935395493161885 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9844e+05 | 32768 | 1 | 1.098e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 306.69136040332955 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7437079135494293, dt = 0.006292086450570666
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.6%)
patch tree reduce : 1733.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 336.97 us (94.6%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (67.3%)
Info: cfl dt = 0.009353953940730946 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9414e+05 | 32768 | 1 | 1.114e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 203.32996922080838 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 104.848483512 (s) [Godunov][rank=0]
amr::Godunov: t = 0.75, dt = 0.009353953940730946
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.88 us (2.0%)
patch tree reduce : 1773.00 ns (0.5%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 367.11 us (94.3%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (71.2%)
Info: cfl dt = 0.009353953292643229 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9912e+05 | 32768 | 1 | 1.095e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 307.39759001592466 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7593539539407309, dt = 0.009353953292643229
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.6%)
patch tree reduce : 1724.00 ns (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 331.75 us (94.4%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (68.2%)
Info: cfl dt = 0.009353952798285022 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9859e+05 | 32768 | 1 | 1.097e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 306.8443697103448 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7687079072333741, dt = 0.006292092766625901
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.9%)
patch tree reduce : 1653.00 ns (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 306.52 us (93.9%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (66.6%)
Info: cfl dt = 0.0093539515261249 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9213e+05 | 32768 | 1 | 1.122e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 201.94124481734386 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 105.20143335300001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.775, dt = 0.0093539515261249
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.41 us (2.4%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 326.26 us (93.4%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (67.8%)
Info: cfl dt = 0.00935395026179593 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9690e+05 | 32768 | 1 | 1.104e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 305.11414688366716 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.784353951526125, dt = 0.00935395026179593
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.5%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 352.75 us (94.8%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (68.8%)
Info: cfl dt = 0.009353950133498233 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9258e+05 | 32768 | 1 | 1.120e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 300.6698708485691 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7937079017879209, dt = 0.0062920982120791
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.8%)
patch tree reduce : 1753.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 : 307.03 us (94.0%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.4%)
Info: cfl dt = 0.009353949537986989 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9414e+05 | 32768 | 1 | 1.114e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 203.32855698226146 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 105.55629629900001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.8, dt = 0.009353949537986989
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.49 us (2.5%)
patch tree reduce : 1753.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 321.07 us (93.3%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1994.00 ns (68.1%)
Info: cfl dt = 0.009353947741564221 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9279e+05 | 32768 | 1 | 1.119e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 300.88807993639625 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.809353949537987, dt = 0.009353947741564221
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.9%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 305.86 us (93.7%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.4%)
Info: cfl dt = 0.009353946903437757 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9136e+05 | 32768 | 1 | 1.125e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 299.41672496617485 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8187078972795512, dt = 0.006292102720448889
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.8%)
patch tree reduce : 1803.00 ns (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.4%)
LB compute : 295.87 us (93.8%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1913.00 ns (66.5%)
Info: cfl dt = 0.00935394703528602 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9153e+05 | 32768 | 1 | 1.124e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 201.52295057992595 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 105.91410481000001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.8250000000000001, dt = 0.00935394703528602
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.11 us (2.2%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 348.88 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.47 us (72.0%)
Info: cfl dt = 0.009353945563393187 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.6752e+05 | 32768 | 1 | 1.225e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 274.913369861161 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8343539470352861, dt = 0.009353945563393187
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (2.0%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.4%)
LB compute : 299.63 us (93.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (65.5%)
Info: cfl dt = 0.009353944147580597 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9088e+05 | 32768 | 1 | 1.127e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 298.92514300047344 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8437078925986793, dt = 0.006292107401320801
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (1.9%)
patch tree reduce : 1673.00 ns (0.5%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.4%)
LB compute : 314.11 us (93.6%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (68.1%)
Info: cfl dt = 0.009353943790538456 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9008e+05 | 32768 | 1 | 1.130e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 200.52266129123177 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 106.28318884800001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.8500000000000001, dt = 0.009353943790538456
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.04 us (2.1%)
patch tree reduce : 1612.00 ns (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.3%)
LB compute : 352.17 us (93.8%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (70.4%)
Info: cfl dt = 0.009353943705146096 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9403e+05 | 32768 | 1 | 1.114e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 302.166125067726 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8593539437905385, dt = 0.009353943705146096
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.8%)
patch tree reduce : 1704.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 302.95 us (93.9%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1994.00 ns (65.5%)
Info: cfl dt = 0.009353941826320837 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9647e+05 | 32768 | 1 | 1.105e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 304.671493361961 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8687078874956846, dt = 0.006292112504315384
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.9%)
patch tree reduce : 1552.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1111.00 ns (0.3%)
LB compute : 303.17 us (93.9%)
LB move op cnt : 0
LB apply : 3.74 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.6%)
Info: cfl dt = 0.009353941069642458 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8928e+05 | 32768 | 1 | 1.133e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 199.97383499557384 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 106.639203545 (s) [Godunov][rank=0]
amr::Godunov: t = 0.875, dt = 0.009353941069642458
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.87 us (2.3%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 1192.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1021.00 ns (0.3%)
LB compute : 325.48 us (93.8%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (67.7%)
Info: cfl dt = 0.009353940829541387 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9510e+05 | 32768 | 1 | 1.110e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 303.2611636973254 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8843539410696425, dt = 0.009353940829541387
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.6%)
patch tree reduce : 1583.00 ns (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 328.89 us (94.4%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (66.4%)
Info: cfl dt = 0.009353939787196454 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8970e+05 | 32768 | 1 | 1.131e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 297.7065669434684 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8937078818991839, dt = 0.006292118100816091
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.9%)
patch tree reduce : 1983.00 ns (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1313.00 ns (0.4%)
LB compute : 300.57 us (93.5%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.4%)
Info: cfl dt = 0.009353938714170448 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9301e+05 | 32768 | 1 | 1.118e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 202.55179208980607 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 106.99569838400001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.9, dt = 0.009353938714170448
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.22 us (2.4%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 324.29 us (93.5%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (67.5%)
Info: cfl dt = 0.009353937824918116 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9150e+05 | 32768 | 1 | 1.124e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 299.56638429208726 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9093539387141705, dt = 0.009353937824918116
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.2%)
patch tree reduce : 1754.00 ns (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.4%)
LB compute : 297.46 us (93.3%)
LB move op cnt : 0
LB apply : 3.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1873.00 ns (64.9%)
Info: cfl dt = 0.009353938146435176 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9180e+05 | 32768 | 1 | 1.123e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 299.8646659595999 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9187078765390886, dt = 0.0062921234609114585
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.5%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 353.96 us (94.6%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (67.4%)
Info: cfl dt = 0.00935393684862767 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.7944e+05 | 32768 | 1 | 1.173e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 193.16789480505244 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 107.35866912 (s) [Godunov][rank=0]
amr::Godunov: t = 0.925, dt = 0.00935393684862767
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.15 us (2.1%)
patch tree reduce : 1582.00 ns (0.4%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 373.20 us (94.2%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.2%)
Info: cfl dt = 0.009353935375974459 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0218e+05 | 32768 | 1 | 8.148e-02 | 0.0% | 0.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 413.299123578868 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9343539368486277, dt = 0.009353935375974459
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (1.6%)
patch tree reduce : 1462.00 ns (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 377.76 us (94.7%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.8%)
Info: cfl dt = 0.009353934928365202 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1860e+05 | 32768 | 1 | 1.028e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 327.4111053077968 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9437078722246022, dt = 0.006292127775397893
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.02 us (2.1%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 365.26 us (94.0%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (72.5%)
Info: cfl dt = 0.009353935254400637 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2550e+05 | 32768 | 1 | 7.701e-02 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 294.13562758713147 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 107.63964747 (s) [Godunov][rank=0]
amr::Godunov: t = 0.9500000000000001, dt = 0.009353935254400637
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.15 us (2.2%)
patch tree reduce : 1934.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1423.00 ns (0.4%)
LB compute : 355.02 us (93.9%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (69.3%)
Info: cfl dt = 0.009353933341104494 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9208e+05 | 32768 | 1 | 1.122e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 300.15472604253705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9593539352544007, dt = 0.009353933341104494
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.5%)
patch tree reduce : 1794.00 ns (0.4%)
gen split merge : 1192.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 387.81 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.25 us (70.1%)
Info: cfl dt = 0.009353932253649146 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9546e+05 | 32768 | 1 | 1.109e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 303.63039316573355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9687078685955052, dt = 0.006292131404494916
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.8%)
patch tree reduce : 1413.00 ns (0.4%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 321.02 us (94.3%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1843.00 ns (66.2%)
Info: cfl dt = 0.009353932155879562 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9796e+05 | 32768 | 1 | 1.100e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 205.970804973582 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 107.98763538700001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.9750000000000001, dt = 0.009353932155879562
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.34 us (2.2%)
patch tree reduce : 1894.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 364.07 us (94.0%)
LB move op cnt : 0
LB apply : 4.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.1%)
Info: cfl dt = 0.009353931474429344 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0354e+05 | 32768 | 1 | 1.080e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.93628156281613 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9843539321558796, dt = 0.009353931474429344
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.7%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 342.22 us (94.4%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (67.8%)
Info: cfl dt = 0.00935392991017246 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0226e+05 | 32768 | 1 | 1.084e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 310.6219771173692 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9937078636303089, dt = 0.006292136369691059
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.1%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 310.45 us (93.7%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (67.6%)
Info: cfl dt = 0.009353929396104925 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0195e+05 | 32768 | 1 | 1.085e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 208.72736026288257 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 108.33281441700001 (s) [Godunov][rank=0]
Plot 1: Comparison grouped by Riemann solver (last timestep only)
126 riemann_solvers = ["rusanov", "hll", "hllc"]
127 slope_limiters = ["none", "vanleer", "vanleer_sym", "minmod"]
128
129 fig, axes = plt.subplots(3, 1, figsize=(6, 15))
130 fig.suptitle(f"t={tmax} (Last Step)", fontsize=14)
131
132 for idx, solver in enumerate(riemann_solvers):
133 ax = axes[idx]
134 ax.set_title(f"Riemann Solver: {solver}")
135 ax.set_xlabel("$x$")
136 ax.set_ylabel("$\\rho$")
137 ax.grid(True, alpha=0.3)
138
139 for limiter in slope_limiters:
140 key = f"{limiter}_{solver}"
141 if key in data:
142 # Get the last timestep
143 last_step = data[key][-1]
144 ax.plot([x[0] for x in positions], last_step, label=limiter, linewidth=2)
145
146 ax.legend()
147
148 plt.tight_layout()
149 plt.show()

Plot 2: Animation of vanleer_sym_hllc configuration
155 from matplotlib.animation import FuncAnimation
156
157 fig2, ax2 = plt.subplots()
158 ax2.set_xlabel("$x$")
159 ax2.set_ylabel("$\\rho$")
160 ax2.set_ylim(0.9, 2.1)
161 ax2.grid(True, alpha=0.3)
162
163 x_positions = np.linspace(0, 1, len(data["minmod_hllc"][0]))
164 (line,) = ax2.plot(x_positions, data["minmod_hllc"][0])
165 ax2.set_title(f"minmod_hllc - t = {0.0:.3f} s")
166
167
168 def animate(frame):
169 t = tmax * frame / timestamps
170 line.set_ydata(data["minmod_hllc"][frame])
171 ax2.set_title(f"minmod_hllc - t = {t:.3f} s")
172 return (line,)
173
174
175 anim = FuncAnimation(fig2, animate, frames=timestamps + 1, interval=150, blit=False, repeat=True)
176 plt.tight_layout()
177 plt.show()
Total running time of the script: (1 minutes 44.953 seconds)
Estimated memory usage: 304 MB