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")
-> modified loglevel to 0 enabled log types :
log status :
- Loglevel: 1, enabled log types :
[xxx] Info: xxx ( logger::info )
[xxx] : xxx ( logger::normal )
[xxx] Warning: xxx ( logger::warn )
[xxx] Error: xxx ( logger::err )
Use shamrock documentation style for matplotlib
23 shamrock.matplotlib.set_shamrock_mpl_style()
Setup parameters
27 tmax = 1.0
28 timestamps = 40
29
30 multx = 1
31 multy = 1
32 multz = 1
33
34 sz = 1 << 1
35 base = 16
36
37 positions = [(x, 0, 0) for x in np.linspace(0, 1, 256).tolist()[:-1]]
Simulation
42 def run_advect(slope_limiter: str, riemann_solver: str, only_last_step: bool = True):
43 ctx = shamrock.Context()
44 ctx.pdata_layout_new()
45
46 model = shamrock.get_Model_Ramses(context=ctx, vector_type="f64_3", grid_repr="i64_3")
47
48 cfg = model.gen_default_config()
49 scale_fact = 1 / (sz * base * multx)
50 cfg.set_scale_factor(scale_fact)
51 cfg.set_eos_gamma(1.00001)
52
53 if slope_limiter == "none":
54 cfg.set_slope_lim_none()
55 elif slope_limiter == "vanleer":
56 cfg.set_slope_lim_vanleer_f()
57 elif slope_limiter == "vanleer_std":
58 cfg.set_slope_lim_vanleer_std()
59 elif slope_limiter == "vanleer_sym":
60 cfg.set_slope_lim_vanleer_sym()
61 elif slope_limiter == "minmod":
62 cfg.set_slope_lim_minmod()
63 else:
64 raise ValueError(f"Invalid slope limiter: {slope_limiter}")
65
66 if riemann_solver == "rusanov":
67 cfg.set_riemann_solver_rusanov()
68 elif riemann_solver == "hll":
69 cfg.set_riemann_solver_hll()
70 elif riemann_solver == "hllc":
71 cfg.set_riemann_solver_hllc()
72 else:
73 raise ValueError(f"Invalid Riemann solver: {riemann_solver}")
74
75 model.set_solver_config(cfg)
76
77 model.init_scheduler(int(1e7), 1)
78 model.make_base_grid((0, 0, 0), (sz, sz, sz), (base * multx, base * multy, base * multz))
79
80 def rho_map(rmin, rmax):
81 x, y, z = rmin
82
83 if x < 0.6 and x > 0.4:
84 return 2
85
86 return 1.0
87
88 def rhoe_map(rmin, rmax):
89 rho = rho_map(rmin, rmax)
90 return 1.0 * rho
91
92 def rhovel_map(rmin, rmax):
93 x, y, z = rmin
94 rho = rho_map(rmin, rmax)
95 return (1 * rho, 0 * rho, 0 * rho)
96
97 model.set_field_value_lambda_f64("rho", rho_map)
98 model.set_field_value_lambda_f64("rhoetot", rhoe_map)
99 model.set_field_value_lambda_f64_3("rhovel", rhovel_map)
100
101 results = []
102
103 def analysis(iplot: int):
104 rho_vals = model.render_slice("rho", "f64", positions)
105 results.append(rho_vals)
106
107 if only_last_step:
108 model.evolve_until(tmax)
109 analysis(timestamps)
110 else:
111 dt_evolve = tmax / timestamps
112
113 for i in range(timestamps + 1):
114 model.evolve_until(dt_evolve * i)
115 analysis(i)
116
117 return results
121 data = {}
122 data["none_rusanov"] = run_advect("none", "rusanov")
123 data["none_hll"] = run_advect("none", "hll")
124 data["none_hllc"] = run_advect("none", "hllc")
125 data["vanleer_sym_rusanov"] = run_advect("vanleer_sym", "rusanov")
126 data["vanleer_sym_hll"] = run_advect("vanleer_sym", "hll")
127 data["vanleer_sym_hllc"] = run_advect("vanleer_sym", "hllc")
128 data["minmod_rusanov"] = run_advect("minmod", "rusanov")
129 data["minmod_hll"] = run_advect("minmod", "hll")
130 data["minmod_hllc"] = run_advect("minmod", "hllc", only_last_step=False)
Info: pushing data in scheduler, N = 4096 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 2.92 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.50 us (59.6%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (0.2%)
patch tree reduce : 1.13 us (0.1%)
gen split merge : 872.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.19 us (0.1%)
LB compute : 840.94 us (98.4%)
LB move op cnt : 0
LB apply : 4.71 us (0.6%)
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 : 13.86 us (2.8%)
patch tree reduce : 2.05 us (0.4%)
gen split merge : 1.28 us (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.2%)
LB compute : 467.11 us (93.8%)
LB move op cnt : 0
LB apply : 4.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (72.7%)
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.7729e+05 | 32768 | 1 | 1.182e-01 | 0.0% | 1.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.009354083528780794
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (1.8%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 351.49 us (94.0%)
LB move op cnt : 0
LB apply : 4.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.2%)
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.2313e+05 | 32768 | 1 | 1.014e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.07452257944743 (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.73 us (1.9%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 322.71 us (93.3%)
LB move op cnt : 0
LB apply : 4.49 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (68.2%)
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 | 3.2773e+05 | 32768 | 1 | 9.998e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.79862330745294 (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.58 us (2.0%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 1.48 us (0.5%)
split / merge op : 0/0
apply split merge : 1.57 us (0.5%)
LB compute : 305.86 us (93.1%)
LB move op cnt : 0
LB apply : 4.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.1%)
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 | 3.4893e+05 | 32768 | 1 | 9.391e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 358.5873815314908 (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.62 us (1.9%)
patch tree reduce : 2.19 us (0.6%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 326.85 us (93.7%)
LB move op cnt : 0
LB apply : 4.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (70.0%)
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 | 3.4404e+05 | 32768 | 1 | 9.525e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 353.55742813242585 (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 : 7.16 us (2.2%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 299.35 us (93.0%)
LB move op cnt : 0
LB apply : 4.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (70.8%)
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 | 3.3990e+05 | 32768 | 1 | 9.641e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 349.3029407102927 (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.81 us (2.1%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 1.40 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 306.87 us (93.3%)
LB move op cnt : 0
LB apply : 3.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (64.8%)
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 | 3.4768e+05 | 32768 | 1 | 9.425e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 357.29701411854035 (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 : 6.09 us (1.7%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 1.36 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 336.29 us (94.0%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (72.0%)
Info: cfl dt = 0.009354065143266508 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1858e+05 | 32768 | 1 | 1.029e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 327.3979169292046 (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.67 us (1.4%)
patch tree reduce : 1.78 us (0.4%)
gen split merge : 1.29 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 441.19 us (95.2%)
LB move op cnt : 0
LB apply : 4.01 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (68.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 | 3.3011e+05 | 32768 | 1 | 9.926e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.24519131228135 (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 : 6.60 us (2.2%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 283.64 us (92.9%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (63.6%)
Info: cfl dt = 0.009354061015738298 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4548e+05 | 32768 | 1 | 9.485e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 355.0417140318784 (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.65 us (2.1%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 289.24 us (93.0%)
LB move op cnt : 0
LB apply : 3.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (60.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.6349e+05 | 32768 | 1 | 7.070e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 476.30993829482327 (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.75 us (2.1%)
patch tree reduce : 2.14 us (0.7%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 292.09 us (93.0%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (68.6%)
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.6869e+05 | 32768 | 1 | 6.991e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 481.6531986482496 (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 : 6.65 us (1.9%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 324.59 us (93.7%)
LB move op cnt : 0
LB apply : 4.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (70.6%)
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.5513e+05 | 32768 | 1 | 7.200e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 467.72089186554973 (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 : 7.06 us (2.0%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 332.36 us (93.7%)
LB move op cnt : 0
LB apply : 4.39 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (62.3%)
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.4144e+05 | 32768 | 1 | 7.423e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 453.65300941820414 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12160287639501968, dt = 0.009354056461091628
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (2.0%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 296.47 us (93.0%)
LB move op cnt : 0
LB apply : 4.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (69.4%)
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.5581e+05 | 32768 | 1 | 7.189e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 468.4194071601599 (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.59 us (2.2%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 273.23 us (92.4%)
LB move op cnt : 0
LB apply : 3.85 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.5%)
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.5750e+05 | 32768 | 1 | 7.162e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 470.1533314414212 (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.96 us (2.4%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 261.99 us (91.9%)
LB move op cnt : 0
LB apply : 4.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (58.8%)
Info: cfl dt = 0.009354052941923994 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3403e+05 | 32768 | 1 | 9.810e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.27344708751957 (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.96 us (2.1%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 315.94 us (93.3%)
LB move op cnt : 0
LB apply : 4.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.1%)
Info: cfl dt = 0.009354051876831915 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1786e+05 | 32768 | 1 | 1.031e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.64918609989957 (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.85 us (2.3%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 280.77 us (92.4%)
LB move op cnt : 0
LB apply : 4.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (61.2%)
Info: cfl dt = 0.009354050442380238 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2059e+05 | 32768 | 1 | 1.022e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.4553501230754 (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.73 us (2.3%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 269.82 us (92.6%)
LB move op cnt : 0
LB apply : 3.85 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (61.6%)
Info: cfl dt = 0.0093540498030328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2593e+05 | 32768 | 1 | 1.005e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.95151415948754 (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.05 us (2.3%)
patch tree reduce : 2.21 us (0.8%)
gen split merge : 1.29 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 246.02 us (91.9%)
LB move op cnt : 0
LB apply : 3.72 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (55.8%)
Info: cfl dt = 0.0093540490971823 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3242e+05 | 32768 | 1 | 9.857e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.6155117811558 (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.57 us (2.2%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 272.50 us (92.5%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (53.6%)
Info: cfl dt = 0.009354047654143367 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3107e+05 | 32768 | 1 | 9.898e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.2326932906561 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19643529552935374, dt = 0.009354047654143367
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (2.4%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 245.86 us (91.8%)
LB move op cnt : 0
LB apply : 4.17 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (60.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.3560e+05 | 32768 | 1 | 9.764e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 344.88092899636405 (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.84 us (2.4%)
patch tree reduce : 2.15 us (0.8%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 262.84 us (92.0%)
LB move op cnt : 0
LB apply : 3.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (8.1%)
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.3252e+05 | 32768 | 1 | 9.854e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.7181758112151 (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 : 6.43 us (2.3%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.47 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 261.47 us (92.4%)
LB move op cnt : 0
LB apply : 3.69 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (62.4%)
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.3267e+05 | 32768 | 1 | 9.850e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.87328724154355 (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.22 us (2.2%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 267.00 us (92.5%)
LB move op cnt : 0
LB apply : 4.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (62.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.3789e+05 | 32768 | 1 | 9.698e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 347.2384302313213 (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.82 us (2.4%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.56 us (0.6%)
LB compute : 259.36 us (91.9%)
LB move op cnt : 0
LB apply : 4.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (66.7%)
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.3879e+05 | 32768 | 1 | 9.672e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 348.1589993114247 (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.98 us (2.5%)
patch tree reduce : 2.08 us (0.8%)
gen split merge : 1.56 us (0.6%)
split / merge op : 0/0
apply split merge : 1.55 us (0.6%)
LB compute : 251.08 us (91.6%)
LB move op cnt : 0
LB apply : 3.73 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (65.0%)
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.3180e+05 | 32768 | 1 | 9.876e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.98132206588883 (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.52 us (2.1%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 292.40 us (92.9%)
LB move op cnt : 0
LB apply : 3.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (65.8%)
Info: cfl dt = 0.009354042071036399 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4280e+05 | 32768 | 1 | 9.559e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 352.28729798387513 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2619136133702529, dt = 0.009354042071036399
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (2.4%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 255.64 us (92.0%)
LB move op cnt : 0
LB apply : 3.76 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (59.6%)
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.4003e+05 | 32768 | 1 | 9.637e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 349.4382256197597 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2712676554412893, dt = 0.00935404202896072
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (2.3%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 264.46 us (92.4%)
LB move op cnt : 0
LB apply : 3.85 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (60.0%)
Info: cfl dt = 0.00935404070347925 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3388e+05 | 32768 | 1 | 9.814e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.12026204220507 (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 : 6.47 us (2.4%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 246.95 us (92.1%)
LB move op cnt : 0
LB apply : 3.66 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.0%)
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.3345e+05 | 32768 | 1 | 9.827e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.67800634776734 (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.31 us (2.1%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 276.76 us (92.7%)
LB move op cnt : 0
LB apply : 3.86 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (74.5%)
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.3031e+05 | 32768 | 1 | 9.920e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.44880087391124 (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.63 us (2.2%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 278.01 us (92.8%)
LB move op cnt : 0
LB apply : 3.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (60.7%)
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.3553e+05 | 32768 | 1 | 9.766e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 344.8136214665801 (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.57 us (2.2%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.55 us (0.5%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 276.31 us (92.6%)
LB move op cnt : 0
LB apply : 3.79 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (60.6%)
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.3349e+05 | 32768 | 1 | 9.826e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.7150633744322 (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 : 6.14 us (2.0%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 290.25 us (93.2%)
LB move op cnt : 0
LB apply : 3.74 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (65.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.3394e+05 | 32768 | 1 | 9.813e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.1772319045669 (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 : 6.56 us (2.1%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 286.12 us (93.0%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (62.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.3534e+05 | 32768 | 1 | 9.772e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 344.6187882738566 (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 : 6.49 us (2.2%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 269.41 us (92.5%)
LB move op cnt : 0
LB apply : 3.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (60.5%)
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.3472e+05 | 32768 | 1 | 9.790e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.9827625692325 (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 : 6.59 us (2.2%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 1.43 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 281.68 us (92.7%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (60.6%)
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.1229e+05 | 32768 | 1 | 1.049e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.9293475683646 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35545400560798257, dt = 0.009354035979159948
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.2%)
patch tree reduce : 2.11 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 277.55 us (92.7%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (62.7%)
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.2750e+05 | 32768 | 1 | 1.001e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.56156629072 (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 : 6.83 us (2.1%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 298.84 us (93.1%)
LB move op cnt : 0
LB apply : 4.47 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (64.2%)
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.3005e+05 | 32768 | 1 | 9.928e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.18466696035125 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3741620768978829, dt = 0.009354034457104234
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.3%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 280.99 us (92.8%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (65.8%)
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.3202e+05 | 32768 | 1 | 9.869e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.2083618394555 (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 : 6.85 us (2.3%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.36 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 282.05 us (92.7%)
LB move op cnt : 0
LB apply : 4.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (61.0%)
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.3377e+05 | 32768 | 1 | 9.818e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.00380770130045 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3928701456137253, dt = 0.009354033774577327
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (1.9%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 308.29 us (93.3%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (64.5%)
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.3335e+05 | 32768 | 1 | 9.830e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.5689009028889 (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.52 us (2.0%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 308.49 us (93.2%)
LB move op cnt : 0
LB apply : 3.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (63.4%)
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.3228e+05 | 32768 | 1 | 9.862e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.4680112442977 (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.73 us (2.2%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 277.97 us (92.7%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (63.1%)
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.2018e+05 | 32768 | 1 | 1.023e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.0333802217674 (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 : 6.56 us (1.8%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 334.54 us (93.9%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (67.9%)
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.2252e+05 | 32768 | 1 | 1.016e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 331.43767079724046 (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 : 6.52 us (2.2%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 274.35 us (92.8%)
LB move op cnt : 0
LB apply : 3.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (63.9%)
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.2735e+05 | 32768 | 1 | 1.001e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.40247242042386 (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 : 6.46 us (2.1%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 280.41 us (92.9%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (61.4%)
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.2673e+05 | 32768 | 1 | 1.003e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.7660618435733 (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.37 us (2.3%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 1.49 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 254.69 us (92.1%)
LB move op cnt : 0
LB apply : 3.73 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (61.0%)
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.8311e+05 | 32768 | 1 | 8.553e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 393.7074784679394 (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 : 7.04 us (2.8%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 1.40 us (0.5%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 232.89 us (91.3%)
LB move op cnt : 0
LB apply : 3.74 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (64.5%)
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 | 4.7219e+05 | 32768 | 1 | 6.940e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 485.25359896289183 (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 : 6.71 us (2.5%)
patch tree reduce : 2.18 us (0.8%)
gen split merge : 1.41 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 245.14 us (91.7%)
LB move op cnt : 0
LB apply : 4.19 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (61.0%)
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 | 4.5558e+05 | 32768 | 1 | 7.193e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 468.1854170347897 (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 : 6.87 us (2.6%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 243.67 us (91.6%)
LB move op cnt : 0
LB apply : 4.02 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (63.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 | 4.4927e+05 | 32768 | 1 | 7.294e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 461.70255566051287 (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 : 7.19 us (2.6%)
patch tree reduce : 2.31 us (0.8%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 249.86 us (91.7%)
LB move op cnt : 0
LB apply : 3.70 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (68.4%)
Info: cfl dt = 0.009354028474881829 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4801e+05 | 32768 | 1 | 7.314e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 460.4022999746549 (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 : 6.45 us (1.7%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.4%)
LB compute : 348.56 us (94.0%)
LB move op cnt : 0
LB apply : 4.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (68.0%)
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.4426e+05 | 32768 | 1 | 9.518e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 353.78496842667647 (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 : 6.49 us (2.0%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 299.73 us (93.1%)
LB move op cnt : 0
LB apply : 3.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (67.0%)
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.4295e+05 | 32768 | 1 | 9.555e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 352.4329487928738 (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.57 us (2.0%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 314.00 us (93.3%)
LB move op cnt : 0
LB apply : 4.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (62.6%)
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 | 4.6089e+05 | 32768 | 1 | 7.110e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 473.64428249920195 (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 : 6.63 us (2.1%)
patch tree reduce : 2.21 us (0.7%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 285.91 us (92.7%)
LB move op cnt : 0
LB apply : 3.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.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.5390e+05 | 32768 | 1 | 9.259e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 363.6906033411066 (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 : 6.59 us (2.0%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 313.34 us (93.4%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (66.4%)
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.4850e+05 | 32768 | 1 | 9.403e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 358.1418549401093 (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 : 7.01 us (2.5%)
patch tree reduce : 2.24 us (0.8%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 262.76 us (92.0%)
LB move op cnt : 0
LB apply : 4.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.3%)
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 | 4.6123e+05 | 32768 | 1 | 7.104e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 473.99134996645984 (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 : 7.08 us (2.0%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.4%)
LB compute : 330.53 us (93.5%)
LB move op cnt : 0
LB apply : 4.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (69.2%)
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 | 4.6053e+05 | 32768 | 1 | 7.115e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 473.2661461133738 (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 : 6.28 us (2.1%)
patch tree reduce : 2.48 us (0.8%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 273.44 us (92.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (60.3%)
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.4981e+05 | 32768 | 1 | 9.367e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 359.4911052345955 (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 : 6.97 us (2.3%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.37 us (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 286.01 us (92.7%)
LB move op cnt : 0
LB apply : 3.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (62.6%)
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.3708e+05 | 32768 | 1 | 9.721e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.4012332473797 (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 : 7.47 us (2.2%)
patch tree reduce : 2.24 us (0.6%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 324.28 us (93.4%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (60.0%)
Info: cfl dt = 0.009354025132565651 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4091e+05 | 32768 | 1 | 9.612e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 350.33580724484443 (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 : 7.13 us (2.3%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 292.36 us (92.8%)
LB move op cnt : 0
LB apply : 3.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (66.8%)
Info: cfl dt = 0.009354024518424781 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5212e+05 | 32768 | 1 | 9.306e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 361.8603585079374 (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 : 6.92 us (1.9%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 1.36 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 349.89 us (94.0%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (66.7%)
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.4791e+05 | 32768 | 1 | 9.418e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 357.536278712542 (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.70 us (1.7%)
patch tree reduce : 2.10 us (0.5%)
gen split merge : 1.26 us (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.3%)
LB compute : 370.08 us (94.1%)
LB move op cnt : 0
LB apply : 4.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (68.3%)
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.5316e+05 | 32768 | 1 | 9.279e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 362.9248513698381 (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 : 6.98 us (1.9%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.4%)
LB compute : 338.18 us (93.8%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (64.6%)
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.4186e+05 | 32768 | 1 | 9.585e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 351.3191736428394 (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 : 7.38 us (2.3%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.42 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 293.26 us (92.8%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (72.7%)
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.4376e+05 | 32768 | 1 | 9.532e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 353.2695040263465 (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.85 us (2.1%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.35 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 308.33 us (93.0%)
LB move op cnt : 0
LB apply : 4.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (66.1%)
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.4190e+05 | 32768 | 1 | 9.584e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 351.35559019632166 (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 : 6.11 us (1.7%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 333.62 us (94.0%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (70.2%)
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.9261e+05 | 32768 | 1 | 8.346e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 403.476120904127 (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.86 us (2.3%)
patch tree reduce : 2.34 us (0.8%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 276.67 us (92.4%)
LB move op cnt : 0
LB apply : 3.84 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (63.2%)
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 | 4.5896e+05 | 32768 | 1 | 7.140e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 471.6577821873929 (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.87 us (2.2%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 284.58 us (92.8%)
LB move op cnt : 0
LB apply : 4.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (60.5%)
Info: cfl dt = 0.009354022101621652 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6071e+05 | 32768 | 1 | 7.112e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 473.4598654944039 (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.60 us (2.3%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 262.88 us (92.2%)
LB move op cnt : 0
LB apply : 3.91 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (66.8%)
Info: cfl dt = 0.009354021920942835 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4836e+05 | 32768 | 1 | 7.308e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 460.7630376519063 (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 : 7.21 us (2.2%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 1.37 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 302.78 us (92.9%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (69.7%)
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.4216e+05 | 32768 | 1 | 9.577e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 351.62700112163395 (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.51 us (2.0%)
patch tree reduce : 17.75 us (5.4%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.46 us (0.4%)
LB compute : 290.65 us (88.5%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (67.4%)
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.2642e+05 | 32768 | 1 | 1.004e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.45019717903165 (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.61 us (2.1%)
patch tree reduce : 2.07 us (0.7%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.83 us (0.6%)
LB compute : 286.05 us (92.8%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (66.9%)
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.2459e+05 | 32768 | 1 | 1.010e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 333.56430087240705 (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.96 us (2.2%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 287.62 us (92.9%)
LB move op cnt : 0
LB apply : 3.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (72.5%)
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.4455e+05 | 32768 | 1 | 9.510e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 354.08198584874117 (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 : 6.92 us (2.5%)
patch tree reduce : 2.08 us (0.7%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 257.22 us (92.0%)
LB move op cnt : 0
LB apply : 3.78 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (61.7%)
Info: cfl dt = 0.009354020339843281 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3634e+05 | 32768 | 1 | 7.510e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 448.4105518725396 (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 : 6.39 us (2.2%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 273.02 us (92.5%)
LB move op cnt : 0
LB apply : 3.75 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.6%)
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.2610e+05 | 32768 | 1 | 1.005e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.1215208797489 (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.20 us (2.2%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 261.34 us (92.3%)
LB move op cnt : 0
LB apply : 3.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (64.4%)
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 | 2.7742e+05 | 32768 | 1 | 1.181e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 285.0930143063133 (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 : 7.81 us (2.5%)
patch tree reduce : 2.45 us (0.8%)
gen split merge : 1.37 us (0.4%)
split / merge op : 0/0
apply split merge : 1.83 us (0.6%)
LB compute : 288.38 us (91.7%)
LB move op cnt : 0
LB apply : 4.65 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (77.1%)
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 | 4.1316e+05 | 32768 | 1 | 7.931e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 424.5900577636598 (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 : 7.53 us (2.5%)
patch tree reduce : 2.29 us (0.8%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 271.31 us (91.5%)
LB move op cnt : 0
LB apply : 4.77 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (64.2%)
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 | 4.2740e+05 | 32768 | 1 | 7.667e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 439.22622104705744 (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.63 us (2.3%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 267.09 us (92.4%)
LB move op cnt : 0
LB apply : 3.84 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (69.6%)
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 | 4.3748e+05 | 32768 | 1 | 7.490e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 449.581510002544 (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.49 us (2.6%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 228.41 us (91.4%)
LB move op cnt : 0
LB apply : 3.60 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (62.9%)
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.4915e+05 | 32768 | 1 | 9.385e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 358.80889811658534 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7857392175208286, dt = 0.009354018755432122
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.6%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 247.89 us (91.7%)
LB move op cnt : 0
LB apply : 3.68 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.3%)
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.7514e+05 | 32768 | 1 | 8.735e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 385.5159997686482 (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.47 us (2.3%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 257.66 us (92.3%)
LB move op cnt : 0
LB apply : 3.76 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (60.1%)
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 | 4.4019e+05 | 32768 | 1 | 7.444e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 452.36798201834665 (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 : 6.83 us (2.4%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 256.94 us (91.7%)
LB move op cnt : 0
LB apply : 4.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (68.3%)
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 | 4.5104e+05 | 32768 | 1 | 7.265e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 463.5146830932618 (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.87 us (2.2%)
patch tree reduce : 2.42 us (0.8%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 286.17 us (92.6%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (67.5%)
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.3388e+05 | 32768 | 1 | 9.814e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.12070302820246 (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 : 6.48 us (2.0%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 301.03 us (93.3%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (60.9%)
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.4345e+05 | 32768 | 1 | 9.541e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 352.95597337376034 (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 : 6.43 us (1.9%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 314.59 us (93.6%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (62.6%)
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.4027e+05 | 32768 | 1 | 9.630e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 349.68343017565786 (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.80 us (1.9%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 331.95 us (93.9%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (67.4%)
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.4961e+05 | 32768 | 1 | 9.373e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 359.2764103654204 (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 : 6.38 us (2.0%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 293.93 us (93.2%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (62.0%)
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.3697e+05 | 32768 | 1 | 9.724e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.2904365399458 (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.32 us (1.9%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 318.55 us (93.7%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (67.1%)
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.4557e+05 | 32768 | 1 | 9.482e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 355.1264417947503 (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.69 us (1.9%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 324.73 us (93.6%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (68.6%)
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.4745e+05 | 32768 | 1 | 9.431e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 357.0639527261482 (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.49 us (2.0%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 300.31 us (93.3%)
LB move op cnt : 0
LB apply : 3.87 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (61.5%)
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.4157e+05 | 32768 | 1 | 9.593e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 351.02004795581735 (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 : 6.61 us (1.9%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 1.35 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 324.67 us (93.7%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (69.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.4338e+05 | 32768 | 1 | 9.543e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 352.8784575621491 (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.82 us (2.1%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 304.01 us (93.2%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (63.1%)
Info: cfl dt = 0.009354016071743689 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5224e+05 | 32768 | 1 | 9.303e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 361.9824655865579 (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 : 7.06 us (2.1%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 295.88 us (88.8%)
LB move op cnt : 0
LB apply : 18.81 us (5.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.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 | 3.4062e+05 | 32768 | 1 | 9.620e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 350.0475875738027 (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 : 6.47 us (2.1%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 292.53 us (93.3%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (60.0%)
Info: cfl dt = 0.00935401544706949 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4921e+05 | 32768 | 1 | 9.383e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 358.8716981813615 (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 : 6.92 us (2.4%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 271.87 us (92.7%)
LB move op cnt : 0
LB apply : 3.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.3%)
Info: cfl dt = 0.009354015421019697 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4832e+05 | 32768 | 1 | 9.407e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 357.95588725294874 (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 : 6.60 us (2.3%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 263.32 us (92.6%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (63.7%)
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.5130e+05 | 32768 | 1 | 9.328e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 361.0222703114618 (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.58 us (2.1%)
patch tree reduce : 2.18 us (0.7%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 297.55 us (92.9%)
LB move op cnt : 0
LB apply : 4.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (67.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.5417e+05 | 32768 | 1 | 9.252e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 363.9708522537055 (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 : 6.75 us (2.0%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 314.25 us (93.5%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (66.1%)
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.4487e+05 | 32768 | 1 | 9.501e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 354.41321844641806 (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 : 7.24 us (2.2%)
patch tree reduce : 2.26 us (0.7%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 310.45 us (93.2%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (64.5%)
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.4541e+05 | 32768 | 1 | 9.487e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 354.96440120414957 (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.54 us (2.0%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 303.03 us (93.3%)
LB move op cnt : 0
LB apply : 3.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (61.9%)
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.5217e+05 | 32768 | 1 | 9.305e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 361.9133059815262 (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 : 7.15 us (2.0%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 318.98 us (89.4%)
LB move op cnt : 0
LB apply : 18.97 us (5.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (67.5%)
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.5124e+05 | 32768 | 1 | 9.329e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 360.953169066222 (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.74 us (1.9%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 1.55 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 327.70 us (93.5%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (66.4%)
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.4538e+05 | 32768 | 1 | 9.487e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.4844927448816 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 20.139049787 (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 965.95 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.12 us (61.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 : 991.00 ns (0.3%)
patch tree reduce : 951.00 ns (0.3%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 292.33 us (96.7%)
LB move op cnt : 0
LB apply : 3.11 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 : 14.03 us (3.6%)
patch tree reduce : 2.44 us (0.6%)
gen split merge : 1.26 us (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.3%)
LB compute : 356.41 us (92.4%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.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 | 3.3136e+05 | 32768 | 1 | 9.889e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.009354083528780794
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (2.5%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 263.32 us (92.2%)
LB move op cnt : 0
LB apply : 3.80 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (60.3%)
Info: cfl dt = 0.009354072778192094 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2782e+05 | 32768 | 1 | 9.996e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.89004718124124 (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.47 us (1.8%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 1.41 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 336.55 us (94.0%)
LB move op cnt : 0
LB apply : 3.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (59.0%)
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.2568e+05 | 32768 | 1 | 1.006e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.69297737503985 (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 : 6.66 us (2.0%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 304.00 us (93.4%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (63.0%)
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.4245e+05 | 32768 | 1 | 9.569e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 351.9275030306225 (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.62 us (2.0%)
patch tree reduce : 2.34 us (0.7%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 304.60 us (93.1%)
LB move op cnt : 0
LB apply : 4.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (59.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 | 3.4395e+05 | 32768 | 1 | 9.527e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 353.46594507425925 (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.18 us (1.8%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 320.29 us (93.6%)
LB move op cnt : 0
LB apply : 4.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.2%)
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.4169e+05 | 32768 | 1 | 9.590e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 351.14709478595745 (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.67 us (1.9%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 323.61 us (93.5%)
LB move op cnt : 0
LB apply : 4.42 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (66.5%)
Info: cfl dt = 0.00935406293722296 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3823e+05 | 32768 | 1 | 9.688e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 347.59113577698815 (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 : 7.01 us (2.1%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 309.33 us (93.0%)
LB move op cnt : 0
LB apply : 4.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (63.6%)
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.1924e+05 | 32768 | 1 | 1.026e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.0706953766407 (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.16 us (1.8%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 320.80 us (93.8%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (68.2%)
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.3949e+05 | 32768 | 1 | 9.652e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 348.87821482234807 (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.49 us (1.9%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.47 us (0.4%)
LB compute : 311.80 us (93.4%)
LB move op cnt : 0
LB apply : 4.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (68.6%)
Info: cfl dt = 0.009354058398246823 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4540e+05 | 32768 | 1 | 9.487e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 354.9556611145426 (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 : 6.02 us (1.8%)
patch tree reduce : 2.34 us (0.7%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 320.16 us (93.7%)
LB move op cnt : 0
LB apply : 3.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (69.5%)
Info: cfl dt = 0.009354055918166097 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3692e+05 | 32768 | 1 | 9.726e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.23771771035587 (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.63 us (2.1%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 300.57 us (93.2%)
LB move op cnt : 0
LB apply : 3.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (53.6%)
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.4566e+05 | 32768 | 1 | 9.480e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 355.2252347209298 (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 : 6.76 us (2.1%)
patch tree reduce : 2.14 us (0.7%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 296.08 us (93.0%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (60.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.3745e+05 | 32768 | 1 | 9.711e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.7844293966407 (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.17 us (1.8%)
patch tree reduce : 2.37 us (0.7%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 1.62 us (0.5%)
LB compute : 314.86 us (93.5%)
LB move op cnt : 0
LB apply : 3.97 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (63.1%)
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.4332e+05 | 32768 | 1 | 9.544e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 352.8170224701319 (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 : 6.53 us (2.0%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 307.55 us (93.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (63.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.9366e+05 | 32768 | 1 | 8.324e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 404.5487039327035 (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 : 24.06 us (6.4%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.4%)
LB compute : 336.20 us (89.4%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (68.9%)
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 | 4.4727e+05 | 32768 | 1 | 7.326e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 459.6417030118389 (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 : 7.17 us (2.6%)
patch tree reduce : 2.11 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.55 us (0.6%)
LB compute : 257.51 us (91.9%)
LB move op cnt : 0
LB apply : 3.86 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (66.2%)
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 | 4.6038e+05 | 32768 | 1 | 7.118e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 473.1191280859001 (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 : 6.47 us (2.1%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 284.55 us (92.7%)
LB move op cnt : 0
LB apply : 4.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (67.9%)
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.4421e+05 | 32768 | 1 | 7.377e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 456.5010820157466 (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.99 us (2.3%)
patch tree reduce : 2.19 us (0.7%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 283.53 us (92.7%)
LB move op cnt : 0
LB apply : 3.85 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (67.2%)
Info: cfl dt = 0.009354047838085631 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5060e+05 | 32768 | 1 | 7.272e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 463.0654304643305 (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 : 6.91 us (2.3%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 284.85 us (92.8%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (64.9%)
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.8778e+05 | 32768 | 1 | 8.450e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 398.5075783507895 (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.29 us (2.1%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 271.51 us (92.8%)
LB move op cnt : 0
LB apply : 3.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (65.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 | 4.4154e+05 | 32768 | 1 | 7.421e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 453.759759768277 (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 : 7.00 us (2.8%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 225.86 us (91.2%)
LB move op cnt : 0
LB apply : 3.99 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (60.5%)
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.3674e+05 | 32768 | 1 | 7.503e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 448.82024526050964 (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 : 6.57 us (2.6%)
patch tree reduce : 2.28 us (0.9%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 1.46 us (0.6%)
LB compute : 231.67 us (91.1%)
LB move op cnt : 0
LB apply : 4.33 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (62.8%)
Info: cfl dt = 0.00935404374999631 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5199e+05 | 32768 | 1 | 7.250e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 464.49265048621083 (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.55 us (2.5%)
patch tree reduce : 2.13 us (0.8%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 244.04 us (91.9%)
LB move op cnt : 0
LB apply : 3.70 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (62.6%)
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.4135e+05 | 32768 | 1 | 7.425e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 453.5597289912577 (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 : 7.02 us (2.3%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 1.43 us (0.5%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 283.15 us (92.6%)
LB move op cnt : 0
LB apply : 4.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (64.3%)
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.4454e+05 | 32768 | 1 | 7.371e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 456.8393305356726 (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.92 us (2.3%)
patch tree reduce : 2.15 us (0.7%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 277.54 us (92.6%)
LB move op cnt : 0
LB apply : 4.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (67.1%)
Info: cfl dt = 0.009354041407396577 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2630e+05 | 32768 | 1 | 7.687e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 438.0910595072404 (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.44 us (2.3%)
patch tree reduce : 2.14 us (0.8%)
gen split merge : 1.32 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 261.17 us (92.2%)
LB move op cnt : 0
LB apply : 4.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 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 | 4.5025e+05 | 32768 | 1 | 7.278e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 462.7109996132505 (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 : 6.86 us (2.1%)
patch tree reduce : 2.45 us (0.7%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 305.61 us (93.2%)
LB move op cnt : 0
LB apply : 4.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (70.7%)
Info: cfl dt = 0.009354039739735663 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4346e+05 | 32768 | 1 | 7.389e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 455.72972784945836 (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.77 us (2.6%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 234.94 us (91.2%)
LB move op cnt : 0
LB apply : 3.66 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (63.4%)
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 | 4.4452e+05 | 32768 | 1 | 7.372e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 456.8160478765503 (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.46 us (2.5%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 232.07 us (91.4%)
LB move op cnt : 0
LB apply : 4.22 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (65.2%)
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.4116e+05 | 32768 | 1 | 9.605e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 350.5997008445405 (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.43 us (2.1%)
patch tree reduce : 2.28 us (0.8%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 279.02 us (92.6%)
LB move op cnt : 0
LB apply : 4.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 46.39 us (98.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.2866e+05 | 32768 | 1 | 9.970e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 337.756542815114 (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.48 us (2.5%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 234.32 us (91.6%)
LB move op cnt : 0
LB apply : 3.88 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (63.1%)
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.3924e+05 | 32768 | 1 | 7.460e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 451.3906188718388 (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 : 6.31 us (2.5%)
patch tree reduce : 2.16 us (0.8%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.6%)
LB compute : 233.80 us (91.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (62.6%)
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.5438e+05 | 32768 | 1 | 7.212e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 466.9507359735775 (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.77 us (2.6%)
patch tree reduce : 2.52 us (1.0%)
gen split merge : 1.71 us (0.6%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 239.90 us (90.9%)
LB move op cnt : 0
LB apply : 4.02 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (64.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.4314e+05 | 32768 | 1 | 7.394e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 455.4043023216392 (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 : 6.54 us (2.2%)
patch tree reduce : 2.44 us (0.8%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 274.23 us (92.5%)
LB move op cnt : 0
LB apply : 3.81 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (65.1%)
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.3613e+05 | 32768 | 1 | 7.513e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 448.19664830755517 (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.89 us (2.7%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 236.49 us (91.6%)
LB move op cnt : 0
LB apply : 4.06 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (62.4%)
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.5415e+05 | 32768 | 1 | 7.215e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 466.7186838378223 (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.42 us (2.5%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.43 us (0.6%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 232.13 us (91.8%)
LB move op cnt : 0
LB apply : 3.71 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (67.1%)
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.4931e+05 | 32768 | 1 | 7.293e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 461.73632531915706 (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.26 us (2.1%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 276.22 us (92.8%)
LB move op cnt : 0
LB apply : 3.83 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (65.7%)
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.4845e+05 | 32768 | 1 | 7.307e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 460.85777647665884 (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.50 us (2.1%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 283.70 us (92.9%)
LB move op cnt : 0
LB apply : 4.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (63.7%)
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 | 4.6283e+05 | 32768 | 1 | 7.080e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 475.63291658953335 (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.54 us (2.1%)
patch tree reduce : 2.26 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 288.47 us (93.0%)
LB move op cnt : 0
LB apply : 3.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (68.1%)
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.6233e+05 | 32768 | 1 | 7.088e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 475.12301293807303 (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 : 7.04 us (2.5%)
patch tree reduce : 2.24 us (0.8%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 262.38 us (92.2%)
LB move op cnt : 0
LB apply : 3.92 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (70.3%)
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.6769e+05 | 32768 | 1 | 7.006e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 480.63087233045246 (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.44 us (2.0%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 307.59 us (93.6%)
LB move op cnt : 0
LB apply : 3.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (70.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.3353e+05 | 32768 | 1 | 7.558e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 445.5204746578699 (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 : 6.30 us (2.3%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 981.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 248.17 us (92.0%)
LB move op cnt : 0
LB apply : 3.77 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (62.6%)
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.5986e+05 | 32768 | 1 | 7.126e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 472.57883605744166 (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.67 us (2.4%)
patch tree reduce : 2.27 us (0.8%)
gen split merge : 1.29 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 251.84 us (92.1%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (61.7%)
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.6365e+05 | 32768 | 1 | 7.067e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 476.47205545295975 (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.28 us (2.5%)
patch tree reduce : 2.26 us (0.9%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 231.84 us (91.5%)
LB move op cnt : 0
LB apply : 3.80 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (73.0%)
Info: cfl dt = 0.009354029497301136 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4519e+05 | 32768 | 1 | 9.493e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 354.7370453119553 (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.63 us (2.6%)
patch tree reduce : 1.89 us (0.8%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 229.02 us (91.5%)
LB move op cnt : 0
LB apply : 3.76 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (63.6%)
Info: cfl dt = 0.009354028828673375 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7001e+05 | 32768 | 1 | 8.856e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 380.2456682781425 (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 : 7.10 us (2.4%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 274.46 us (92.4%)
LB move op cnt : 0
LB apply : 3.86 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (70.0%)
Info: cfl dt = 0.00935402887490641 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2771e+05 | 32768 | 1 | 9.999e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.7748424057944 (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 : 6.04 us (2.3%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.48 us (0.6%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 241.37 us (92.1%)
LB move op cnt : 0
LB apply : 3.58 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (64.2%)
Info: cfl dt = 0.009354028162104929 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3443e+05 | 32768 | 1 | 9.798e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.67710289154195 (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.40 us (2.2%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 272.41 us (92.6%)
LB move op cnt : 0
LB apply : 3.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (67.8%)
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.2993e+05 | 32768 | 1 | 7.622e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 441.8202585017775 (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 : 6.51 us (2.3%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 262.58 us (92.4%)
LB move op cnt : 0
LB apply : 3.71 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (67.9%)
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.5988e+05 | 32768 | 1 | 9.105e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 369.8324437724001 (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.80 us (2.3%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.36 us (0.5%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 273.11 us (92.5%)
LB move op cnt : 0
LB apply : 4.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (66.4%)
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.5663e+05 | 32768 | 1 | 9.188e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 366.4989249243 (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.85 us (2.8%)
patch tree reduce : 1.85 us (0.8%)
gen split merge : 1.28 us (0.5%)
split / merge op : 0/0
apply split merge : 1.35 us (0.6%)
LB compute : 222.66 us (91.1%)
LB move op cnt : 0
LB apply : 3.80 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (59.8%)
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 | 4.5608e+05 | 32768 | 1 | 7.185e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 468.7017639034914 (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.57 us (2.0%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 306.64 us (93.2%)
LB move op cnt : 0
LB apply : 4.43 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (68.7%)
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.3083e+05 | 32768 | 1 | 9.905e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.9802729702743 (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.79 us (2.3%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 1.43 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 267.20 us (92.1%)
LB move op cnt : 0
LB apply : 4.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (67.5%)
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.2339e+05 | 32768 | 1 | 1.013e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.3324462023441 (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.17 us (2.2%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 254.49 us (92.5%)
LB move op cnt : 0
LB apply : 4.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (57.6%)
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.4851e+05 | 32768 | 1 | 9.402e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 358.150352800284 (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 : 6.78 us (2.3%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 278.50 us (92.9%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (70.0%)
Info: cfl dt = 0.009354024879560215 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4879e+05 | 32768 | 1 | 9.395e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 358.4392601860405 (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.82 us (2.5%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.33 us (0.5%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 255.78 us (92.1%)
LB move op cnt : 0
LB apply : 3.81 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (64.8%)
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.4442e+05 | 32768 | 1 | 9.514e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 353.94301136227125 (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.40 us (2.2%)
patch tree reduce : 2.28 us (0.8%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 263.66 us (91.0%)
LB move op cnt : 0
LB apply : 6.16 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (63.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.3522e+05 | 32768 | 1 | 9.775e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 344.48839527037967 (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 : 6.73 us (2.4%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.62 us (0.6%)
LB compute : 257.96 us (92.3%)
LB move op cnt : 0
LB apply : 3.61 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (65.4%)
Info: cfl dt = 0.009354023714906021 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2261e+05 | 32768 | 1 | 7.754e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 434.30513174572036 (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.65 us (2.4%)
patch tree reduce : 2.21 us (0.8%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 256.48 us (92.2%)
LB move op cnt : 0
LB apply : 3.91 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (64.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 | 4.4042e+05 | 32768 | 1 | 7.440e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 452.60849045028766 (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 : 7.01 us (2.2%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 293.78 us (92.9%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (67.8%)
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.2856e+05 | 32768 | 1 | 9.973e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 337.6501058180528 (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.73 us (2.2%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 282.54 us (92.8%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (70.2%)
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.3160e+05 | 32768 | 1 | 9.882e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.7766700114778 (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.95 us (2.1%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 309.53 us (93.2%)
LB move op cnt : 0
LB apply : 4.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (67.7%)
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.4257e+05 | 32768 | 1 | 9.565e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 352.0501930027326 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5799505319881925, dt = 0.009354022734382968
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (2.1%)
patch tree reduce : 2.28 us (0.7%)
gen split merge : 1.37 us (0.4%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 286.37 us (92.5%)
LB move op cnt : 0
LB apply : 4.45 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (66.1%)
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.3564e+05 | 32768 | 1 | 9.763e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 344.92122081701285 (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.51 us (2.3%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 265.59 us (92.4%)
LB move op cnt : 0
LB apply : 3.66 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (67.5%)
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.3243e+05 | 32768 | 1 | 9.857e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.62653081682964 (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.49 us (2.3%)
patch tree reduce : 2.15 us (0.8%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 254.66 us (92.1%)
LB move op cnt : 0
LB apply : 3.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (66.1%)
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.3212e+05 | 32768 | 1 | 9.866e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.30708032943033 (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 : 7.69 us (2.7%)
patch tree reduce : 2.07 us (0.7%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 257.91 us (91.8%)
LB move op cnt : 0
LB apply : 4.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (68.4%)
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.3041e+05 | 32768 | 1 | 9.917e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.55135175145307 (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 : 7.31 us (2.6%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 256.94 us (91.8%)
LB move op cnt : 0
LB apply : 4.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (64.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.3002e+05 | 32768 | 1 | 9.929e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.1457223075924 (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 : 6.97 us (2.5%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.29 us (0.5%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 256.37 us (91.9%)
LB move op cnt : 0
LB apply : 4.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (66.1%)
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.2645e+05 | 32768 | 1 | 1.004e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.4759757903348 (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 : 6.58 us (2.5%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.56 us (0.6%)
LB compute : 242.05 us (91.6%)
LB move op cnt : 0
LB apply : 3.73 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (63.4%)
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.3367e+05 | 32768 | 1 | 9.820e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.90100260302705 (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.66 us (2.3%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 266.25 us (92.2%)
LB move op cnt : 0
LB apply : 3.93 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (69.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.3664e+05 | 32768 | 1 | 9.734e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 345.95274985021143 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.654782702591368, dt = 0.009354019715986959
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (2.5%)
patch tree reduce : 2.30 us (0.9%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 248.64 us (91.9%)
LB move op cnt : 0
LB apply : 3.78 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (67.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.3358e+05 | 32768 | 1 | 9.823e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.80782493628334 (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 : 6.19 us (2.2%)
patch tree reduce : 2.18 us (0.8%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 263.96 us (92.2%)
LB move op cnt : 0
LB apply : 4.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (72.1%)
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.1906e+05 | 32768 | 1 | 1.027e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 327.8858876713751 (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.41 us (2.1%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 280.00 us (92.8%)
LB move op cnt : 0
LB apply : 3.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 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.6125e+05 | 32768 | 1 | 9.071e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 371.24466027359307 (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.48 us (2.1%)
patch tree reduce : 2.38 us (0.8%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 293.35 us (93.0%)
LB move op cnt : 0
LB apply : 3.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.2%)
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.3531e+05 | 32768 | 1 | 9.772e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 344.5884915435412 (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 : 6.27 us (2.1%)
patch tree reduce : 2.24 us (0.7%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.57 us (0.5%)
LB compute : 278.67 us (92.7%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (66.1%)
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.2742e+05 | 32768 | 1 | 1.001e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.4733531666901 (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 : 7.42 us (2.7%)
patch tree reduce : 2.15 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 256.50 us (91.8%)
LB move op cnt : 0
LB apply : 3.82 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (62.1%)
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.3230e+05 | 32768 | 1 | 9.861e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.494984236881 (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 : 6.46 us (1.8%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 1.38 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 346.09 us (93.9%)
LB move op cnt : 0
LB apply : 4.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (70.5%)
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.4414e+05 | 32768 | 1 | 9.522e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 353.6562288111501 (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.45 us (2.0%)
patch tree reduce : 2.26 us (0.7%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 293.21 us (93.1%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.5%)
Info: cfl dt = 0.009354017783935142 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3466e+05 | 32768 | 1 | 9.791e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.9178236110837 (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.57 us (2.3%)
patch tree reduce : 2.11 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 259.84 us (92.2%)
LB move op cnt : 0
LB apply : 3.89 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (67.4%)
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.4231e+05 | 32768 | 1 | 9.573e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 351.78057207426946 (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.32 us (2.5%)
patch tree reduce : 2.15 us (0.7%)
gen split merge : 1.60 us (0.5%)
split / merge op : 0/0
apply split merge : 1.61 us (0.5%)
LB compute : 270.99 us (92.0%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (67.3%)
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.4502e+05 | 32768 | 1 | 9.497e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 354.56224723855667 (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 : 6.48 us (2.1%)
patch tree reduce : 2.08 us (0.7%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 285.85 us (92.7%)
LB move op cnt : 0
LB apply : 4.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (67.3%)
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.3319e+05 | 32768 | 1 | 9.835e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.41103023258205 (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 : 6.60 us (2.4%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 250.61 us (92.1%)
LB move op cnt : 0
LB apply : 3.87 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (62.4%)
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.3306e+05 | 32768 | 1 | 9.839e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.27174320639153 (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.80 us (2.4%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 264.32 us (92.4%)
LB move op cnt : 0
LB apply : 3.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (63.0%)
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.2750e+05 | 32768 | 1 | 1.001e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.5645003876149 (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 : 6.86 us (2.5%)
patch tree reduce : 2.18 us (0.8%)
gen split merge : 1.35 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 258.20 us (92.2%)
LB move op cnt : 0
LB apply : 3.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (60.1%)
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.2992e+05 | 32768 | 1 | 9.932e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.04379437363383 (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 : 6.23 us (2.3%)
patch tree reduce : 2.16 us (0.8%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 251.61 us (91.9%)
LB move op cnt : 0
LB apply : 4.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (54.7%)
Info: cfl dt = 0.009354015873403622 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3082e+05 | 32768 | 1 | 9.905e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.97515243692686 (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.30 us (2.3%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 252.99 us (92.4%)
LB move op cnt : 0
LB apply : 3.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (64.8%)
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.3282e+05 | 32768 | 1 | 9.846e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.02381505529144 (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 : 6.50 us (2.3%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 265.73 us (92.6%)
LB move op cnt : 0
LB apply : 3.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (65.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.1174e+05 | 32768 | 1 | 1.051e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.3608417135369 (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.43 us (2.4%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 246.99 us (91.9%)
LB move op cnt : 0
LB apply : 3.93 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (67.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.2638e+05 | 32768 | 1 | 1.004e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.40797391778165 (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.50 us (2.4%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 248.35 us (92.1%)
LB move op cnt : 0
LB apply : 3.74 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (64.5%)
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.3408e+05 | 32768 | 1 | 9.809e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.31910911979486 (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.84 us (2.5%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 255.23 us (92.1%)
LB move op cnt : 0
LB apply : 3.66 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (66.7%)
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.2658e+05 | 32768 | 1 | 1.003e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.6186909214123 (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 : 6.54 us (2.3%)
patch tree reduce : 2.32 us (0.8%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 261.07 us (92.3%)
LB move op cnt : 0
LB apply : 3.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.5%)
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.2908e+05 | 32768 | 1 | 9.957e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.1871898954743 (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 : 22.49 us (7.5%)
patch tree reduce : 2.36 us (0.8%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 262.68 us (87.3%)
LB move op cnt : 0
LB apply : 4.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (69.8%)
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.3781e+05 | 32768 | 1 | 9.700e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 347.1514318114474 (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 : 6.48 us (2.3%)
patch tree reduce : 2.27 us (0.8%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 259.78 us (92.1%)
LB move op cnt : 0
LB apply : 3.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (67.5%)
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.3690e+05 | 32768 | 1 | 9.726e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.2177080792021 (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 : 6.61 us (2.1%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 294.71 us (93.3%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (68.3%)
Info: cfl dt = 0.009354014038852656 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2842e+05 | 32768 | 1 | 9.978e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 337.5005329939397 (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.75 us (2.3%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 267.12 us (92.4%)
LB move op cnt : 0
LB apply : 4.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (70.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 | 3.3554e+05 | 32768 | 1 | 9.766e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 344.8270232375484 (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 : 7.14 us (2.4%)
patch tree reduce : 2.30 us (0.8%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 270.14 us (92.4%)
LB move op cnt : 0
LB apply : 3.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (72.2%)
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.3230e+05 | 32768 | 1 | 9.861e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.49501723415665 (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 : 6.72 us (2.5%)
patch tree reduce : 2.08 us (0.8%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 250.31 us (92.3%)
LB move op cnt : 0
LB apply : 3.52 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.9%)
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.2497e+05 | 32768 | 1 | 1.008e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 333.96096933405295 (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 : 6.94 us (2.4%)
patch tree reduce : 2.15 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 265.65 us (92.2%)
LB move op cnt : 0
LB apply : 4.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (57.9%)
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.2047e+05 | 32768 | 1 | 1.023e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.33395793280465 (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.77 us (2.4%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 1.40 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 265.01 us (92.1%)
LB move op cnt : 0
LB apply : 3.80 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.9%)
Info: cfl dt = 0.009354013425837925 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2569e+05 | 32768 | 1 | 1.006e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.6973493630557 (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 : 6.93 us (2.3%)
patch tree reduce : 2.32 us (0.8%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 284.66 us (92.7%)
LB move op cnt : 0
LB apply : 4.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (71.3%)
Info: cfl dt = 0.009354012977125632 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3501e+05 | 32768 | 1 | 9.781e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 344.2780549116957 (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 : 6.71 us (2.5%)
patch tree reduce : 2.39 us (0.9%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 249.24 us (91.9%)
LB move op cnt : 0
LB apply : 3.76 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (63.1%)
Info: cfl dt = 0.009354012638376201 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3295e+05 | 32768 | 1 | 9.842e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.1605574346052 (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 : 6.71 us (2.0%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 306.07 us (93.2%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (71.0%)
Info: cfl dt = 0.00935401279214036 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2072e+05 | 32768 | 1 | 1.022e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.5882374177858 (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.44 us (2.0%)
patch tree reduce : 2.14 us (0.7%)
gen split merge : 1.39 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 297.83 us (93.0%)
LB move op cnt : 0
LB apply : 4.40 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (67.6%)
Info: cfl dt = 0.009354012489818625 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3032e+05 | 32768 | 1 | 9.920e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.4593922388951 (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 : 6.29 us (2.0%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 291.25 us (92.8%)
LB move op cnt : 0
LB apply : 4.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (68.4%)
Info: cfl dt = 0.00935401209801919 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1258e+05 | 32768 | 1 | 1.048e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.22620443303333 (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 : 6.03 us (2.0%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 277.86 us (93.1%)
LB move op cnt : 0
LB apply : 3.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (70.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 | 3.3223e+05 | 32768 | 1 | 9.863e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.41610723553833 (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 : 6.34 us (2.1%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 274.49 us (92.6%)
LB move op cnt : 0
LB apply : 3.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (64.7%)
Info: cfl dt = 0.00935401202970732 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3167e+05 | 32768 | 1 | 9.880e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.8402306467369 (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 : 6.82 us (2.3%)
patch tree reduce : 2.29 us (0.8%)
gen split merge : 1.50 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 271.55 us (92.1%)
LB move op cnt : 0
LB apply : 4.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (70.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 | 3.3521e+05 | 32768 | 1 | 9.775e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 312.03108105556606 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 30.055521896000002 (s) [Godunov][rank=0]
Info: pushing data in scheduler, N = 4096 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 1.15 ms [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: Compute load ... [DataInserterUtility][rank=0]
Info: run scheduler step ... [DataInserterUtility][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (59.4%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (0.4%)
patch tree reduce : 981.00 ns (0.4%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 255.70 us (96.2%)
LB move op cnt : 0
LB apply : 3.31 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 : 13.15 us (3.6%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.59 us (0.4%)
LB compute : 339.62 us (92.1%)
LB move op cnt : 0
LB apply : 4.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.7%)
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.0979e+05 | 32768 | 1 | 1.058e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.009354083528780794
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (2.1%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 288.12 us (93.0%)
LB move op cnt : 0
LB apply : 4.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (72.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.9234e+05 | 32768 | 1 | 1.121e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 300.43278053309297 (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.66 us (2.0%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 309.08 us (93.4%)
LB move op cnt : 0
LB apply : 4.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (67.1%)
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 | 2.8792e+05 | 32768 | 1 | 1.138e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 295.88402693118667 (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 : 6.63 us (2.1%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 286.75 us (93.0%)
LB move op cnt : 0
LB apply : 3.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (67.6%)
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 | 2.9202e+05 | 32768 | 1 | 1.122e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 300.09529811456116 (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.21 us (2.3%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 248.73 us (92.0%)
LB move op cnt : 0
LB apply : 4.25 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (64.1%)
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 | 2.9150e+05 | 32768 | 1 | 1.124e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 299.5657272676479 (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 : 7.01 us (2.7%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 242.49 us (91.8%)
LB move op cnt : 0
LB apply : 3.87 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (66.5%)
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 | 2.9707e+05 | 32768 | 1 | 1.103e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 305.2923856664857 (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.59 us (2.1%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 286.18 us (93.0%)
LB move op cnt : 0
LB apply : 3.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (66.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 | 2.9042e+05 | 32768 | 1 | 1.128e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 298.45166254244646 (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.72 us (2.4%)
patch tree reduce : 1.57 us (0.6%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 258.49 us (92.3%)
LB move op cnt : 0
LB apply : 3.82 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (62.1%)
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 | 2.9327e+05 | 32768 | 1 | 1.117e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 301.38619114157905 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06547848807403195, dt = 0.00935406009155936
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (2.4%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 256.77 us (92.4%)
LB move op cnt : 0
LB apply : 3.64 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (55.0%)
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 | 2.8471e+05 | 32768 | 1 | 1.151e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 292.5900144177811 (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.53 us (2.0%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.44 us (0.4%)
split / merge op : 0/0
apply split merge : 1.64 us (0.5%)
LB compute : 295.81 us (91.6%)
LB move op cnt : 0
LB apply : 6.95 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (64.5%)
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 | 2.8155e+05 | 32768 | 1 | 1.164e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 289.33806416471265 (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 : 6.86 us (2.5%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 248.28 us (91.8%)
LB move op cnt : 0
LB apply : 4.33 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (62.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 | 2.9395e+05 | 32768 | 1 | 1.115e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 302.0801649902337 (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.77 us (2.2%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 279.97 us (92.4%)
LB move op cnt : 0
LB apply : 4.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.6%)
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 | 2.9194e+05 | 32768 | 1 | 1.122e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 300.01292547958604 (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 : 6.09 us (2.3%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 248.70 us (92.3%)
LB move op cnt : 0
LB apply : 3.73 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (64.6%)
Info: cfl dt = 0.009354054643917838 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8875e+05 | 32768 | 1 | 1.135e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 296.74340754964146 (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.92 us (2.4%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 262.45 us (92.5%)
LB move op cnt : 0
LB apply : 3.85 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (63.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 | 2.8166e+05 | 32768 | 1 | 1.163e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 289.4497854100967 (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 : 6.47 us (1.9%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 297.88 us (89.1%)
LB move op cnt : 0
LB apply : 4.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (68.3%)
Info: cfl dt = 0.009354051217037918 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8442e+05 | 32768 | 1 | 1.152e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 292.28937202329644 (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.85 us (2.3%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 266.97 us (91.4%)
LB move op cnt : 0
LB apply : 6.13 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (62.6%)
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 | 2.8498e+05 | 32768 | 1 | 1.150e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 292.8637157322851 (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.36 us (2.3%)
patch tree reduce : 1.54 us (0.6%)
gen split merge : 1.43 us (0.5%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 252.10 us (92.3%)
LB move op cnt : 0
LB apply : 3.83 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.3%)
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 | 2.9546e+05 | 32768 | 1 | 1.109e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 303.6350307367685 (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 : 7.03 us (2.3%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.45 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 279.33 us (92.7%)
LB move op cnt : 0
LB apply : 3.78 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (64.1%)
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.0103e+05 | 32768 | 1 | 1.089e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 309.36310708738904 (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 : 7.08 us (2.3%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 283.10 us (92.8%)
LB move op cnt : 0
LB apply : 4.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (68.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 | 2.9785e+05 | 32768 | 1 | 1.100e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 306.09107174891034 (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 : 6.82 us (2.3%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 273.31 us (92.5%)
LB move op cnt : 0
LB apply : 3.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (64.2%)
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 | 2.9220e+05 | 32768 | 1 | 1.121e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 300.2831312839125 (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.76 us (2.5%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.39 us (0.5%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 250.94 us (92.0%)
LB move op cnt : 0
LB apply : 3.76 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.9%)
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 | 2.9069e+05 | 32768 | 1 | 1.127e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 298.7352647109742 (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.38 us (2.4%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.41 us (0.5%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 245.66 us (92.1%)
LB move op cnt : 0
LB apply : 3.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (62.6%)
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 | 2.7425e+05 | 32768 | 1 | 1.195e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 281.8323710693151 (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 : 6.59 us (2.4%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 257.22 us (92.4%)
LB move op cnt : 0
LB apply : 3.84 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (62.8%)
Info: cfl dt = 0.00935404374999631 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8670e+05 | 32768 | 1 | 1.143e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 294.6327666660166 (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.66 us (2.4%)
patch tree reduce : 2.04 us (0.7%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 8.03 us (2.9%)
LB compute : 247.80 us (89.7%)
LB move op cnt : 0
LB apply : 3.75 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (66.0%)
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 | 2.8989e+05 | 32768 | 1 | 1.130e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 297.9128574640688 (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 : 6.55 us (2.2%)
patch tree reduce : 1.45 us (0.5%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 275.45 us (92.8%)
LB move op cnt : 0
LB apply : 3.72 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (63.8%)
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 | 2.8944e+05 | 32768 | 1 | 1.132e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 297.4470968597625 (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.71 us (2.5%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 247.56 us (92.2%)
LB move op cnt : 0
LB apply : 3.79 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (63.2%)
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 | 2.8415e+05 | 32768 | 1 | 1.153e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 292.010117349955 (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.06 us (2.1%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 262.15 us (92.4%)
LB move op cnt : 0
LB apply : 4.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (66.8%)
Info: cfl dt = 0.009354040146256508 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9354e+05 | 32768 | 1 | 1.116e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 301.66301965266314 (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 : 6.91 us (2.4%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.60 us (0.5%)
LB compute : 269.85 us (92.4%)
LB move op cnt : 0
LB apply : 3.72 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (66.3%)
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.0052e+05 | 32768 | 1 | 1.090e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.8306475970823 (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.59 us (2.4%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 252.74 us (92.0%)
LB move op cnt : 0
LB apply : 3.72 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (61.4%)
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 | 2.9446e+05 | 32768 | 1 | 1.113e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 302.60958104901607 (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.80 us (2.1%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 981.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 251.91 us (92.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (71.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 | 2.9491e+05 | 32768 | 1 | 1.111e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 303.0694514359745 (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.97 us (2.7%)
patch tree reduce : 1.59 us (0.6%)
gen split merge : 1.34 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 240.89 us (91.8%)
LB move op cnt : 0
LB apply : 3.73 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (63.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 | 2.9922e+05 | 32768 | 1 | 1.095e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 307.4929762133986 (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.61 us (2.3%)
patch tree reduce : 2.35 us (0.8%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 259.28 us (92.1%)
LB move op cnt : 0
LB apply : 3.94 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (64.9%)
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 | 2.9797e+05 | 32768 | 1 | 1.100e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 306.20898985919126 (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 : 7.23 us (2.7%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 244.07 us (91.7%)
LB move op cnt : 0
LB apply : 3.92 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (60.6%)
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 | 2.9752e+05 | 32768 | 1 | 1.101e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 305.7557612485497 (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.95 us (2.1%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 313.70 us (93.3%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (68.0%)
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 | 2.9671e+05 | 32768 | 1 | 1.104e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 304.92091628106454 (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 : 6.42 us (2.3%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.58 us (0.6%)
LB compute : 262.36 us (92.5%)
LB move op cnt : 0
LB apply : 3.88 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (61.8%)
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 | 2.9911e+05 | 32768 | 1 | 1.095e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 307.3896910798264 (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.86 us (2.3%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 278.77 us (92.8%)
LB move op cnt : 0
LB apply : 3.91 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.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.0271e+05 | 32768 | 1 | 1.082e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.08262847300614 (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.65 us (2.2%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 276.99 us (92.8%)
LB move op cnt : 0
LB apply : 3.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (64.8%)
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 | 2.9887e+05 | 32768 | 1 | 1.096e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 307.1416886936438 (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 : 7.11 us (2.5%)
patch tree reduce : 2.37 us (0.8%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.57 us (0.6%)
LB compute : 259.18 us (91.7%)
LB move op cnt : 0
LB apply : 3.79 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (65.9%)
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 | 2.9625e+05 | 32768 | 1 | 1.106e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 304.44873163887405 (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.60 us (2.3%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 266.99 us (92.5%)
LB move op cnt : 0
LB apply : 3.64 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (62.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 | 2.9368e+05 | 32768 | 1 | 1.116e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 301.8004986519349 (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.30 us (2.2%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 263.60 us (92.5%)
LB move op cnt : 0
LB apply : 3.58 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.3%)
Info: cfl dt = 0.009354031895900786 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9524e+05 | 32768 | 1 | 1.110e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 303.40377665397074 (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.63 us (2.4%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 1.44 us (0.5%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 251.48 us (91.9%)
LB move op cnt : 0
LB apply : 3.61 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (61.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 | 2.8918e+05 | 32768 | 1 | 1.133e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 297.17931007077686 (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.40 us (2.0%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 305.69 us (93.3%)
LB move op cnt : 0
LB apply : 4.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (64.4%)
Info: cfl dt = 0.009354030935966824 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9071e+05 | 32768 | 1 | 1.127e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 298.74923169894305 (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 : 6.61 us (2.3%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.62 us (0.6%)
LB compute : 270.44 us (92.3%)
LB move op cnt : 0
LB apply : 3.79 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (69.9%)
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 | 2.9183e+05 | 32768 | 1 | 1.123e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 299.9034690413823 (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.30 us (2.3%)
patch tree reduce : 1.60 us (0.6%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 258.50 us (92.6%)
LB move op cnt : 0
LB apply : 3.77 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (61.8%)
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 | 2.9965e+05 | 32768 | 1 | 1.094e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 307.93575774013937 (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.55 us (1.9%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 319.35 us (93.7%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (65.7%)
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 | 2.9759e+05 | 32768 | 1 | 1.101e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 305.8243365940808 (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.24 us (2.0%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 293.67 us (93.2%)
LB move op cnt : 0
LB apply : 4.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (66.1%)
Info: cfl dt = 0.009354028828673377 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0049e+05 | 32768 | 1 | 1.090e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.8068039099494 (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 : 6.50 us (2.0%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.70 us (0.5%)
LB compute : 296.42 us (93.0%)
LB move op cnt : 0
LB apply : 3.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.3%)
Info: cfl dt = 0.00935402887490641 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0160e+05 | 32768 | 1 | 1.086e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 309.9467304696388 (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 : 6.52 us (2.0%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 301.62 us (93.2%)
LB move op cnt : 0
LB apply : 4.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (68.7%)
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 | 2.9588e+05 | 32768 | 1 | 1.107e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 304.0683165714931 (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.43 us (1.9%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 310.61 us (93.5%)
LB move op cnt : 0
LB apply : 4.40 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 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 | 2.9905e+05 | 32768 | 1 | 1.096e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 307.3201988552912 (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.98 us (2.4%)
patch tree reduce : 2.14 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 268.91 us (92.4%)
LB move op cnt : 0
LB apply : 3.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 17.34 us (95.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 | 2.9408e+05 | 32768 | 1 | 1.114e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 302.2173240724259 (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.60 us (2.1%)
patch tree reduce : 2.21 us (0.7%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 291.24 us (93.0%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (66.7%)
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 | 2.9601e+05 | 32768 | 1 | 1.107e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 304.2013320138014 (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.43 us (2.2%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 269.83 us (92.8%)
LB move op cnt : 0
LB apply : 4.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (61.4%)
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 | 2.9638e+05 | 32768 | 1 | 1.106e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 304.5758946269304 (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.60 us (2.2%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 1.52 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 274.47 us (92.6%)
LB move op cnt : 0
LB apply : 4.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (63.2%)
Info: cfl dt = 0.009354026122414687 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0016e+05 | 32768 | 1 | 1.092e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.4586461370604 (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.61 us (2.3%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 264.50 us (92.6%)
LB move op cnt : 0
LB apply : 3.84 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (62.9%)
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 | 2.9986e+05 | 32768 | 1 | 1.093e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.16026537205084 (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.82 us (2.2%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 282.32 us (92.8%)
LB move op cnt : 0
LB apply : 3.80 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (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.0313e+05 | 32768 | 1 | 1.081e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.5157296084089 (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.67 us (2.5%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.29 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 249.92 us (92.2%)
LB move op cnt : 0
LB apply : 3.70 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (64.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.0195e+05 | 32768 | 1 | 1.085e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 310.3058025903254 (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.69 us (2.0%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 311.01 us (93.5%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (64.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 | 2.9107e+05 | 32768 | 1 | 1.126e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 299.1246654975336 (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 : 6.43 us (2.2%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 275.00 us (92.7%)
LB move op cnt : 0
LB apply : 4.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (63.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 | 3.0712e+05 | 32768 | 1 | 1.067e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.61687931076426 (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 : 22.66 us (7.6%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 261.86 us (87.6%)
LB move op cnt : 0
LB apply : 3.81 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (63.5%)
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.0280e+05 | 32768 | 1 | 1.082e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.1780766374674 (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.48 us (2.4%)
patch tree reduce : 2.13 us (0.8%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 245.98 us (92.0%)
LB move op cnt : 0
LB apply : 4.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (67.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.0141e+05 | 32768 | 1 | 1.087e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 309.7494347127775 (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.36 us (2.4%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 242.14 us (92.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (62.6%)
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.0353e+05 | 32768 | 1 | 1.080e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.92248521918737 (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.5%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 236.97 us (91.8%)
LB move op cnt : 0
LB apply : 3.77 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (65.7%)
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.0878e+05 | 32768 | 1 | 1.061e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 317.3184619612685 (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.07 us (2.1%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 264.80 us (92.5%)
LB move op cnt : 0
LB apply : 3.88 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (63.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 | 2.6853e+05 | 32768 | 1 | 1.220e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 275.95363352162207 (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.42 us (2.2%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 275.97 us (92.8%)
LB move op cnt : 0
LB apply : 4.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (66.4%)
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.0064e+05 | 32768 | 1 | 1.090e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.961422366495 (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 : 6.76 us (2.0%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 316.68 us (93.5%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (66.7%)
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 | 2.9748e+05 | 32768 | 1 | 1.102e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 305.7107800910751 (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.86 us (1.8%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 1.67 us (0.5%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 282.94 us (88.3%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.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 | 2.9687e+05 | 32768 | 1 | 1.104e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 305.0871084909346 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6080125981712909, dt = 0.009354021851612168
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (2.4%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 273.90 us (92.7%)
LB move op cnt : 0
LB apply : 3.79 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (64.9%)
Info: cfl dt = 0.009354020937009577 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9473e+05 | 32768 | 1 | 1.112e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 302.88285318863007 (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 : 6.16 us (2.1%)
patch tree reduce : 1.43 us (0.5%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 278.76 us (92.9%)
LB move op cnt : 0
LB apply : 4.44 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.5%)
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.9897e+05 | 32768 | 1 | 1.096e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 307.2435954609361 (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.04 us (1.7%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 1.56 us (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 326.75 us (93.9%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (66.2%)
Info: cfl dt = 0.009354020929329552 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9552e+05 | 32768 | 1 | 1.109e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 303.69951701419274 (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.55 us (2.0%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 298.15 us (93.3%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (60.2%)
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.9143e+05 | 32768 | 1 | 1.124e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 299.49084736006716 (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.80 us (2.2%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 1.35 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 293.23 us (93.2%)
LB move op cnt : 0
LB apply : 4.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.9%)
Info: cfl dt = 0.00935401971598696 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0094e+05 | 32768 | 1 | 1.089e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 309.26812404403495 (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.30 us (2.0%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 296.40 us (93.1%)
LB move op cnt : 0
LB apply : 4.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (62.3%)
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 | 2.7803e+05 | 32768 | 1 | 1.179e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 285.7255426022039 (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.97 us (2.3%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 279.03 us (92.7%)
LB move op cnt : 0
LB apply : 3.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (61.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.0643e+05 | 32768 | 1 | 1.069e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 314.910673446366 (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.50 us (2.1%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 283.20 us (93.0%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.0%)
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 | 2.9653e+05 | 32768 | 1 | 1.105e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 304.73806382124775 (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 : 6.41 us (2.1%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 287.75 us (93.2%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (52.6%)
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 | 2.9999e+05 | 32768 | 1 | 1.092e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.2861775537954 (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.2%)
patch tree reduce : 1.44 us (0.5%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 271.72 us (92.8%)
LB move op cnt : 0
LB apply : 4.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (63.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 | 2.9036e+05 | 32768 | 1 | 1.129e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 298.3930025188788 (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.21 us (2.0%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 289.09 us (93.1%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (62.0%)
Info: cfl dt = 0.009354018045972506 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0532e+05 | 32768 | 1 | 1.073e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.7632435860132 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7109068179222061, dt = 0.009354018045972506
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.3%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 273.26 us (92.8%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (63.7%)
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.0197e+05 | 32768 | 1 | 1.085e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 310.32101106505746 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7202608359681786, dt = 0.009354018163947393
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (2.2%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 284.74 us (93.0%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (61.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.0158e+05 | 32768 | 1 | 1.087e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 309.9242922333692 (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 : 6.58 us (2.0%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 301.11 us (93.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (66.5%)
Info: cfl dt = 0.009354017280324749 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9977e+05 | 32768 | 1 | 1.093e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.06168238777343 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7389688719160612, dt = 0.009354017280324749
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.0%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.58 us (0.5%)
LB compute : 317.46 us (93.4%)
LB move op cnt : 0
LB apply : 4.16 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (66.7%)
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 | 2.9975e+05 | 32768 | 1 | 1.093e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.0369125605134 (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 : 7.03 us (2.4%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 275.39 us (92.6%)
LB move op cnt : 0
LB apply : 4.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (66.8%)
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 | 2.9445e+05 | 32768 | 1 | 1.113e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 302.59359349329947 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.75767690653467, dt = 0.00935401710775742
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.3%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 257.80 us (92.4%)
LB move op cnt : 0
LB apply : 3.50 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (66.3%)
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 | 2.9973e+05 | 32768 | 1 | 1.093e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.01865165697166 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7670309236424274, dt = 0.009354016556993675
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.3%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 270.43 us (92.6%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (60.7%)
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.0441e+05 | 32768 | 1 | 1.076e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 312.8287708279348 (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 : 6.32 us (2.1%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 275.35 us (92.8%)
LB move op cnt : 0
LB apply : 4.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (62.9%)
Info: cfl dt = 0.00935401647074776 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9078e+05 | 32768 | 1 | 1.127e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 298.82127204084514 (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 : 6.59 us (2.2%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 281.69 us (92.9%)
LB move op cnt : 0
LB apply : 3.80 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (63.2%)
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.0517e+05 | 32768 | 1 | 1.074e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.6075791260406 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7950929732258797, dt = 0.009354015873403622
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (2.0%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.65 us (0.6%)
LB compute : 269.40 us (92.8%)
LB move op cnt : 0
LB apply : 3.65 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (64.7%)
Info: cfl dt = 0.009354015813689246 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0372e+05 | 32768 | 1 | 1.079e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 312.1179820009622 (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.44 us (2.2%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 277.25 us (92.9%)
LB move op cnt : 0
LB apply : 3.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (67.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.1686e+05 | 32768 | 1 | 1.034e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 325.6285106731219 (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.44 us (2.4%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 1.31 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 252.23 us (92.1%)
LB move op cnt : 0
LB apply : 4.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (70.0%)
Info: cfl dt = 0.00935401522722641 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0791e+05 | 32768 | 1 | 1.064e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.43246153032067 (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 : 6.59 us (2.5%)
patch tree reduce : 1.58 us (0.6%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 244.04 us (92.1%)
LB move op cnt : 0
LB apply : 3.48 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (63.8%)
Info: cfl dt = 0.009354015109923043 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0338e+05 | 32768 | 1 | 1.080e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.7750776977373 (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.40 us (2.4%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 244.99 us (92.2%)
LB move op cnt : 0
LB apply : 3.63 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (63.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 | 3.0494e+05 | 32768 | 1 | 1.075e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.3737997272413 (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.52 us (2.4%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 245.17 us (92.0%)
LB move op cnt : 0
LB apply : 3.56 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (64.1%)
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.0956e+05 | 32768 | 1 | 1.059e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.1256102107572 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8512170664256938, dt = 0.00935401461635011
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.4%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.33 us (0.5%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 246.14 us (91.9%)
LB move op cnt : 0
LB apply : 3.87 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (61.9%)
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.0829e+05 | 32768 | 1 | 1.063e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.8159238313442 (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 : 6.67 us (2.3%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 271.87 us (92.4%)
LB move op cnt : 0
LB apply : 4.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (68.8%)
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.1614e+05 | 32768 | 1 | 1.037e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.8828646027509 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8699250954843718, dt = 0.009354014772223147
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (2.1%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 265.34 us (92.6%)
LB move op cnt : 0
LB apply : 3.79 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (66.4%)
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.2902e+05 | 32768 | 1 | 9.959e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.12131445551216 (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.29 us (2.4%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 242.31 us (92.1%)
LB move op cnt : 0
LB apply : 3.72 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (63.3%)
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.1444e+05 | 32768 | 1 | 1.042e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.1359762817257 (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.36 us (2.0%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 1.52 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 295.32 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.26 us (64.2%)
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.1673e+05 | 32768 | 1 | 1.035e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 325.48915064749445 (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 : 6.00 us (1.8%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 312.80 us (93.6%)
LB move op cnt : 0
LB apply : 3.98 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (70.4%)
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.1690e+05 | 32768 | 1 | 1.034e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 325.66396038957873 (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.03 us (1.9%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 295.91 us (93.4%)
LB move op cnt : 0
LB apply : 3.80 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (70.0%)
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.1472e+05 | 32768 | 1 | 1.041e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.42812509537174 (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 : 6.60 us (2.3%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 260.62 us (92.3%)
LB move op cnt : 0
LB apply : 3.84 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (65.1%)
Info: cfl dt = 0.00935401342583792 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1773e+05 | 32768 | 1 | 1.031e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.51660725211184 (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 : 7.09 us (2.4%)
patch tree reduce : 2.19 us (0.7%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 278.60 us (92.5%)
LB move op cnt : 0
LB apply : 4.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (67.6%)
Info: cfl dt = 0.00935401297712563 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1338e+05 | 32768 | 1 | 1.046e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 322.04898863787304 (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 : 7.05 us (2.6%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 248.77 us (92.1%)
LB move op cnt : 0
LB apply : 3.48 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (62.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.1597e+05 | 32768 | 1 | 1.037e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.7104166378611 (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 : 6.44 us (2.4%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 252.70 us (92.3%)
LB move op cnt : 0
LB apply : 3.67 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (62.4%)
Info: cfl dt = 0.009354012792140357 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1806e+05 | 32768 | 1 | 1.030e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.85655394002646 (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.62 us (2.5%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 1.29 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 246.14 us (92.1%)
LB move op cnt : 0
LB apply : 3.49 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (57.6%)
Info: cfl dt = 0.009354012489818625 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0599e+05 | 32768 | 1 | 1.071e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 314.45913177731774 (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 : 6.29 us (2.3%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.39 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 249.98 us (92.2%)
LB move op cnt : 0
LB apply : 3.81 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (67.9%)
Info: cfl dt = 0.009354012098019188 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1647e+05 | 32768 | 1 | 1.035e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 325.2274245261182 (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.76 us (2.5%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 247.93 us (92.0%)
LB move op cnt : 0
LB apply : 3.78 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (65.9%)
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.1607e+05 | 32768 | 1 | 1.037e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.8128668654996 (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 : 7.20 us (2.4%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 271.35 us (92.2%)
LB move op cnt : 0
LB apply : 4.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (64.8%)
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.1591e+05 | 32768 | 1 | 1.037e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.6520492564851 (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.24 us (2.4%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 238.46 us (91.9%)
LB move op cnt : 0
LB apply : 3.71 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (58.9%)
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.1553e+05 | 32768 | 1 | 1.038e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 293.71227406627975 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 41.999196503 (s) [Godunov][rank=0]
Info: pushing data in scheduler, N = 4096 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 1.04 ms [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: Compute load ... [DataInserterUtility][rank=0]
Info: run scheduler step ... [DataInserterUtility][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.05 us (60.2%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (0.4%)
patch tree reduce : 1.24 us (0.4%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 266.72 us (96.0%)
LB move op cnt : 0
LB apply : 3.22 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 : 10.77 us (3.4%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 681.00 ns (0.2%)
LB compute : 295.97 us (92.7%)
LB move op cnt : 0
LB apply : 3.03 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (63.3%)
Info: cfl dt = 0.009354083528780794 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2892e+05 | 32768 | 1 | 9.962e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.009354083528780794
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (2.5%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 250.13 us (91.6%)
LB move op cnt : 0
LB apply : 4.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 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.3194e+05 | 32768 | 1 | 9.872e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.1247150847455 (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.98 us (2.6%)
patch tree reduce : 2.16 us (0.8%)
gen split merge : 1.36 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 241.68 us (91.5%)
LB move op cnt : 0
LB apply : 3.97 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (64.8%)
Info: cfl dt = 0.009354072671452501 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3515e+05 | 32768 | 1 | 9.777e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 344.4255257980071 (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.87 us (2.1%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 303.39 us (93.5%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (71.2%)
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.3353e+05 | 32768 | 1 | 9.825e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.75494236197363 (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.66 us (2.4%)
patch tree reduce : 2.34 us (0.9%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 249.62 us (91.8%)
LB move op cnt : 0
LB apply : 4.02 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (47.6%)
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.3250e+05 | 32768 | 1 | 9.855e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.70073014166803 (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.11 us (2.3%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 246.45 us (91.9%)
LB move op cnt : 0
LB apply : 3.74 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (63.7%)
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.2764e+05 | 32768 | 1 | 1.000e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.7036111630379 (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 : 6.71 us (2.3%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 275.14 us (92.6%)
LB move op cnt : 0
LB apply : 4.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.3%)
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.3624e+05 | 32768 | 1 | 9.746e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 345.53809026339303 (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 : 6.76 us (2.4%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 256.14 us (92.3%)
LB move op cnt : 0
LB apply : 3.83 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (64.5%)
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.3496e+05 | 32768 | 1 | 9.783e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 344.23087921592065 (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 : 6.54 us (2.4%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.58 us (0.6%)
LB compute : 255.41 us (92.3%)
LB move op cnt : 0
LB apply : 3.70 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.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.3633e+05 | 32768 | 1 | 9.743e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 345.6380991164688 (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.29 us (2.0%)
patch tree reduce : 1.50 us (0.5%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 294.33 us (93.2%)
LB move op cnt : 0
LB apply : 4.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (62.9%)
Info: cfl dt = 0.009354051190739362 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3428e+05 | 32768 | 1 | 9.802e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.53362027444643 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08418660494127406, dt = 0.009354051190739362
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.4%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 254.57 us (92.1%)
LB move op cnt : 0
LB apply : 3.72 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (60.0%)
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.3386e+05 | 32768 | 1 | 9.815e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.0973537148722 (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.33 us (2.1%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 285.21 us (93.0%)
LB move op cnt : 0
LB apply : 4.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (63.0%)
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.3239e+05 | 32768 | 1 | 9.858e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.5882055547031 (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.77 us (2.1%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 306.27 us (93.3%)
LB move op cnt : 0
LB apply : 3.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (68.6%)
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.3026e+05 | 32768 | 1 | 9.922e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.40028584328405 (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.59 us (2.4%)
patch tree reduce : 2.18 us (0.8%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 256.91 us (92.0%)
LB move op cnt : 0
LB apply : 3.89 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (63.3%)
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.2153e+05 | 32768 | 1 | 1.019e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 330.4221093628073 (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.32 us (2.2%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 264.31 us (92.6%)
LB move op cnt : 0
LB apply : 3.61 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (63.0%)
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.2915e+05 | 32768 | 1 | 9.955e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.2519782825419 (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.85 us (2.2%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 282.95 us (92.8%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (69.7%)
Info: cfl dt = 0.009354036781388759 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2312e+05 | 32768 | 1 | 1.014e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.06089091768746 (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 : 6.87 us (2.0%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 314.17 us (93.4%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (70.5%)
Info: cfl dt = 0.009354035595879428 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1537e+05 | 32768 | 1 | 1.039e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.09780901448806 (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.64 us (2.4%)
patch tree reduce : 2.30 us (0.8%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.70 us (0.6%)
LB compute : 258.42 us (92.1%)
LB move op cnt : 0
LB apply : 3.74 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (67.2%)
Info: cfl dt = 0.009354033526464313 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2613e+05 | 32768 | 1 | 1.005e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.1518522429481 (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 : 6.44 us (2.2%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 271.53 us (92.7%)
LB move op cnt : 0
LB apply : 3.70 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (64.2%)
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.2872e+05 | 32768 | 1 | 9.968e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 337.81264762544095 (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 : 6.26 us (1.9%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 305.96 us (93.5%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (67.7%)
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.2154e+05 | 32768 | 1 | 1.019e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 330.4322190520451 (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.45 us (2.0%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 284.74 us (88.5%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (70.0%)
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.4374e+05 | 32768 | 1 | 9.533e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 353.24670001507513 (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.52 us (2.3%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 257.58 us (92.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (62.1%)
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 | 4.3345e+05 | 32768 | 1 | 7.560e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 445.4422087768773 (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 : 7.28 us (2.6%)
patch tree reduce : 1.61 us (0.6%)
gen split merge : 1.32 us (0.5%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 259.58 us (92.0%)
LB move op cnt : 0
LB apply : 3.85 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (68.4%)
Info: cfl dt = 0.00935402222323993 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0255e+05 | 32768 | 1 | 8.140e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 413.68857579002696 (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 : 7.08 us (2.5%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 266.40 us (92.3%)
LB move op cnt : 0
LB apply : 3.94 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (68.8%)
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 | 4.3948e+05 | 32768 | 1 | 7.456e-02 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 451.6360711127398 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21514311948817322, dt = 0.00935402230445667
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.0%)
patch tree reduce : 20.57 us (6.3%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 286.64 us (87.5%)
LB move op cnt : 0
LB apply : 4.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (71.2%)
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.3867e+05 | 32768 | 1 | 9.676e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 348.0374271845787 (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.52 us (2.5%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 235.33 us (91.8%)
LB move op cnt : 0
LB apply : 3.81 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (65.7%)
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 | 4.1370e+05 | 32768 | 1 | 7.921e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 425.13957245346757 (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 : 6.89 us (2.7%)
patch tree reduce : 2.28 us (0.9%)
gen split merge : 971.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 236.82 us (91.5%)
LB move op cnt : 0
LB apply : 3.89 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (64.8%)
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 | 4.4061e+05 | 32768 | 1 | 7.437e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 452.79412533604926 (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.49 us (2.0%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 298.82 us (93.2%)
LB move op cnt : 0
LB apply : 3.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (68.5%)
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 | 4.3133e+05 | 32768 | 1 | 7.597e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 443.2657151076615 (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.55 us (2.6%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 227.97 us (91.6%)
LB move op cnt : 0
LB apply : 3.58 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (64.4%)
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 | 4.4460e+05 | 32768 | 1 | 7.370e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 456.90078197067294 (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.92 us (2.8%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 227.97 us (91.0%)
LB move op cnt : 0
LB apply : 4.19 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (65.1%)
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 | 4.4869e+05 | 32768 | 1 | 7.303e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 461.105882222793 (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 : 6.29 us (2.5%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 1.31 us (0.5%)
split / merge op : 0/0
apply split merge : 1.43 us (0.6%)
LB compute : 230.91 us (91.6%)
LB move op cnt : 0
LB apply : 3.96 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.4%)
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 | 4.2684e+05 | 32768 | 1 | 7.677e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 438.649213984984 (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.44 us (2.5%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 238.85 us (91.7%)
LB move op cnt : 0
LB apply : 3.48 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.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 | 4.3536e+05 | 32768 | 1 | 7.527e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 447.39845431736336 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28997523413974374, dt = 0.009354005105330507
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.7%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 226.33 us (91.2%)
LB move op cnt : 0
LB apply : 3.47 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.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.4415e+05 | 32768 | 1 | 9.521e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 353.6701956772555 (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 : 7.03 us (2.7%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 239.27 us (91.5%)
LB move op cnt : 0
LB apply : 3.83 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (67.3%)
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.4196e+05 | 32768 | 1 | 9.582e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 351.4222105647293 (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 : 7.12 us (2.5%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 261.43 us (91.9%)
LB move op cnt : 0
LB apply : 4.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (66.9%)
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 | 4.4530e+05 | 32768 | 1 | 7.359e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 457.6199210624048 (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 : 6.68 us (2.0%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 318.10 us (93.4%)
LB move op cnt : 0
LB apply : 4.16 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.4%)
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 | 4.3429e+05 | 32768 | 1 | 7.545e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 446.30647537862797 (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 : 7.16 us (2.5%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 264.64 us (92.1%)
LB move op cnt : 0
LB apply : 4.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (66.3%)
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 | 4.3758e+05 | 32768 | 1 | 7.489e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 449.68090726855223 (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.02 us (1.9%)
patch tree reduce : 2.41 us (0.7%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 302.35 us (93.3%)
LB move op cnt : 0
LB apply : 3.97 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (69.6%)
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 | 4.3700e+05 | 32768 | 1 | 7.498e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 449.0843307799293 (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 : 6.70 us (2.5%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 246.80 us (91.8%)
LB move op cnt : 0
LB apply : 3.75 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (66.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 | 4.4741e+05 | 32768 | 1 | 7.324e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 459.7862003449017 (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.71 us (2.3%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 267.58 us (92.4%)
LB move op cnt : 0
LB apply : 3.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (64.5%)
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.3018e+05 | 32768 | 1 | 9.924e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.3118390932509 (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.95 us (2.0%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 317.03 us (93.4%)
LB move op cnt : 0
LB apply : 4.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (67.1%)
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 | 4.2283e+05 | 32768 | 1 | 7.750e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 434.5286502926441 (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.79 us (2.0%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 1.51 us (0.5%)
split / merge op : 0/0
apply split merge : 1.45 us (0.4%)
LB compute : 309.58 us (93.2%)
LB move op cnt : 0
LB apply : 3.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (67.9%)
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 | 4.4082e+05 | 32768 | 1 | 7.433e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 453.01008775706896 (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.51 us (2.2%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 274.10 us (92.5%)
LB move op cnt : 0
LB apply : 4.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (67.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 | 4.3237e+05 | 32768 | 1 | 7.579e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 444.32557006310685 (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 : 6.66 us (2.0%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 304.60 us (93.4%)
LB move op cnt : 0
LB apply : 4.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (71.0%)
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 | 4.3737e+05 | 32768 | 1 | 7.492e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 449.4697679792803 (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 : 6.15 us (2.4%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 235.35 us (91.9%)
LB move op cnt : 0
LB apply : 3.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.6%)
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 | 4.4409e+05 | 32768 | 1 | 7.379e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 456.37013887890276 (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 : 6.45 us (2.3%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 261.08 us (92.3%)
LB move op cnt : 0
LB apply : 3.86 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (64.2%)
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 | 4.2733e+05 | 32768 | 1 | 7.668e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 439.1504429366927 (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 : 6.44 us (2.2%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 268.69 us (92.3%)
LB move op cnt : 0
LB apply : 4.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.0%)
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.7396e+05 | 32768 | 1 | 8.762e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 384.3010490074572 (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.35 us (2.6%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 226.90 us (91.2%)
LB move op cnt : 0
LB apply : 3.79 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (67.4%)
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.3027e+05 | 32768 | 1 | 9.922e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.40607413884123 (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 : 7.57 us (2.4%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 297.13 us (92.8%)
LB move op cnt : 0
LB apply : 3.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (73.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.8320e+05 | 32768 | 1 | 8.551e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 393.79566589653376 (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.92 us (2.8%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 227.56 us (91.2%)
LB move op cnt : 0
LB apply : 3.70 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (64.4%)
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 | 4.6825e+05 | 32768 | 1 | 6.998e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 481.200283300695 (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 : 6.86 us (2.5%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 1.33 us (0.5%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 248.23 us (91.6%)
LB move op cnt : 0
LB apply : 4.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (66.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 | 4.6495e+05 | 32768 | 1 | 7.048e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 477.80836204820275 (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.44 us (2.3%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 256.24 us (92.3%)
LB move op cnt : 0
LB apply : 3.83 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.9%)
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.5593e+05 | 32768 | 1 | 9.206e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 365.7779106020265 (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 : 6.57 us (2.3%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.61 us (0.6%)
split / merge op : 0/0
apply split merge : 1.62 us (0.6%)
LB compute : 261.08 us (92.2%)
LB move op cnt : 0
LB apply : 3.87 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (65.8%)
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.4141e+05 | 32768 | 1 | 9.598e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 350.8517384036349 (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 : 7.09 us (2.7%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 241.16 us (91.6%)
LB move op cnt : 0
LB apply : 3.92 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.4%)
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.4123e+05 | 32768 | 1 | 9.603e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 350.6637658115973 (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 : 6.93 us (2.5%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 255.78 us (92.1%)
LB move op cnt : 0
LB apply : 3.90 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (64.9%)
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.4764e+05 | 32768 | 1 | 9.426e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 357.25318283162255 (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.44 us (2.3%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 264.06 us (92.4%)
LB move op cnt : 0
LB apply : 4.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (66.7%)
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 | 3.4186e+05 | 32768 | 1 | 9.585e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 351.3164589140321 (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 : 6.71 us (2.2%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 282.58 us (92.9%)
LB move op cnt : 0
LB apply : 3.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (68.1%)
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 | 4.4482e+05 | 32768 | 1 | 7.367e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 457.1259936121561 (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 : 23.86 us (7.7%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 269.97 us (87.3%)
LB move op cnt : 0
LB apply : 4.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (66.7%)
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 | 4.5292e+05 | 32768 | 1 | 7.235e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 465.4512329652122 (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 : 6.91 us (2.4%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 266.25 us (92.4%)
LB move op cnt : 0
LB apply : 3.69 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (66.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 | 3.3186e+05 | 32768 | 1 | 9.874e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.0363728145641 (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.82 us (2.4%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 259.13 us (92.2%)
LB move op cnt : 0
LB apply : 3.79 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (66.1%)
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.9309e+05 | 32768 | 1 | 8.336e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 403.9649518636605 (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 : 6.53 us (2.3%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 263.37 us (92.4%)
LB move op cnt : 0
LB apply : 3.95 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (62.0%)
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.3661e+05 | 32768 | 1 | 9.735e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 345.91892048570975 (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.1%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 276.80 us (92.6%)
LB move op cnt : 0
LB apply : 4.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (67.0%)
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.7972e+05 | 32768 | 1 | 8.629e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 390.22450765482347 (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 : 7.05 us (2.5%)
patch tree reduce : 2.29 us (0.8%)
gen split merge : 1.41 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 257.77 us (92.0%)
LB move op cnt : 0
LB apply : 3.78 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (64.6%)
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 | 4.5568e+05 | 32768 | 1 | 7.191e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 468.28103178829446 (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.62 us (2.4%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 259.35 us (92.4%)
LB move op cnt : 0
LB apply : 3.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (63.6%)
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 | 4.5268e+05 | 32768 | 1 | 7.239e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 465.1947295656232 (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 : 7.27 us (2.2%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 302.89 us (92.9%)
LB move op cnt : 0
LB apply : 4.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (68.5%)
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 | 4.4914e+05 | 32768 | 1 | 7.296e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 461.5598347336486 (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 : 6.90 us (2.2%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 296.71 us (93.0%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.4%)
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.5210e+05 | 32768 | 1 | 9.307e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 361.8326544141807 (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 : 6.37 us (1.9%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.37 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 310.76 us (93.5%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (66.4%)
Info: cfl dt = 0.009353948799885563 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4480e+05 | 32768 | 1 | 9.504e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 354.3322188663929 (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.88 us (2.4%)
patch tree reduce : 2.27 us (0.8%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 259.70 us (92.2%)
LB move op cnt : 0
LB apply : 3.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (65.1%)
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 | 4.3033e+05 | 32768 | 1 | 7.615e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 442.23405748275775 (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 : 6.44 us (2.3%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 259.85 us (92.5%)
LB move op cnt : 0
LB apply : 3.51 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (62.8%)
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 | 4.0534e+05 | 32768 | 1 | 8.084e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 416.54848071742987 (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.81 us (2.1%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 302.44 us (93.1%)
LB move op cnt : 0
LB apply : 4.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (73.1%)
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 | 4.4913e+05 | 32768 | 1 | 7.296e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 461.5554110534385 (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.80 us (2.0%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 319.89 us (93.6%)
LB move op cnt : 0
LB apply : 3.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (68.1%)
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 | 4.4799e+05 | 32768 | 1 | 7.314e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 460.3818388090703 (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 : 6.90 us (2.4%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 260.80 us (92.5%)
LB move op cnt : 0
LB apply : 3.87 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (63.0%)
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 | 4.4923e+05 | 32768 | 1 | 7.294e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 461.65744848065395 (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 : 6.41 us (2.3%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.38 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 260.02 us (92.4%)
LB move op cnt : 0
LB apply : 3.61 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (67.4%)
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 | 4.5293e+05 | 32768 | 1 | 7.235e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 465.45599311523176 (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.96 us (2.5%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 259.03 us (92.1%)
LB move op cnt : 0
LB apply : 3.84 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (64.6%)
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 | 3.4532e+05 | 32768 | 1 | 9.489e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 354.869733898719 (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.28 us (2.3%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 256.50 us (92.4%)
LB move op cnt : 0
LB apply : 3.87 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (57.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 | 3.4562e+05 | 32768 | 1 | 9.481e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 355.1747541774373 (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 : 6.60 us (2.3%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 261.74 us (92.4%)
LB move op cnt : 0
LB apply : 3.75 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (64.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 | 4.3973e+05 | 32768 | 1 | 7.452e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 451.89389536358726 (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 : 6.67 us (2.3%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 262.97 us (92.5%)
LB move op cnt : 0
LB apply : 3.75 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (62.1%)
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 | 4.5214e+05 | 32768 | 1 | 7.247e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 464.6399387344433 (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 : 6.82 us (2.2%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 281.50 us (92.8%)
LB move op cnt : 0
LB apply : 4.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (66.1%)
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.5272e+05 | 32768 | 1 | 9.290e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 362.47916678757645 (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 : 6.72 us (2.3%)
patch tree reduce : 2.23 us (0.8%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 266.80 us (92.5%)
LB move op cnt : 0
LB apply : 3.83 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.7%)
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.3330e+05 | 32768 | 1 | 9.831e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.5189993148666 (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.93 us (2.4%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 264.14 us (92.4%)
LB move op cnt : 0
LB apply : 3.89 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (64.1%)
Info: cfl dt = 0.009353928735686563 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3193e+05 | 32768 | 1 | 7.586e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 443.87228673630653 (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 : 6.33 us (2.0%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.61 us (0.5%)
LB compute : 289.47 us (92.8%)
LB move op cnt : 0
LB apply : 4.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (68.8%)
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 | 3.4268e+05 | 32768 | 1 | 9.562e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 352.1588061546441 (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 : 6.65 us (2.4%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 1.39 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 259.86 us (92.3%)
LB move op cnt : 0
LB apply : 3.81 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (70.1%)
Info: cfl dt = 0.009353924730538666 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0699e+05 | 32768 | 1 | 8.051e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 418.2472601411044 (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 : 6.64 us (2.1%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 298.22 us (93.0%)
LB move op cnt : 0
LB apply : 4.62 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (72.7%)
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 | 4.4962e+05 | 32768 | 1 | 7.288e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 462.05094302665304 (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 : 6.91 us (2.4%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 264.35 us (92.4%)
LB move op cnt : 0
LB apply : 3.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (63.4%)
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 | 4.5358e+05 | 32768 | 1 | 7.224e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 466.1270374846152 (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.92 us (2.5%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 260.56 us (92.3%)
LB move op cnt : 0
LB apply : 3.79 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (68.3%)
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.5882e+05 | 32768 | 1 | 7.142e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 471.5055109124632 (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.19 us (2.5%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 230.55 us (91.7%)
LB move op cnt : 0
LB apply : 3.72 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.3%)
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.6473e+05 | 32768 | 1 | 7.051e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 477.58511214570495 (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 : 6.64 us (2.4%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 260.58 us (92.5%)
LB move op cnt : 0
LB apply : 3.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (60.4%)
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.4136e+05 | 32768 | 1 | 7.424e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 453.5678633138638 (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 : 6.51 us (2.5%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 241.55 us (92.0%)
LB move op cnt : 0
LB apply : 3.81 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (65.9%)
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.2562e+05 | 32768 | 1 | 7.699e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 437.3888392168077 (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 : 6.64 us (2.6%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 238.03 us (91.6%)
LB move op cnt : 0
LB apply : 3.84 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (63.2%)
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.3020e+05 | 32768 | 1 | 7.617e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 442.0907622985404 (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.65 us (2.3%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.37 us (0.5%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 273.17 us (92.5%)
LB move op cnt : 0
LB apply : 4.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (67.8%)
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.2750e+05 | 32768 | 1 | 7.665e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 439.3167067269314 (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 : 7.29 us (2.8%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 235.16 us (91.2%)
LB move op cnt : 0
LB apply : 3.64 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (66.1%)
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.2540e+05 | 32768 | 1 | 7.703e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 437.15956009212266 (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 : 6.84 us (2.0%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 322.62 us (93.6%)
LB move op cnt : 0
LB apply : 4.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (65.8%)
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 | 4.1887e+05 | 32768 | 1 | 7.823e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 430.45479028659 (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.58 us (2.0%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 312.37 us (93.5%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (67.0%)
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 | 4.4199e+05 | 32768 | 1 | 7.414e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 454.2166543237697 (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 : 7.45 us (2.3%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 305.25 us (93.1%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (64.1%)
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 | 4.1567e+05 | 32768 | 1 | 7.883e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 427.16355028369196 (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.67 us (1.8%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 339.48 us (93.9%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (70.6%)
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 | 4.5367e+05 | 32768 | 1 | 7.223e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 466.2113889508444 (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 : 6.78 us (2.3%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 277.98 us (93.0%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (64.5%)
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 | 4.4498e+05 | 32768 | 1 | 7.364e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 457.28911424401224 (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 : 6.45 us (2.5%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.47 us (0.6%)
LB compute : 235.39 us (91.7%)
LB move op cnt : 0
LB apply : 3.67 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (62.5%)
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 | 4.5826e+05 | 32768 | 1 | 7.151e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 470.9318668352212 (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 : 6.83 us (2.3%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 273.47 us (92.5%)
LB move op cnt : 0
LB apply : 4.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (70.7%)
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 | 4.5673e+05 | 32768 | 1 | 7.174e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 469.36204052438734 (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.75 us (2.3%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.65 us (0.6%)
LB compute : 272.05 us (92.6%)
LB move op cnt : 0
LB apply : 3.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.0%)
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 | 4.5529e+05 | 32768 | 1 | 7.197e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 467.87928685969035 (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 : 6.65 us (2.6%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.45 us (0.6%)
LB compute : 237.23 us (91.6%)
LB move op cnt : 0
LB apply : 3.73 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (76.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 | 4.5032e+05 | 32768 | 1 | 7.277e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 462.77081415491483 (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 : 7.01 us (2.7%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 242.48 us (91.9%)
LB move op cnt : 0
LB apply : 3.77 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (63.1%)
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 | 4.2803e+05 | 32768 | 1 | 7.656e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 439.8622948768929 (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 : 6.98 us (2.6%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.51 us (0.6%)
LB compute : 244.57 us (91.7%)
LB move op cnt : 0
LB apply : 3.95 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (63.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.2630e+05 | 32768 | 1 | 1.004e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.32331330406356 (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.73 us (2.2%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 277.53 us (92.7%)
LB move op cnt : 0
LB apply : 3.89 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (68.6%)
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.0988e+05 | 32768 | 1 | 1.057e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.44339802565105 (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 : 6.25 us (2.1%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.41 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 280.87 us (92.9%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (65.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.7037e+05 | 32768 | 1 | 8.847e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 380.6066142642191 (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 : 6.35 us (2.5%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.40 us (0.6%)
LB compute : 232.92 us (91.6%)
LB move op cnt : 0
LB apply : 3.81 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (63.8%)
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 | 4.5602e+05 | 32768 | 1 | 7.186e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 468.6311611779885 (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.33 us (2.5%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 981.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 230.31 us (91.6%)
LB move op cnt : 0
LB apply : 3.94 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (67.3%)
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 | 4.5139e+05 | 32768 | 1 | 7.259e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 463.8659339285668 (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 : 6.50 us (2.3%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 262.75 us (92.4%)
LB move op cnt : 0
LB apply : 3.89 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.8%)
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.1979e+05 | 32768 | 1 | 1.025e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.6316016067436 (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.30 us (2.3%)
patch tree reduce : 2.28 us (0.8%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 254.03 us (92.1%)
LB move op cnt : 0
LB apply : 4.03 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (62.8%)
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 | 2.9664e+05 | 32768 | 1 | 1.105e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 276.3229311724429 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 51.246767173 (s) [Godunov][rank=0]
Info: pushing data in scheduler, N = 4096 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 1.24 ms [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: Compute load ... [DataInserterUtility][rank=0]
Info: run scheduler step ... [DataInserterUtility][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (60.6%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (0.3%)
patch tree reduce : 1.03 us (0.3%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 303.06 us (91.8%)
LB move op cnt : 0
LB apply : 20.22 us (6.1%)
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 : 13.05 us (3.9%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 305.32 us (91.7%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.1%)
Info: cfl dt = 0.009354083528780794 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0533e+05 | 32768 | 1 | 1.073e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.009354083528780794
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (2.6%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 252.35 us (91.8%)
LB move op cnt : 0
LB apply : 4.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (63.3%)
Info: cfl dt = 0.009354072778192094 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9855e+05 | 32768 | 1 | 1.098e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 306.8144612604132 (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 : 7.00 us (2.7%)
patch tree reduce : 2.13 us (0.8%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 238.05 us (91.5%)
LB move op cnt : 0
LB apply : 3.55 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (63.6%)
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 | 4.2714e+05 | 32768 | 1 | 7.672e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 438.9565568969864 (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.65 us (2.7%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 228.97 us (91.4%)
LB move op cnt : 0
LB apply : 4.31 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (63.1%)
Info: cfl dt = 0.009354068824705755 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4272e+05 | 32768 | 1 | 7.401e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 454.97304096436903 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028062226106291145, dt = 0.009354068824705755
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (2.3%)
patch tree reduce : 1.62 us (0.6%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 270.31 us (92.5%)
LB move op cnt : 0
LB apply : 4.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (64.2%)
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.1919e+05 | 32768 | 1 | 7.817e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 430.7855393336668 (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.47 us (2.3%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.56 us (0.6%)
LB compute : 257.21 us (92.1%)
LB move op cnt : 0
LB apply : 4.50 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (65.8%)
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.4143e+05 | 32768 | 1 | 7.423e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 453.6415957094301 (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.70 us (2.2%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 285.52 us (92.7%)
LB move op cnt : 0
LB apply : 4.44 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.9%)
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.2706e+05 | 32768 | 1 | 7.673e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 438.8724720850254 (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.55 us (2.3%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 264.47 us (92.5%)
LB move op cnt : 0
LB apply : 4.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (63.6%)
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.3475e+05 | 32768 | 1 | 7.537e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 446.77786279500583 (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.60 us (2.3%)
patch tree reduce : 2.27 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 271.19 us (92.6%)
LB move op cnt : 0
LB apply : 4.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.2%)
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.0922e+05 | 32768 | 1 | 8.007e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 420.53935334924427 (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.45 us (2.2%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 268.82 us (92.8%)
LB move op cnt : 0
LB apply : 4.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.6%)
Info: cfl dt = 0.009354050526566368 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1640e+05 | 32768 | 1 | 1.036e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 325.1572777003973 (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.41 us (2.3%)
patch tree reduce : 2.32 us (0.9%)
gen split merge : 1.34 us (0.5%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 250.47 us (91.7%)
LB move op cnt : 0
LB apply : 4.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (64.1%)
Info: cfl dt = 0.009354047505936595 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1673e+05 | 32768 | 1 | 1.035e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 325.49069886469584 (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 : 6.66 us (2.5%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 245.25 us (92.0%)
LB move op cnt : 0
LB apply : 4.02 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (59.6%)
Info: cfl dt = 0.0093540438900453 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1737e+05 | 32768 | 1 | 7.851e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 428.9138874427703 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10289468171404789, dt = 0.0093540438900453
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (2.4%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.34 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 249.40 us (92.2%)
LB move op cnt : 0
LB apply : 4.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (65.3%)
Info: cfl dt = 0.009354042436406503 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2213e+05 | 32768 | 1 | 7.762e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 433.81339688442375 (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.32 us (2.3%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 256.16 us (92.5%)
LB move op cnt : 0
LB apply : 3.84 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.3%)
Info: cfl dt = 0.009354040823324547 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1104e+05 | 32768 | 1 | 7.972e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 422.41347738871735 (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 : 7.03 us (2.4%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 275.20 us (92.3%)
LB move op cnt : 0
LB apply : 3.89 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (63.7%)
Info: cfl dt = 0.009354037151122919 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0483e+05 | 32768 | 1 | 1.075e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.26167649158765 (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 : 6.98 us (2.5%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 258.22 us (92.4%)
LB move op cnt : 0
LB apply : 3.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (67.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.1843e+05 | 32768 | 1 | 7.831e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 430.00181291584107 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14031084601494717, dt = 0.009354035152573763
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.3%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.65 us (0.6%)
split / merge op : 0/0
apply split merge : 1.62 us (0.6%)
LB compute : 265.90 us (92.0%)
LB move op cnt : 0
LB apply : 4.51 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (63.7%)
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.6798e+05 | 32768 | 1 | 8.905e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 378.1568517321258 (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 : 7.29 us (2.8%)
patch tree reduce : 1.62 us (0.6%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 235.04 us (91.5%)
LB move op cnt : 0
LB apply : 3.77 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (59.6%)
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.1240e+05 | 32768 | 1 | 1.049e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.041227352687 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1590189160104813, dt = 0.009354031134269556
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.7%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 229.10 us (91.2%)
LB move op cnt : 0
LB apply : 3.74 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.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.2100e+05 | 32768 | 1 | 7.783e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 432.64553858668774 (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.17 us (2.4%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.62 us (0.6%)
LB compute : 231.70 us (91.5%)
LB move op cnt : 0
LB apply : 3.74 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (67.5%)
Info: cfl dt = 0.009354028348760464 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2387e+05 | 32768 | 1 | 7.731e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 435.59999269883656 (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 : 6.58 us (2.6%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.71 us (0.7%)
LB compute : 235.00 us (91.4%)
LB move op cnt : 0
LB apply : 4.18 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (67.5%)
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.4382e+05 | 32768 | 1 | 7.383e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 456.1005814990878 (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 : 7.07 us (2.4%)
patch tree reduce : 2.13 us (0.7%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 267.75 us (92.2%)
LB move op cnt : 0
LB apply : 3.88 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (70.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.6656e+05 | 32768 | 1 | 8.939e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 376.7015893575121 (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.61 us (2.5%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.36 us (0.5%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 241.71 us (91.4%)
LB move op cnt : 0
LB apply : 4.71 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (69.2%)
Info: cfl dt = 0.00935402151680195 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4236e+05 | 32768 | 1 | 7.408e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 454.59472909652357 (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.38 us (2.6%)
patch tree reduce : 1.57 us (0.6%)
gen split merge : 1.35 us (0.6%)
split / merge op : 0/0
apply split merge : 1.54 us (0.6%)
LB compute : 220.84 us (91.2%)
LB move op cnt : 0
LB apply : 3.90 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (64.3%)
Info: cfl dt = 0.009354019699335154 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4865e+05 | 32768 | 1 | 7.304e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 461.065245523374 (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.49 us (2.6%)
patch tree reduce : 2.13 us (0.9%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 225.95 us (91.4%)
LB move op cnt : 0
LB apply : 3.69 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (63.4%)
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.5287e+05 | 32768 | 1 | 9.286e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 362.63362793509475 (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 : 7.19 us (2.4%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 272.09 us (92.6%)
LB move op cnt : 0
LB apply : 3.76 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (66.1%)
Info: cfl dt = 0.009354015099560641 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4957e+05 | 32768 | 1 | 7.289e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 462.0017012920628 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2338511098072508, dt = 0.009354015099560641
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (1.9%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 311.21 us (93.3%)
LB move op cnt : 0
LB apply : 4.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (68.3%)
Info: cfl dt = 0.009354014475617959 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6434e+05 | 32768 | 1 | 8.994e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 374.4167383129195 (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.46 us (2.2%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 275.56 us (93.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.3%)
Info: cfl dt = 0.009354011267904512 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4798e+05 | 32768 | 1 | 7.315e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 460.3741001638405 (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.24 us (2.3%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 248.51 us (92.3%)
LB move op cnt : 0
LB apply : 3.53 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (66.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 | 3.3093e+05 | 32768 | 1 | 9.902e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.0845425786532 (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.29 us (2.1%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 277.91 us (92.9%)
LB move op cnt : 0
LB apply : 3.84 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (65.8%)
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.2160e+05 | 32768 | 1 | 1.019e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 330.49604871123995 (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.90 us (2.3%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 278.82 us (92.8%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (66.4%)
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.2553e+05 | 32768 | 1 | 1.007e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.5398588334185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28062116899199163, dt = 0.009354006186411409
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (2.2%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 276.48 us (92.8%)
LB move op cnt : 0
LB apply : 3.84 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (69.9%)
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.2997e+05 | 32768 | 1 | 9.931e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.10041105194347 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28997517517840304, dt = 0.009354003694237728
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.0%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 294.04 us (93.2%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (64.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 | 4.1629e+05 | 32768 | 1 | 7.871e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 427.80590010012315 (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 : 7.21 us (2.6%)
patch tree reduce : 2.44 us (0.9%)
gen split merge : 1.35 us (0.5%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 258.03 us (91.8%)
LB move op cnt : 0
LB apply : 3.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (66.5%)
Info: cfl dt = 0.009354001038625152 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4649e+05 | 32768 | 1 | 7.339e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 458.8450480400962 (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 : 7.16 us (2.3%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 291.42 us (92.8%)
LB move op cnt : 0
LB apply : 4.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (70.6%)
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 | 3.4247e+05 | 32768 | 1 | 9.568e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 351.9454077391939 (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 : 6.81 us (2.0%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 310.69 us (93.2%)
LB move op cnt : 0
LB apply : 4.77 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (68.6%)
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.3893e+05 | 32768 | 1 | 9.668e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 348.30142299685184 (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.97 us (2.3%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 283.01 us (92.6%)
LB move op cnt : 0
LB apply : 4.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (67.8%)
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.3683e+05 | 32768 | 1 | 9.728e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.1462007545337 (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.81 us (2.1%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 308.11 us (93.3%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (67.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 | 3.4397e+05 | 32768 | 1 | 9.526e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 353.4818506727834 (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.91 us (2.1%)
patch tree reduce : 2.29 us (0.7%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 298.71 us (92.9%)
LB move op cnt : 0
LB apply : 4.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (65.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 | 4.4644e+05 | 32768 | 1 | 7.340e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 458.7881682514795 (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.55 us (2.3%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 262.96 us (92.4%)
LB move op cnt : 0
LB apply : 3.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (65.3%)
Info: cfl dt = 0.00935399143176134 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2685e+05 | 32768 | 1 | 1.003e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.8862770691147 (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 : 7.10 us (2.5%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 258.14 us (92.0%)
LB move op cnt : 0
LB apply : 3.64 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (63.9%)
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.6592e+05 | 32768 | 1 | 8.955e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 376.0367113662089 (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.96 us (2.3%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.41 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 282.08 us (92.6%)
LB move op cnt : 0
LB apply : 4.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (68.6%)
Info: cfl dt = 0.009353986265519348 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4726e+05 | 32768 | 1 | 7.326e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 459.62886218858796 (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.95 us (2.0%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 333.32 us (93.7%)
LB move op cnt : 0
LB apply : 4.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (71.4%)
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 | 4.5216e+05 | 32768 | 1 | 7.247e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 464.66918615185506 (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 : 6.70 us (2.4%)
patch tree reduce : 2.22 us (0.8%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 256.11 us (91.8%)
LB move op cnt : 0
LB apply : 3.81 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (66.8%)
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 | 3.3093e+05 | 32768 | 1 | 9.902e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.08522587027255 (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 : 6.90 us (2.1%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 300.09 us (93.3%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (58.5%)
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.9432e+05 | 32768 | 1 | 8.310e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 405.22963702898755 (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.97 us (2.5%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 257.88 us (91.8%)
LB move op cnt : 0
LB apply : 3.92 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.9%)
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.2211e+05 | 32768 | 1 | 1.017e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 331.0155640311499 (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.56 us (2.3%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 981.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 257.86 us (92.3%)
LB move op cnt : 0
LB apply : 3.71 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (71.6%)
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.2182e+05 | 32768 | 1 | 1.018e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 330.7238027057456 (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.88 us (1.1%)
patch tree reduce : 2.16 us (0.3%)
gen split merge : 1.06 us (0.2%)
split / merge op : 0/0
apply split merge : 1.26 us (0.2%)
LB compute : 599.97 us (96.4%)
LB move op cnt : 0
LB apply : 3.88 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (64.8%)
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.2028e+05 | 32768 | 1 | 1.023e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.13712531696024 (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.93 us (2.2%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 295.76 us (93.0%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (67.2%)
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 | 4.3546e+05 | 32768 | 1 | 7.525e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 447.50275095941055 (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.98 us (2.7%)
patch tree reduce : 2.23 us (0.9%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 236.37 us (91.4%)
LB move op cnt : 0
LB apply : 3.48 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (66.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 | 4.4429e+05 | 32768 | 1 | 7.375e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 456.5791204828716 (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 : 6.52 us (2.5%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.38 us (0.5%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 235.17 us (91.6%)
LB move op cnt : 0
LB apply : 3.86 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (63.5%)
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.1680e+05 | 32768 | 1 | 1.034e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 325.5621508423548 (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 : 6.92 us (2.5%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 251.38 us (91.8%)
LB move op cnt : 0
LB apply : 4.57 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (67.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.0634e+05 | 32768 | 1 | 1.070e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 314.81591447882766 (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 : 23.03 us (8.2%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 241.62 us (86.2%)
LB move op cnt : 0
LB apply : 3.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (64.1%)
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.0992e+05 | 32768 | 1 | 1.057e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.4921293998836 (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.41 us (1.9%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 16.91 us (5.1%)
LB compute : 294.24 us (88.8%)
LB move op cnt : 0
LB apply : 4.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (68.1%)
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.0148e+05 | 32768 | 1 | 1.087e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 309.8133866437675 (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.50 us (2.3%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 266.93 us (92.5%)
LB move op cnt : 0
LB apply : 4.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (72.1%)
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 | 3.0642e+05 | 32768 | 1 | 1.069e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 314.89512564640245 (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 : 7.33 us (2.8%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.37 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 241.41 us (91.6%)
LB move op cnt : 0
LB apply : 3.48 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.1%)
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.0723e+05 | 32768 | 1 | 1.067e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.724419164971 (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 : 6.76 us (2.5%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 1.37 us (0.5%)
split / merge op : 0/0
apply split merge : 1.70 us (0.6%)
LB compute : 243.99 us (91.4%)
LB move op cnt : 0
LB apply : 4.17 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (64.3%)
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.0828e+05 | 32768 | 1 | 1.063e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.80718151370667 (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.79 us (2.6%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 239.00 us (91.7%)
LB move op cnt : 0
LB apply : 3.57 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (65.4%)
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.0660e+05 | 32768 | 1 | 1.069e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.08370894561403 (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 : 7.17 us (2.4%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 273.01 us (92.4%)
LB move op cnt : 0
LB apply : 4.39 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (71.3%)
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.0971e+05 | 32768 | 1 | 1.058e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.27745822513697 (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.13 us (2.0%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 283.52 us (93.0%)
LB move op cnt : 0
LB apply : 3.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (68.7%)
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.9958e+05 | 32768 | 1 | 1.094e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 307.86153421970147 (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.43 us (2.5%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 1.42 us (0.5%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 236.92 us (91.6%)
LB move op cnt : 0
LB apply : 3.83 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.8%)
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 | 3.0075e+05 | 32768 | 1 | 1.090e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 309.0699201948065 (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.97 us (2.6%)
patch tree reduce : 2.46 us (0.9%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.52 us (0.6%)
LB compute : 244.06 us (91.4%)
LB move op cnt : 0
LB apply : 3.72 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (63.7%)
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.9594e+05 | 32768 | 1 | 1.107e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 304.12054002533773 (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.23 us (2.2%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 257.38 us (92.2%)
LB move op cnt : 0
LB apply : 3.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (66.5%)
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.0575e+05 | 32768 | 1 | 1.072e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 314.20758476080607 (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 : 6.86 us (2.6%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.47 us (0.6%)
LB compute : 243.93 us (91.5%)
LB move op cnt : 0
LB apply : 4.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (76.7%)
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.5919e+05 | 32768 | 1 | 1.264e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 266.35941305453235 (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 : 7.13 us (2.3%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 282.63 us (92.4%)
LB move op cnt : 0
LB apply : 4.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (63.4%)
Info: cfl dt = 0.009353949136988296 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0450e+05 | 32768 | 1 | 1.076e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 312.92455596978283 (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.77 us (2.4%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 263.49 us (92.6%)
LB move op cnt : 0
LB apply : 3.75 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.2%)
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 | 3.1159e+05 | 32768 | 1 | 1.052e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.20546508453435 (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.63 us (2.4%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 258.72 us (92.5%)
LB move op cnt : 0
LB apply : 3.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (62.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 | 3.1286e+05 | 32768 | 1 | 1.047e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.5144588253344 (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.41 us (2.3%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 1.33 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 252.70 us (92.1%)
LB move op cnt : 0
LB apply : 3.76 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (62.0%)
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 | 3.0856e+05 | 32768 | 1 | 1.062e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 317.09269685272284 (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.46 us (2.2%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 265.58 us (92.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (63.6%)
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 | 3.0972e+05 | 32768 | 1 | 1.058e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.28294610554735 (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 : 6.37 us (2.1%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 284.30 us (93.1%)
LB move op cnt : 0
LB apply : 4.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (66.2%)
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.2596e+05 | 32768 | 1 | 1.005e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.978867787006 (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 : 6.59 us (2.4%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 249.88 us (92.2%)
LB move op cnt : 0
LB apply : 3.63 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (62.1%)
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.2012e+05 | 32768 | 1 | 1.024e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.9708795117704 (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 : 6.45 us (2.2%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.59 us (0.5%)
LB compute : 270.14 us (92.5%)
LB move op cnt : 0
LB apply : 3.89 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.0%)
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 | 3.2450e+05 | 32768 | 1 | 1.010e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 333.4759753752267 (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 : 6.65 us (2.1%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 292.32 us (93.0%)
LB move op cnt : 0
LB apply : 4.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (66.5%)
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.9773e+05 | 32768 | 1 | 1.101e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 305.9609319076033 (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.71 us (2.3%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 272.47 us (92.5%)
LB move op cnt : 0
LB apply : 4.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (65.8%)
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 | 3.1388e+05 | 32768 | 1 | 1.044e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 322.5598671875807 (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.85 us (2.3%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 272.82 us (92.7%)
LB move op cnt : 0
LB apply : 3.74 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (63.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 | 3.1555e+05 | 32768 | 1 | 1.038e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.27789751588955 (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.85 us (2.2%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 283.83 us (92.9%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (60.0%)
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.9682e+05 | 32768 | 1 | 1.104e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 305.0238476881208 (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.89 us (2.0%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 317.50 us (93.6%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (64.1%)
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 | 3.0372e+05 | 32768 | 1 | 1.079e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 312.12257924633803 (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.26 us (2.4%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 243.89 us (92.2%)
LB move op cnt : 0
LB apply : 3.55 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (65.2%)
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.0124e+05 | 32768 | 1 | 1.088e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 309.5740445905424 (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 : 7.09 us (2.5%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 263.25 us (92.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (62.8%)
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.9799e+05 | 32768 | 1 | 1.100e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 306.226777665172 (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 : 6.96 us (2.3%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 282.02 us (92.7%)
LB move op cnt : 0
LB apply : 4.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (68.7%)
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.7782e+05 | 32768 | 1 | 1.179e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 285.4990037944916 (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 : 7.00 us (2.3%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 288.47 us (92.9%)
LB move op cnt : 0
LB apply : 3.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.1%)
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 | 3.2166e+05 | 32768 | 1 | 1.019e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 330.5561995287985 (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.71 us (2.2%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 283.49 us (92.7%)
LB move op cnt : 0
LB apply : 3.83 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (63.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 | 3.3362e+05 | 32768 | 1 | 9.822e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.8452332241725 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7576733607047729, dt = 0.009353923795675559
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.0%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 302.64 us (93.5%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (61.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 | 4.2175e+05 | 32768 | 1 | 7.769e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 433.4148341411513 (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.69 us (2.1%)
patch tree reduce : 2.23 us (0.7%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 302.84 us (93.1%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (70.5%)
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 | 3.2908e+05 | 32768 | 1 | 9.958e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.17736877807255 (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.86 us (1.9%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 331.35 us (93.8%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (67.1%)
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 | 3.0849e+05 | 32768 | 1 | 1.062e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 317.0157885252855 (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.88 us (2.4%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 270.25 us (92.4%)
LB move op cnt : 0
LB apply : 4.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (65.1%)
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 | 3.1939e+05 | 32768 | 1 | 1.026e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.2269532039419 (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.31 us (1.9%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 305.01 us (93.5%)
LB move op cnt : 0
LB apply : 3.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.3%)
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 | 3.0665e+05 | 32768 | 1 | 1.069e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.125205865915 (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.66 us (2.4%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 259.43 us (92.3%)
LB move op cnt : 0
LB apply : 3.76 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (64.9%)
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 | 3.2543e+05 | 32768 | 1 | 1.007e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.42569225436756 (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.75 us (2.4%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 262.54 us (92.3%)
LB move op cnt : 0
LB apply : 3.89 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (61.6%)
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 | 3.2336e+05 | 32768 | 1 | 1.013e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.2988903682029 (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.72 us (2.2%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 285.82 us (92.9%)
LB move op cnt : 0
LB apply : 4.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.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 | 3.0992e+05 | 32768 | 1 | 1.057e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.4942322306511 (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 : 6.49 us (2.3%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 259.52 us (92.6%)
LB move op cnt : 0
LB apply : 3.63 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (63.4%)
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 | 3.0297e+05 | 32768 | 1 | 1.082e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.34522012669714 (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.72 us (2.4%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 256.21 us (91.8%)
LB move op cnt : 0
LB apply : 4.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (70.8%)
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 | 3.0294e+05 | 32768 | 1 | 1.082e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.31873447077027 (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.98 us (2.3%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 275.22 us (92.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (64.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 | 3.0493e+05 | 32768 | 1 | 1.075e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.362259828594 (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.83 us (2.4%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 267.61 us (92.5%)
LB move op cnt : 0
LB apply : 3.95 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (68.3%)
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 | 3.0876e+05 | 32768 | 1 | 1.061e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 317.29896932136273 (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 : 7.16 us (2.6%)
patch tree reduce : 2.07 us (0.7%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 256.17 us (92.0%)
LB move op cnt : 0
LB apply : 3.73 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (59.3%)
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 | 3.0689e+05 | 32768 | 1 | 1.068e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.3771869975667 (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 : 6.93 us (2.5%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.62 us (0.6%)
LB compute : 257.57 us (92.0%)
LB move op cnt : 0
LB apply : 3.89 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 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 | 3.0530e+05 | 32768 | 1 | 1.073e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.7434864373684 (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.63 us (2.3%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 269.71 us (92.3%)
LB move op cnt : 0
LB apply : 3.67 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (70.3%)
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 | 3.0459e+05 | 32768 | 1 | 1.076e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.01218302802704 (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.41 us (2.3%)
patch tree reduce : 2.13 us (0.8%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 252.95 us (91.7%)
LB move op cnt : 0
LB apply : 4.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.5%)
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.9802e+05 | 32768 | 1 | 1.100e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 306.25765442305243 (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.94 us (2.3%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 279.19 us (92.6%)
LB move op cnt : 0
LB apply : 4.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (69.2%)
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 | 3.0184e+05 | 32768 | 1 | 1.086e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 310.1820745843817 (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 : 6.50 us (2.3%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 981.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 255.84 us (92.3%)
LB move op cnt : 0
LB apply : 3.78 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (67.3%)
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 | 3.0659e+05 | 32768 | 1 | 1.069e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.07030810574355 (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.27 us (1.9%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 308.05 us (93.2%)
LB move op cnt : 0
LB apply : 4.43 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (70.7%)
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 | 3.0261e+05 | 32768 | 1 | 1.083e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 310.97226814934294 (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 : 6.34 us (2.3%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 254.22 us (92.1%)
LB move op cnt : 0
LB apply : 3.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (66.0%)
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 | 3.0244e+05 | 32768 | 1 | 1.083e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 310.80317469494094 (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.57 us (2.4%)
patch tree reduce : 2.14 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 252.84 us (91.9%)
LB move op cnt : 0
LB apply : 4.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (67.4%)
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 | 3.0523e+05 | 32768 | 1 | 1.074e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.66964448917776 (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.74 us (2.5%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 252.15 us (92.0%)
LB move op cnt : 0
LB apply : 3.83 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (64.5%)
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 | 3.0479e+05 | 32768 | 1 | 1.075e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.21712726680613 (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.94 us (2.5%)
patch tree reduce : 2.55 us (0.9%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 256.19 us (92.1%)
LB move op cnt : 0
LB apply : 3.37 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (63.4%)
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.9855e+05 | 32768 | 1 | 1.098e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 306.8073947371926 (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.77 us (2.5%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 251.26 us (92.1%)
LB move op cnt : 0
LB apply : 4.05 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (59.5%)
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 | 3.0525e+05 | 32768 | 1 | 1.073e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.6850167161016 (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 : 7.13 us (2.7%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 247.07 us (91.8%)
LB move op cnt : 0
LB apply : 3.82 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (67.8%)
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.9828e+05 | 32768 | 1 | 1.099e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 306.5247362513553 (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.29 us (2.3%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 1.58 us (0.6%)
LB compute : 252.73 us (92.2%)
LB move op cnt : 0
LB apply : 3.58 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (64.0%)
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 | 3.0608e+05 | 32768 | 1 | 1.071e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 285.1208501724451 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 61.86826878 (s) [Godunov][rank=0]
Info: pushing data in scheduler, N = 4096 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 1.14 ms [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: Compute load ... [DataInserterUtility][rank=0]
Info: run scheduler step ... [DataInserterUtility][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.11 us (64.8%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (0.4%)
patch tree reduce : 1.06 us (0.4%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 241.41 us (95.6%)
LB move op cnt : 0
LB apply : 3.52 us (1.4%)
Info: patch count stable after 1 runs npatch = 1 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.80 us (4.1%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 307.08 us (91.5%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (59.6%)
Info: cfl dt = 0.009354083528780794 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9207e+05 | 32768 | 1 | 1.122e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.009354083528780794
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (0.9%)
patch tree reduce : 1.76 us (0.2%)
gen split merge : 1.13 us (0.2%)
split / merge op : 0/0
apply split merge : 1.31 us (0.2%)
LB compute : 714.22 us (97.2%)
LB move op cnt : 0
LB apply : 3.90 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (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 | 2.8546e+05 | 32768 | 1 | 1.148e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 293.35787017741603 (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.52 us (2.3%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 1.39 us (0.5%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 267.60 us (92.5%)
LB move op cnt : 0
LB apply : 4.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (62.7%)
Info: cfl dt = 0.009354069799318255 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8957e+05 | 32768 | 1 | 1.132e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 297.5777151907595 (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.74 us (2.5%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 247.04 us (92.1%)
LB move op cnt : 0
LB apply : 3.57 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (63.4%)
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 | 2.9392e+05 | 32768 | 1 | 1.115e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 302.0490346641226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028062226106291145, dt = 0.009354068824705755
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (1.0%)
patch tree reduce : 1.78 us (0.3%)
gen split merge : 1.16 us (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.2%)
LB compute : 631.40 us (96.7%)
LB move op cnt : 0
LB apply : 3.91 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (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 | 2.9675e+05 | 32768 | 1 | 1.104e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 304.96304052844727 (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.42 us (2.1%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 1.59 us (0.5%)
LB compute : 277.32 us (92.5%)
LB move op cnt : 0
LB apply : 4.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (66.4%)
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 | 2.9719e+05 | 32768 | 1 | 1.103e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 305.41205507263584 (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.44 us (2.3%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 253.16 us (92.1%)
LB move op cnt : 0
LB apply : 3.73 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (64.6%)
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 | 2.8533e+05 | 32768 | 1 | 1.148e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 293.22893006415666 (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.94 us (2.6%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 246.82 us (91.8%)
LB move op cnt : 0
LB apply : 3.75 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (65.7%)
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 | 2.9530e+05 | 32768 | 1 | 1.110e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 303.4672400785684 (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.86 us (1.8%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 304.74 us (93.6%)
LB move op cnt : 0
LB apply : 4.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (70.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 | 2.9087e+05 | 32768 | 1 | 1.127e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 298.91727703055034 (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.70 us (2.5%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 246.93 us (92.1%)
LB move op cnt : 0
LB apply : 3.61 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (66.4%)
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 | 2.9565e+05 | 32768 | 1 | 1.108e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 303.8324170581296 (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.44 us (2.2%)
patch tree reduce : 2.32 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 267.30 us (92.5%)
LB move op cnt : 0
LB apply : 4.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (66.1%)
Info: cfl dt = 0.009354047505936595 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8995e+05 | 32768 | 1 | 1.130e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 297.971426009484 (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 : 6.38 us (2.3%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 257.44 us (92.5%)
LB move op cnt : 0
LB apply : 3.60 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (60.5%)
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 | 2.9302e+05 | 32768 | 1 | 1.118e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 301.1256476865676 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10289468171404789, dt = 0.0093540438900453
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.3%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.60 us (0.5%)
LB compute : 270.94 us (92.6%)
LB move op cnt : 0
LB apply : 3.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (62.5%)
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 | 2.8793e+05 | 32768 | 1 | 1.138e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 295.8984865172652 (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.56 us (2.4%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.34 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 250.77 us (92.2%)
LB move op cnt : 0
LB apply : 3.56 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (62.0%)
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 | 2.9376e+05 | 32768 | 1 | 1.115e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 301.8827601691861 (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.49 us (2.2%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 277.87 us (92.6%)
LB move op cnt : 0
LB apply : 4.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (67.1%)
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 | 2.9565e+05 | 32768 | 1 | 1.108e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 303.82899759657755 (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 : 6.67 us (2.3%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 264.17 us (92.6%)
LB move op cnt : 0
LB apply : 3.69 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (62.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 | 2.8800e+05 | 32768 | 1 | 1.138e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 295.97164440802374 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14031084601494717, dt = 0.009354035152573763
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (2.4%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 1.28 us (0.5%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 251.00 us (92.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.7%)
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 | 2.9154e+05 | 32768 | 1 | 1.124e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 299.60967672044427 (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 : 7.00 us (2.4%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 267.70 us (92.3%)
LB move op cnt : 0
LB apply : 4.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (61.1%)
Info: cfl dt = 0.009354031134269556 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9381e+05 | 32768 | 1 | 1.115e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 301.9427231343766 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1590189160104813, dt = 0.009354031134269556
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (2.3%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 249.82 us (92.2%)
LB move op cnt : 0
LB apply : 3.69 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 17.43 us (95.3%)
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.0074e+05 | 32768 | 1 | 1.090e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 309.06419707781185 (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.24 us (1.9%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 301.01 us (93.4%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (65.1%)
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 | 2.9709e+05 | 32768 | 1 | 1.103e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 305.31040552725335 (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 : 6.27 us (2.3%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 256.85 us (92.4%)
LB move op cnt : 0
LB apply : 3.92 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (62.3%)
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.9936e+05 | 32768 | 1 | 1.095e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 307.6402473423753 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1870810041197269, dt = 0.009354025334628197
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.5%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 259.43 us (92.1%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (67.5%)
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 | 2.8913e+05 | 32768 | 1 | 1.133e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 297.12526896782634 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1964350294543551, dt = 0.009354022489516856
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (2.3%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 253.90 us (92.4%)
LB move op cnt : 0
LB apply : 3.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (65.7%)
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.1614e+05 | 32768 | 1 | 1.037e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.8851971374494 (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.13 us (2.2%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 252.68 us (92.2%)
LB move op cnt : 0
LB apply : 3.80 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.8%)
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.1155e+05 | 32768 | 1 | 1.052e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.16616402084264 (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.79 us (2.3%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 278.11 us (92.4%)
LB move op cnt : 0
LB apply : 4.50 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.5%)
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.9096e+05 | 32768 | 1 | 1.126e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 299.009798224277 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22449709316000907, dt = 0.009354016647241722
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (1.9%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 322.22 us (93.5%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (71.2%)
Info: cfl dt = 0.009354015099560641 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0907e+05 | 32768 | 1 | 1.060e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 317.6219715763268 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2338511098072508, dt = 0.009354015099560641
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (1.8%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 330.32 us (93.9%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (64.4%)
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.4164e+05 | 32768 | 1 | 9.591e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 351.08819564306935 (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.19 us (2.2%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.33 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 259.30 us (92.5%)
LB move op cnt : 0
LB apply : 4.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (62.0%)
Info: cfl dt = 0.009354011267904512 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2135e+05 | 32768 | 1 | 7.777e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 433.0032863937874 (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.94 us (2.5%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 259.40 us (92.2%)
LB move op cnt : 0
LB apply : 3.79 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (63.2%)
Info: cfl dt = 0.009354009194280097 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1632e+05 | 32768 | 1 | 7.871e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 427.8404729664902 (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.79 us (2.1%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 303.66 us (93.0%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (68.0%)
Info: cfl dt = 0.00935400914737758 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2033e+05 | 32768 | 1 | 7.796e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 431.9589909176812 (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.14 us (2.2%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.35 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 255.67 us (92.3%)
LB move op cnt : 0
LB apply : 3.83 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (64.3%)
Info: cfl dt = 0.009354006186411409 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1876e+05 | 32768 | 1 | 7.825e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 430.3475015943162 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28062116899199163, dt = 0.009354006186411409
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.4%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 260.86 us (92.4%)
LB move op cnt : 0
LB apply : 3.81 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (63.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 | 4.2218e+05 | 32768 | 1 | 7.762e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 433.8575913758874 (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 : 22.89 us (7.4%)
patch tree reduce : 2.16 us (0.7%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 268.97 us (87.2%)
LB move op cnt : 0
LB apply : 4.67 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (63.0%)
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 | 4.2752e+05 | 32768 | 1 | 7.665e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 439.3440071879604 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29932917887264077, dt = 0.009354002913477454
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.2%)
patch tree reduce : 2.16 us (0.7%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 275.01 us (92.6%)
LB move op cnt : 0
LB apply : 3.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 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 | 4.3335e+05 | 32768 | 1 | 7.562e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 445.33336405672236 (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.53 us (2.0%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 310.30 us (93.4%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (66.4%)
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 | 3.0648e+05 | 32768 | 1 | 1.069e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 314.9566350023772 (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 : 6.65 us (2.2%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 282.05 us (93.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (67.4%)
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.0548e+05 | 32768 | 1 | 1.073e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.93134540724543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32739118112730925, dt = 0.009353996954119235
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (2.1%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 259.31 us (92.6%)
LB move op cnt : 0
LB apply : 3.61 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (62.1%)
Info: cfl dt = 0.009353996192093612 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0063e+05 | 32768 | 1 | 1.090e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.9435324356249 (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.29 us (2.1%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.38 us (0.5%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 273.07 us (92.7%)
LB move op cnt : 0
LB apply : 3.76 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (66.1%)
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.1438e+05 | 32768 | 1 | 1.042e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.0710750277961 (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.51 us (2.3%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 263.00 us (92.5%)
LB move op cnt : 0
LB apply : 3.59 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (61.7%)
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 | 4.3375e+05 | 32768 | 1 | 7.555e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 445.7518748391674 (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.74 us (2.2%)
patch tree reduce : 2.53 us (0.8%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 288.30 us (92.8%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (64.6%)
Info: cfl dt = 0.00935399143176134 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2505e+05 | 32768 | 1 | 1.008e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.0406404281942 (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.49 us (2.4%)
patch tree reduce : 2.04 us (0.8%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 243.73 us (91.9%)
LB move op cnt : 0
LB apply : 3.58 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (65.1%)
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.2082e+05 | 32768 | 1 | 1.021e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.69585253979403 (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.93 us (2.6%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 246.16 us (91.9%)
LB move op cnt : 0
LB apply : 3.81 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (64.2%)
Info: cfl dt = 0.009353986265519348 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2566e+05 | 32768 | 1 | 7.698e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 437.43595595719705 (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.61 us (2.4%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 252.47 us (91.9%)
LB move op cnt : 0
LB apply : 4.03 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (69.2%)
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 | 4.2873e+05 | 32768 | 1 | 7.643e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 440.58555578790316 (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 : 6.70 us (2.6%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 238.57 us (91.8%)
LB move op cnt : 0
LB apply : 3.62 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (63.7%)
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 | 4.2738e+05 | 32768 | 1 | 7.667e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 439.1987217169799 (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 : 6.24 us (2.4%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 235.17 us (92.0%)
LB move op cnt : 0
LB apply : 3.59 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (68.2%)
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 | 4.3000e+05 | 32768 | 1 | 7.620e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 441.8957563627862 (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.27 us (2.1%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 281.27 us (92.9%)
LB move op cnt : 0
LB apply : 4.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.3%)
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 | 4.1682e+05 | 32768 | 1 | 7.861e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 428.34845243795223 (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.44 us (2.2%)
patch tree reduce : 2.20 us (0.7%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 273.57 us (92.5%)
LB move op cnt : 0
LB apply : 4.66 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (67.3%)
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 | 4.1120e+05 | 32768 | 1 | 7.969e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 422.57312740857463 (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.24 us (2.2%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.29 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 255.40 us (92.1%)
LB move op cnt : 0
LB apply : 3.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (63.4%)
Info: cfl dt = 0.009353976347375923 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0765e+05 | 32768 | 1 | 8.038e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 418.9208416362558 (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 : 7.09 us (2.5%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 262.87 us (92.3%)
LB move op cnt : 0
LB apply : 3.39 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (65.4%)
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.9667e+05 | 32768 | 1 | 1.105e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 304.8796599930357 (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 : 7.29 us (2.6%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 257.25 us (92.0%)
LB move op cnt : 0
LB apply : 3.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (62.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 | 3.2292e+05 | 32768 | 1 | 1.015e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 331.84920311947013 (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 : 6.85 us (2.1%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 296.58 us (92.9%)
LB move op cnt : 0
LB apply : 4.46 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (67.9%)
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.9669e+05 | 32768 | 1 | 1.104e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 304.8939816446218 (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.95 us (2.1%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 267.70 us (92.8%)
LB move op cnt : 0
LB apply : 3.73 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (63.0%)
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.8525e+05 | 32768 | 1 | 1.149e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 293.1371943695792 (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 : 6.71 us (2.4%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 261.64 us (92.4%)
LB move op cnt : 0
LB apply : 3.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (67.4%)
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.9640e+05 | 32768 | 1 | 1.106e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 304.5980695866584 (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.14 us (2.0%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 281.57 us (93.2%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (62.9%)
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.0076e+05 | 32768 | 1 | 1.090e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 309.07483224347163 (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 : 7.36 us (2.6%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.52 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 259.18 us (92.1%)
LB move op cnt : 0
LB apply : 3.88 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (64.2%)
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 | 3.0499e+05 | 32768 | 1 | 1.074e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.4239382285794 (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.28 us (2.0%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 293.20 us (93.1%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (68.1%)
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.8858e+05 | 32768 | 1 | 1.136e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 296.5583584027411 (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 : 6.71 us (2.3%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 264.65 us (92.6%)
LB move op cnt : 0
LB apply : 3.59 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (63.4%)
Info: cfl dt = 0.00935396279929126 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0133e+05 | 32768 | 1 | 8.165e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 412.42887556641926 (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.39 us (2.3%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 253.44 us (92.3%)
LB move op cnt : 0
LB apply : 3.78 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (54.9%)
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.0067e+05 | 32768 | 1 | 1.090e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.98836488655974 (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 : 6.54 us (2.3%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 262.55 us (92.4%)
LB move op cnt : 0
LB apply : 3.70 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (59.0%)
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.0744e+05 | 32768 | 1 | 1.066e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.94100774555886 (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.49 us (2.3%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 256.11 us (92.6%)
LB move op cnt : 0
LB apply : 3.55 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (62.4%)
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.0286e+05 | 32768 | 1 | 1.082e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.23819388571735 (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.67 us (2.2%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 279.52 us (92.7%)
LB move op cnt : 0
LB apply : 4.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (66.8%)
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 | 3.0266e+05 | 32768 | 1 | 1.083e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.0262509157763 (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.54 us (2.4%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 253.25 us (92.2%)
LB move op cnt : 0
LB apply : 3.75 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (62.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 | 4.2289e+05 | 32768 | 1 | 7.749e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 434.5857591278726 (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.47 us (2.3%)
patch tree reduce : 2.23 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 257.30 us (92.3%)
LB move op cnt : 0
LB apply : 3.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (63.4%)
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 | 4.2818e+05 | 32768 | 1 | 7.653e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 440.0267802127019 (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 : 6.48 us (2.3%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 259.46 us (92.1%)
LB move op cnt : 0
LB apply : 4.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (68.2%)
Info: cfl dt = 0.009353951431714257 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8577e+05 | 32768 | 1 | 8.494e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 396.43508676876644 (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.37 us (2.4%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 1.41 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 239.27 us (91.9%)
LB move op cnt : 0
LB apply : 3.81 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (62.4%)
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.1046e+05 | 32768 | 1 | 7.983e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 421.80727204417184 (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.77 us (2.6%)
patch tree reduce : 2.27 us (0.9%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 239.01 us (91.3%)
LB move op cnt : 0
LB apply : 3.67 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (65.6%)
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 | 3.0823e+05 | 32768 | 1 | 1.063e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.7533922646417 (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.04 us (1.9%)
patch tree reduce : 2.14 us (0.7%)
gen split merge : 1.40 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 289.26 us (93.0%)
LB move op cnt : 0
LB apply : 3.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.1%)
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.8563e+05 | 32768 | 1 | 1.147e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 293.5270439553286 (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.55 us (2.1%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 283.96 us (93.0%)
LB move op cnt : 0
LB apply : 4.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (68.1%)
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 | 3.0433e+05 | 32768 | 1 | 1.077e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 312.7459743962012 (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.27 us (2.3%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 253.20 us (92.2%)
LB move op cnt : 0
LB apply : 3.86 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (65.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 | 3.1430e+05 | 32768 | 1 | 1.043e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 322.9959304999636 (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 : 6.61 us (2.4%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 251.99 us (92.2%)
LB move op cnt : 0
LB apply : 3.75 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (60.9%)
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.2366e+05 | 32768 | 1 | 1.465e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 229.84579099021963 (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 : 10.08 us (1.9%)
patch tree reduce : 1.70 us (0.3%)
gen split merge : 1.07 us (0.2%)
split / merge op : 0/0
apply split merge : 28.25 us (5.4%)
LB compute : 402.76 us (76.9%)
LB move op cnt : 0
LB apply : 4.12 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (66.3%)
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.9225e+05 | 32768 | 1 | 1.121e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 300.32836296362893 (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 : 7.87 us (2.3%)
patch tree reduce : 2.75 us (0.8%)
gen split merge : 1.42 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 312.13 us (91.9%)
LB move op cnt : 0
LB apply : 5.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (68.6%)
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.8967e+05 | 32768 | 1 | 1.131e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 297.68447944424605 (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 : 7.18 us (2.6%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.55 us (0.6%)
LB compute : 252.08 us (91.8%)
LB move op cnt : 0
LB apply : 3.52 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (61.7%)
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 | 3.0358e+05 | 32768 | 1 | 1.079e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.975963753544 (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.16 us (2.2%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 262.55 us (92.7%)
LB move op cnt : 0
LB apply : 3.70 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (63.5%)
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 | 3.0161e+05 | 32768 | 1 | 1.086e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 309.95497427122416 (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 : 7.21 us (2.6%)
patch tree reduce : 2.19 us (0.8%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 254.03 us (91.5%)
LB move op cnt : 0
LB apply : 4.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (70.6%)
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.9512e+05 | 32768 | 1 | 1.110e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 303.2834462585599 (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.17 us (2.3%)
patch tree reduce : 1.61 us (0.6%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.58 us (0.6%)
LB compute : 250.28 us (92.3%)
LB move op cnt : 0
LB apply : 3.61 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.9%)
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.9526e+05 | 32768 | 1 | 1.110e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 303.4202711443181 (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.34 us (2.2%)
patch tree reduce : 2.11 us (0.7%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 260.98 us (92.4%)
LB move op cnt : 0
LB apply : 3.83 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (72.5%)
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 | 3.1418e+05 | 32768 | 1 | 1.043e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 322.86585625296743 (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.35 us (2.1%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 287.85 us (93.0%)
LB move op cnt : 0
LB apply : 4.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (63.5%)
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.4170e+05 | 32768 | 1 | 9.590e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 351.15139546032844 (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.96 us (2.0%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 277.01 us (92.7%)
LB move op cnt : 0
LB apply : 4.63 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (70.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 | 4.2671e+05 | 32768 | 1 | 7.679e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 438.50535776076464 (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 : 6.96 us (2.1%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.4%)
LB compute : 311.05 us (93.3%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (68.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 | 3.0581e+05 | 32768 | 1 | 1.071e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 314.2711186446795 (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 : 7.01 us (2.3%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 281.26 us (92.7%)
LB move op cnt : 0
LB apply : 3.91 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (67.9%)
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 | 3.0026e+05 | 32768 | 1 | 1.091e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.56391105077375 (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.48 us (2.4%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 254.28 us (92.4%)
LB move op cnt : 0
LB apply : 3.77 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.7%)
Info: cfl dt = 0.009353923795675559 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0014e+05 | 32768 | 1 | 1.092e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.43923205754203 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7576733607047729, dt = 0.009353923795675559
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.2%)
patch tree reduce : 2.27 us (0.7%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 285.69 us (92.6%)
LB move op cnt : 0
LB apply : 4.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (67.9%)
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 | 3.0975e+05 | 32768 | 1 | 1.058e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.31694757506574 (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.59 us (2.0%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 301.62 us (93.1%)
LB move op cnt : 0
LB apply : 3.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (67.1%)
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 | 3.0970e+05 | 32768 | 1 | 1.058e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.2672198092286 (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.91 us (2.3%)
patch tree reduce : 2.15 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 284.87 us (92.8%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 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 | 3.1025e+05 | 32768 | 1 | 1.056e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.83382088680787 (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.39 us (2.2%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 271.93 us (92.7%)
LB move op cnt : 0
LB apply : 3.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (64.4%)
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 | 3.0690e+05 | 32768 | 1 | 1.068e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.3856068710821 (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.39 us (2.2%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 265.14 us (92.7%)
LB move op cnt : 0
LB apply : 3.76 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (68.8%)
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 | 3.1290e+05 | 32768 | 1 | 1.047e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.55245130968626 (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.79 us (2.3%)
patch tree reduce : 2.29 us (0.8%)
gen split merge : 1.34 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 270.45 us (92.2%)
LB move op cnt : 0
LB apply : 4.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (67.1%)
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 | 3.1067e+05 | 32768 | 1 | 1.055e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 319.26568882396964 (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.21 us (2.2%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 264.70 us (92.7%)
LB move op cnt : 0
LB apply : 3.72 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (62.1%)
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 | 3.0838e+05 | 32768 | 1 | 1.063e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.9117996771764 (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.22 us (2.0%)
patch tree reduce : 2.15 us (0.7%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 285.86 us (92.9%)
LB move op cnt : 0
LB apply : 4.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (65.8%)
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 | 3.0876e+05 | 32768 | 1 | 1.061e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 317.29600804145497 (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 : 6.20 us (1.7%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 1.40 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 340.85 us (94.0%)
LB move op cnt : 0
LB apply : 4.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (69.6%)
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 | 3.1184e+05 | 32768 | 1 | 1.051e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.46254017397735 (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.59 us (2.1%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 299.84 us (93.4%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (70.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 | 3.0998e+05 | 32768 | 1 | 1.057e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.55563546081953 (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.26 us (2.2%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 265.96 us (92.7%)
LB move op cnt : 0
LB apply : 4.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.9%)
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 | 3.1487e+05 | 32768 | 1 | 1.041e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.574561155406 (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.62 us (2.5%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 241.92 us (91.8%)
LB move op cnt : 0
LB apply : 3.63 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (67.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 | 3.1517e+05 | 32768 | 1 | 1.040e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.8894484107623 (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 : 6.76 us (2.4%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 261.23 us (92.4%)
LB move op cnt : 0
LB apply : 4.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (63.2%)
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 | 3.1015e+05 | 32768 | 1 | 1.057e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.7227538045783 (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 : 6.30 us (2.4%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 1.28 us (0.5%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 240.23 us (92.2%)
LB move op cnt : 0
LB apply : 3.62 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.8%)
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 | 3.0834e+05 | 32768 | 1 | 1.063e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.8705763378174 (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.22 us (2.2%)
patch tree reduce : 2.25 us (0.8%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 261.57 us (92.4%)
LB move op cnt : 0
LB apply : 3.89 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (67.8%)
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 | 3.1227e+05 | 32768 | 1 | 1.049e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.9035248540264 (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.71 us (2.4%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 252.68 us (92.2%)
LB move op cnt : 0
LB apply : 3.68 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (63.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 | 3.0558e+05 | 32768 | 1 | 1.072e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 314.03142251324283 (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.68 us (2.2%)
patch tree reduce : 2.18 us (0.7%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 286.98 us (92.9%)
LB move op cnt : 0
LB apply : 3.89 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (68.6%)
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 | 3.1117e+05 | 32768 | 1 | 1.053e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 319.7707263311384 (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 : 6.54 us (2.4%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.33 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 247.49 us (91.8%)
LB move op cnt : 0
LB apply : 3.69 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (64.2%)
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 | 3.4157e+05 | 32768 | 1 | 9.593e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 351.01774490640395 (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.42 us (2.3%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 253.36 us (92.4%)
LB move op cnt : 0
LB apply : 3.72 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (63.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 | 2.9233e+05 | 32768 | 1 | 1.121e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 300.4152728140116 (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 : 7.24 us (2.9%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 229.93 us (91.5%)
LB move op cnt : 0
LB apply : 3.77 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.9%)
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 | 3.2268e+05 | 32768 | 1 | 1.015e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 331.60103043533485 (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.32 us (2.0%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 290.13 us (93.2%)
LB move op cnt : 0
LB apply : 4.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (68.6%)
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 | 3.2086e+05 | 32768 | 1 | 1.021e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.72844057041124 (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.44 us (2.1%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 281.13 us (92.8%)
LB move op cnt : 0
LB apply : 4.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (64.9%)
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 | 3.1258e+05 | 32768 | 1 | 1.048e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.2194136277179 (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.78 us (2.4%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 266.68 us (92.5%)
LB move op cnt : 0
LB apply : 3.69 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (61.9%)
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 | 3.0941e+05 | 32768 | 1 | 1.059e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 317.96809234649277 (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.56 us (2.3%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 265.32 us (92.6%)
LB move op cnt : 0
LB apply : 3.88 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (64.0%)
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 | 3.8840e+05 | 32768 | 1 | 8.437e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 399.1426447338168 (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 : 7.06 us (2.6%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 254.11 us (92.0%)
LB move op cnt : 0
LB apply : 4.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (64.4%)
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.2094e+05 | 32768 | 1 | 7.785e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 432.5743884298483 (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.13 us (1.9%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 301.44 us (93.5%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.5%)
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.9454e+05 | 32768 | 1 | 1.113e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 274.37240528069896 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 72.99212322400001 (s) [Godunov][rank=0]
Info: pushing data in scheduler, N = 4096 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 1.14 ms [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: Compute load ... [DataInserterUtility][rank=0]
Info: run scheduler step ... [DataInserterUtility][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (60.9%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (0.4%)
patch tree reduce : 891.00 ns (0.3%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 262.86 us (96.3%)
LB move op cnt : 0
LB apply : 3.34 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 : 13.34 us (4.1%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.60 us (0.5%)
LB compute : 299.44 us (91.3%)
LB move op cnt : 0
LB apply : 3.80 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (64.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 | 4.4764e+05 | 32768 | 1 | 7.320e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.009354083528780794
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.8%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 1.11 us (0.5%)
split / merge op : 0/0
apply split merge : 1.46 us (0.6%)
LB compute : 224.83 us (91.0%)
LB move op cnt : 0
LB apply : 3.91 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (65.3%)
Info: cfl dt = 0.009354078154867489 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4537e+05 | 32768 | 1 | 7.358e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 457.69093494388954 (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.46 us (2.5%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.44 us (0.6%)
split / merge op : 0/0
apply split merge : 1.48 us (0.6%)
LB compute : 231.34 us (91.3%)
LB move op cnt : 0
LB apply : 4.27 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.7%)
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.2617e+05 | 32768 | 1 | 1.005e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.19308969463714 (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.30 us (2.2%)
patch tree reduce : 17.75 us (6.1%)
gen split merge : 1.47 us (0.5%)
split / merge op : 0/0
apply split merge : 1.59 us (0.5%)
LB compute : 252.99 us (86.9%)
LB move op cnt : 0
LB apply : 3.81 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (66.4%)
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.2882e+05 | 32768 | 1 | 9.965e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 337.92310470642406 (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 : 6.66 us (2.4%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 261.60 us (92.3%)
LB move op cnt : 0
LB apply : 4.52 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (67.2%)
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.4471e+05 | 32768 | 1 | 9.506e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 354.2526416766559 (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 : 6.71 us (2.5%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 1.36 us (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 250.54 us (92.0%)
LB move op cnt : 0
LB apply : 3.81 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (69.1%)
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.4881e+05 | 32768 | 1 | 9.394e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 358.46607193472687 (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.66 us (2.3%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 268.74 us (92.6%)
LB move op cnt : 0
LB apply : 3.64 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (65.9%)
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.4600e+05 | 32768 | 1 | 9.470e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 355.5739918416601 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05612443609796437, dt = 0.009354060922640276
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.5%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 249.61 us (91.8%)
LB move op cnt : 0
LB apply : 4.00 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (65.4%)
Info: cfl dt = 0.009354060012819689 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4637e+05 | 32768 | 1 | 9.460e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 355.95551783170725 (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.27 us (2.3%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 1.28 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 255.48 us (92.6%)
LB move op cnt : 0
LB apply : 3.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (62.0%)
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.4680e+05 | 32768 | 1 | 9.449e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 356.3980033922373 (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.97 us (2.6%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 1.36 us (0.5%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 244.72 us (91.5%)
LB move op cnt : 0
LB apply : 3.54 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (66.3%)
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.3857e+05 | 32768 | 1 | 9.678e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 347.9421070987839 (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.50 us (2.1%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 283.88 us (92.9%)
LB move op cnt : 0
LB apply : 4.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (61.8%)
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.3246e+05 | 32768 | 1 | 9.856e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.659542236965 (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 : 6.82 us (2.5%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 252.50 us (91.9%)
LB move op cnt : 0
LB apply : 3.65 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (63.2%)
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 | 3.3362e+05 | 32768 | 1 | 9.822e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.84614543246573 (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.21 us (2.3%)
patch tree reduce : 1.61 us (0.6%)
gen split merge : 1.35 us (0.5%)
split / merge op : 0/0
apply split merge : 1.51 us (0.6%)
LB compute : 246.15 us (92.1%)
LB move op cnt : 0
LB apply : 3.43 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (61.6%)
Info: cfl dt = 0.00935404717623245 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3958e+05 | 32768 | 1 | 9.650e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 348.9712769046726 (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.74 us (2.3%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 271.24 us (92.6%)
LB move op cnt : 0
LB apply : 3.67 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (64.1%)
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.4104e+05 | 32768 | 1 | 9.608e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 350.47070596178963 (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 : 7.01 us (2.7%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 242.25 us (91.6%)
LB move op cnt : 0
LB apply : 3.58 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (64.7%)
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.3995e+05 | 32768 | 1 | 9.639e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 349.35311603254644 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13095686291139508, dt = 0.009354043982820812
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (2.2%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 267.92 us (92.6%)
LB move op cnt : 0
LB apply : 3.89 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (64.2%)
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.4306e+05 | 32768 | 1 | 9.552e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 352.55404691084345 (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 : 7.01 us (2.5%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 254.05 us (92.1%)
LB move op cnt : 0
LB apply : 3.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.4%)
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.3177e+05 | 32768 | 1 | 9.877e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.9503143842716 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1496649481906207, dt = 0.009354040042086443
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.5%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 245.35 us (91.8%)
LB move op cnt : 0
LB apply : 4.06 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (68.6%)
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.3760e+05 | 32768 | 1 | 9.706e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.9413504528055 (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 : 6.07 us (2.1%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.61 us (0.6%)
LB compute : 271.81 us (92.8%)
LB move op cnt : 0
LB apply : 3.72 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.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.3932e+05 | 32768 | 1 | 9.657e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 348.70949473770236 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1683730269555287, dt = 0.009354035904787316
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (2.2%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 279.03 us (92.8%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (66.5%)
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.3292e+05 | 32768 | 1 | 9.843e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.13269184716864 (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 : 6.29 us (2.0%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 296.64 us (93.2%)
LB move op cnt : 0
LB apply : 4.40 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (70.3%)
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.3463e+05 | 32768 | 1 | 9.792e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.8824906736833 (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.94 us (2.5%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 251.83 us (92.0%)
LB move op cnt : 0
LB apply : 3.83 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.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.3209e+05 | 32768 | 1 | 9.867e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.2723525089198 (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.49 us (2.3%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.29 us (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 260.59 us (92.3%)
LB move op cnt : 0
LB apply : 3.95 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (66.8%)
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.2439e+05 | 32768 | 1 | 1.010e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 333.36421929692847 (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 : 6.82 us (2.5%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 247.08 us (92.1%)
LB move op cnt : 0
LB apply : 3.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (63.9%)
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.3180e+05 | 32768 | 1 | 9.876e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.98268219522686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21514319126155337, dt = 0.0093540288238183
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.1%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.40 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 287.97 us (92.9%)
LB move op cnt : 0
LB apply : 4.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (73.1%)
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.2627e+05 | 32768 | 1 | 1.004e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.2914252710813 (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.62 us (2.5%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 247.85 us (91.8%)
LB move op cnt : 0
LB apply : 3.77 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (63.5%)
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.3301e+05 | 32768 | 1 | 9.840e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.22573050702147 (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.59 us (1.9%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 315.73 us (93.3%)
LB move op cnt : 0
LB apply : 4.62 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (69.6%)
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.2975e+05 | 32768 | 1 | 9.937e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.876690537132 (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 : 6.17 us (2.2%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 263.98 us (92.5%)
LB move op cnt : 0
LB apply : 4.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (63.3%)
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.3206e+05 | 32768 | 1 | 9.868e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.2460979837199 (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 : 6.90 us (2.6%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 247.15 us (91.6%)
LB move op cnt : 0
LB apply : 3.94 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (63.9%)
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.2983e+05 | 32768 | 1 | 9.935e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.95329434356415 (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 : 6.30 us (2.1%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 281.84 us (92.9%)
LB move op cnt : 0
LB apply : 4.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (68.4%)
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.2961e+05 | 32768 | 1 | 9.942e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.7249877474204 (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 : 6.41 us (1.5%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 398.27 us (94.7%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (69.6%)
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.3139e+05 | 32768 | 1 | 9.888e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.5584349901417 (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.75 us (2.2%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 280.23 us (92.7%)
LB move op cnt : 0
LB apply : 3.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (69.0%)
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 | 3.2167e+05 | 32768 | 1 | 1.019e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 330.5702540265868 (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 : 6.68 us (2.2%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 277.45 us (92.5%)
LB move op cnt : 0
LB apply : 4.49 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (69.0%)
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.2216e+05 | 32768 | 1 | 1.017e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 331.066714474002 (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 : 7.21 us (2.4%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.46 us (0.5%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 272.26 us (92.2%)
LB move op cnt : 0
LB apply : 3.88 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (67.6%)
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 | 3.2658e+05 | 32768 | 1 | 1.003e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.618083227658 (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.51 us (2.4%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 249.46 us (92.1%)
LB move op cnt : 0
LB apply : 3.40 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (64.6%)
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.2656e+05 | 32768 | 1 | 1.003e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.5904781131071 (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.76 us (2.5%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 248.19 us (92.0%)
LB move op cnt : 0
LB apply : 4.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (67.8%)
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.2314e+05 | 32768 | 1 | 1.014e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.0782233351879 (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 : 6.37 us (2.1%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 275.23 us (92.8%)
LB move op cnt : 0
LB apply : 4.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (67.8%)
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.3205e+05 | 32768 | 1 | 9.868e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.23494697389623 (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 : 6.53 us (2.2%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 253.94 us (87.1%)
LB move op cnt : 0
LB apply : 3.83 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (70.0%)
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 | 3.3108e+05 | 32768 | 1 | 9.897e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.23970794182816 (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.43 us (2.1%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 282.05 us (93.1%)
LB move op cnt : 0
LB apply : 3.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (69.7%)
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 | 3.2730e+05 | 32768 | 1 | 1.001e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.3540536169661 (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.82 us (2.5%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 1.32 us (0.5%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 253.62 us (92.2%)
LB move op cnt : 0
LB apply : 3.52 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (61.9%)
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 | 3.3001e+05 | 32768 | 1 | 9.929e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.1394490289031 (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.79 us (1.1%)
patch tree reduce : 1.69 us (0.3%)
gen split merge : 1.12 us (0.2%)
split / merge op : 0/0
apply split merge : 1.47 us (0.2%)
LB compute : 616.52 us (96.6%)
LB move op cnt : 0
LB apply : 4.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (67.7%)
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 | 3.2904e+05 | 32768 | 1 | 9.959e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.14251707727334 (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.32 us (2.2%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 267.51 us (92.8%)
LB move op cnt : 0
LB apply : 3.74 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (59.6%)
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 | 3.2561e+05 | 32768 | 1 | 1.006e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.6151707658315 (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 : 6.98 us (2.2%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 292.19 us (92.8%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (67.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.5015e+05 | 32768 | 1 | 9.358e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 359.83700767197365 (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.45 us (2.3%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.59 us (0.6%)
LB compute : 259.11 us (92.5%)
LB move op cnt : 0
LB apply : 3.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (65.8%)
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.5353e+05 | 32768 | 1 | 9.269e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 363.3127354853664 (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.50 us (2.1%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.42 us (0.5%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 283.52 us (92.9%)
LB move op cnt : 0
LB apply : 3.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (63.1%)
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 | 3.3761e+05 | 32768 | 1 | 9.706e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.9438192264141 (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 : 7.63 us (2.5%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.46 us (0.5%)
split / merge op : 0/0
apply split merge : 1.68 us (0.6%)
LB compute : 279.75 us (92.2%)
LB move op cnt : 0
LB apply : 3.89 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (21.7%)
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 | 3.3543e+05 | 32768 | 1 | 9.769e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 344.70767369443246 (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 : 6.48 us (2.1%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 267.04 us (87.9%)
LB move op cnt : 0
LB apply : 19.34 us (6.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (69.5%)
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 | 3.4758e+05 | 32768 | 1 | 9.427e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 357.198334352157 (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.83 us (2.4%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 260.29 us (92.3%)
LB move op cnt : 0
LB apply : 3.95 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (62.6%)
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 | 3.2541e+05 | 32768 | 1 | 1.007e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.4151789530932 (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.82 us (2.5%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 248.87 us (92.2%)
LB move op cnt : 0
LB apply : 3.50 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (63.7%)
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 | 3.5498e+05 | 32768 | 1 | 9.231e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 364.79975571632417 (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.71 us (2.3%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 270.74 us (92.2%)
LB move op cnt : 0
LB apply : 4.31 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (65.5%)
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 | 3.4249e+05 | 32768 | 1 | 9.568e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 351.9605896566929 (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 : 6.73 us (2.3%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.48 us (0.5%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 269.74 us (92.3%)
LB move op cnt : 0
LB apply : 3.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (67.1%)
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 | 3.2611e+05 | 32768 | 1 | 1.005e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.13123113988985 (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 : 6.75 us (2.4%)
patch tree reduce : 1.54 us (0.6%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 255.69 us (92.4%)
LB move op cnt : 0
LB apply : 3.95 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (63.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 | 3.3431e+05 | 32768 | 1 | 9.802e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.5519173331223 (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.81 us (2.3%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 276.76 us (92.5%)
LB move op cnt : 0
LB apply : 3.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (67.2%)
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 | 3.4060e+05 | 32768 | 1 | 9.621e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 350.01981482108846 (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.33 us (2.3%)
patch tree reduce : 1.62 us (0.6%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 251.67 us (92.3%)
LB move op cnt : 0
LB apply : 3.65 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.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 | 3.4519e+05 | 32768 | 1 | 9.493e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 354.7423477745403 (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 : 7.10 us (2.5%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 265.55 us (92.5%)
LB move op cnt : 0
LB apply : 3.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (65.2%)
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 | 3.3438e+05 | 32768 | 1 | 9.800e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.62783979560106 (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.94 us (2.7%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 239.37 us (91.6%)
LB move op cnt : 0
LB apply : 3.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.5%)
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 | 3.2573e+05 | 32768 | 1 | 1.006e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.7358792173805 (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 : 6.62 us (2.3%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 265.13 us (92.4%)
LB move op cnt : 0
LB apply : 3.83 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (63.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 | 3.3590e+05 | 32768 | 1 | 9.755e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 345.1867546075688 (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.75 us (2.2%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 289.33 us (93.0%)
LB move op cnt : 0
LB apply : 4.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (67.4%)
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.3360e+05 | 32768 | 1 | 9.822e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.82913943516445 (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.50 us (2.1%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.45 us (0.5%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 285.78 us (92.6%)
LB move op cnt : 0
LB apply : 4.51 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (67.1%)
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 | 3.6448e+05 | 32768 | 1 | 8.990e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 374.56071368674526 (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.90 us (2.7%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 234.49 us (91.5%)
LB move op cnt : 0
LB apply : 3.54 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (65.4%)
Info: cfl dt = 0.009353978696187704 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3048e+05 | 32768 | 1 | 7.612e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 442.38771443385326 (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 : 6.63 us (2.3%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 264.52 us (92.4%)
LB move op cnt : 0
LB apply : 3.92 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (70.1%)
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 | 4.1884e+05 | 32768 | 1 | 7.824e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 430.42127229378684 (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.76 us (2.5%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 253.26 us (92.1%)
LB move op cnt : 0
LB apply : 3.90 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (68.1%)
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.2566e+05 | 32768 | 1 | 7.698e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 437.4379624596916 (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 : 6.56 us (2.3%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 260.56 us (92.4%)
LB move op cnt : 0
LB apply : 3.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (64.8%)
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.2400e+05 | 32768 | 1 | 7.728e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 435.7272612914114 (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 : 6.55 us (2.3%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 260.06 us (92.4%)
LB move op cnt : 0
LB apply : 3.90 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (65.0%)
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.2680e+05 | 32768 | 1 | 7.678e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 438.60757946733236 (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.73 us (2.6%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.31 us (0.5%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 241.05 us (91.6%)
LB move op cnt : 0
LB apply : 4.37 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (70.4%)
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.3235e+05 | 32768 | 1 | 7.579e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 444.30912362725593 (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 : 7.09 us (2.3%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 281.27 us (92.6%)
LB move op cnt : 0
LB apply : 3.82 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (67.4%)
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.2315e+05 | 32768 | 1 | 1.014e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.08524113999636 (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 : 6.65 us (2.4%)
patch tree reduce : 1.53 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.56 us (0.6%)
LB compute : 254.73 us (92.1%)
LB move op cnt : 0
LB apply : 4.31 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (63.6%)
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.9297e+05 | 32768 | 1 | 8.339e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 403.8387237355551 (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 : 6.89 us (2.7%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 231.34 us (91.3%)
LB move op cnt : 0
LB apply : 4.05 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (71.7%)
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 | 4.3410e+05 | 32768 | 1 | 7.548e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 446.11014420668994 (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 : 7.13 us (2.7%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 243.31 us (91.6%)
LB move op cnt : 0
LB apply : 3.94 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (66.1%)
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 | 4.4702e+05 | 32768 | 1 | 7.330e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 459.37983503651236 (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.74 us (2.8%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.32 us (0.5%)
split / merge op : 0/0
apply split merge : 1.46 us (0.6%)
LB compute : 222.24 us (91.1%)
LB move op cnt : 0
LB apply : 3.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (69.7%)
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.4227e+05 | 32768 | 1 | 7.409e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 454.50434131697523 (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.53 us (2.1%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 284.08 us (92.8%)
LB move op cnt : 0
LB apply : 4.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (71.1%)
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.4628e+05 | 32768 | 1 | 7.342e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 458.62579020899324 (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 : 6.88 us (2.4%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 262.47 us (92.2%)
LB move op cnt : 0
LB apply : 4.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (67.1%)
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.3804e+05 | 32768 | 1 | 7.481e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 450.15577225445725 (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 : 6.66 us (2.6%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 231.16 us (91.6%)
LB move op cnt : 0
LB apply : 3.47 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (64.5%)
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 | 3.3171e+05 | 32768 | 1 | 9.879e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.8835447517071 (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 : 6.36 us (1.9%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 318.70 us (93.5%)
LB move op cnt : 0
LB apply : 4.53 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (66.6%)
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 | 3.2988e+05 | 32768 | 1 | 9.933e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.00097467905897 (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.64 us (2.3%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 265.09 us (92.5%)
LB move op cnt : 0
LB apply : 4.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (50.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 | 3.2570e+05 | 32768 | 1 | 1.006e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.7058292621035 (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 : 6.50 us (2.1%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 286.92 us (93.1%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (64.2%)
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 | 3.2638e+05 | 32768 | 1 | 1.004e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.41049386827183 (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 : 6.32 us (1.9%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.4%)
LB compute : 316.59 us (93.6%)
LB move op cnt : 0
LB apply : 4.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (71.1%)
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 | 3.2006e+05 | 32768 | 1 | 1.024e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.9066891621049 (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 : 6.79 us (2.4%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 261.42 us (92.4%)
LB move op cnt : 0
LB apply : 3.74 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (66.4%)
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 | 3.2537e+05 | 32768 | 1 | 1.007e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.3641231183093 (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.55 us (2.1%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 292.33 us (93.1%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (60.3%)
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.2445e+05 | 32768 | 1 | 1.010e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 333.42793364045696 (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.83 us (2.6%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 240.43 us (91.7%)
LB move op cnt : 0
LB apply : 4.03 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (61.5%)
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.2884e+05 | 32768 | 1 | 9.965e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 337.9351272537695 (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.70 us (2.6%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 239.36 us (91.7%)
LB move op cnt : 0
LB apply : 3.98 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (63.1%)
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.1509e+05 | 32768 | 1 | 1.040e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.8010716572882 (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.72 us (2.3%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.57 us (0.5%)
LB compute : 267.69 us (92.4%)
LB move op cnt : 0
LB apply : 4.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (66.8%)
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.1752e+05 | 32768 | 1 | 1.032e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 326.30595322706984 (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 : 6.34 us (2.2%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.59 us (0.6%)
LB compute : 264.01 us (92.6%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (62.3%)
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.2207e+05 | 32768 | 1 | 1.017e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 330.9736405928233 (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 : 7.01 us (2.5%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.28 us (0.5%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 253.13 us (92.0%)
LB move op cnt : 0
LB apply : 3.65 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (62.8%)
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.2681e+05 | 32768 | 1 | 1.003e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.84519544029 (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 : 6.73 us (2.1%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 292.44 us (93.1%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (67.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.2391e+05 | 32768 | 1 | 1.012e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.8639419276363 (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 : 6.61 us (2.4%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 249.47 us (92.1%)
LB move op cnt : 0
LB apply : 3.78 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (62.1%)
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.2139e+05 | 32768 | 1 | 1.020e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 330.28242330369187 (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 : 6.63 us (2.3%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 267.21 us (92.6%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (62.5%)
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.2518e+05 | 32768 | 1 | 1.008e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.17813835564925 (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 : 6.41 us (2.3%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 1.33 us (0.5%)
split / merge op : 0/0
apply split merge : 1.59 us (0.6%)
LB compute : 253.90 us (90.7%)
LB move op cnt : 0
LB apply : 6.35 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (61.1%)
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.2470e+05 | 32768 | 1 | 1.009e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 333.6838226338717 (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 : 7.12 us (2.6%)
patch tree reduce : 1.59 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 255.26 us (92.1%)
LB move op cnt : 0
LB apply : 3.60 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (70.0%)
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.2362e+05 | 32768 | 1 | 1.013e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.5663317602477 (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 : 11.80 us (3.3%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 326.47 us (92.4%)
LB move op cnt : 0
LB apply : 4.39 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (67.5%)
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.2187e+05 | 32768 | 1 | 1.018e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 330.7739412827959 (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 : 6.61 us (2.3%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 1.37 us (0.5%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 263.13 us (92.3%)
LB move op cnt : 0
LB apply : 4.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (60.9%)
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.2036e+05 | 32768 | 1 | 1.023e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.22251299838075 (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.55 us (2.3%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 262.81 us (92.3%)
LB move op cnt : 0
LB apply : 3.87 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (66.2%)
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.2392e+05 | 32768 | 1 | 1.012e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.87513589366307 (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 : 6.42 us (2.2%)
patch tree reduce : 1.51 us (0.5%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 265.17 us (92.5%)
LB move op cnt : 0
LB apply : 4.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (64.2%)
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.1967e+05 | 32768 | 1 | 1.025e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.50689815666465 (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 : 6.69 us (2.2%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.49 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 278.13 us (92.8%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (63.6%)
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.2361e+05 | 32768 | 1 | 1.013e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.5555856424361 (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 : 6.26 us (2.3%)
patch tree reduce : 1.61 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 247.92 us (92.3%)
LB move op cnt : 0
LB apply : 3.53 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (66.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.2219e+05 | 32768 | 1 | 1.017e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 331.0962521898627 (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 : 6.61 us (2.3%)
patch tree reduce : 2.13 us (0.7%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 262.94 us (92.3%)
LB move op cnt : 0
LB apply : 3.92 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (60.9%)
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.2038e+05 | 32768 | 1 | 1.023e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.2366125498367 (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.71 us (2.1%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 299.40 us (93.4%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.6%)
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.2084e+05 | 32768 | 1 | 1.021e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.7113899189349 (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 : 6.08 us (1.9%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 303.19 us (93.5%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (61.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.2674e+05 | 32768 | 1 | 1.003e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.78080202196736 (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 : 6.89 us (1.9%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 1.26 us (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 343.55 us (93.7%)
LB move op cnt : 0
LB apply : 4.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (69.5%)
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.2640e+05 | 32768 | 1 | 1.004e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 335.42588471504416 (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 : 6.62 us (2.0%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.59 us (0.5%)
LB compute : 303.66 us (93.4%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (68.2%)
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.2725e+05 | 32768 | 1 | 1.001e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.29595711713444 (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 : 7.02 us (1.9%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 1.28 us (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 353.56 us (94.2%)
LB move op cnt : 0
LB apply : 4.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (67.0%)
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.2420e+05 | 32768 | 1 | 1.011e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 333.16210528704903 (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.94 us (2.1%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 303.22 us (93.4%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.1%)
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 | 4.1485e+05 | 32768 | 1 | 7.899e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 426.32378264795136 (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 : 6.78 us (2.1%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 304.85 us (93.3%)
LB move op cnt : 0
LB apply : 4.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (67.9%)
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 | 4.3928e+05 | 32768 | 1 | 7.460e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 451.42369123854877 (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 : 7.10 us (2.4%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 272.51 us (92.5%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (65.5%)
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.4888e+05 | 32768 | 1 | 7.300e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 461.28844536254667 (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 : 7.09 us (2.1%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 321.08 us (93.6%)
LB move op cnt : 0
LB apply : 4.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (67.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.5901e+05 | 32768 | 1 | 7.139e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 471.70057950418663 (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 : 6.12 us (1.9%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 294.52 us (93.3%)
LB move op cnt : 0
LB apply : 3.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (70.2%)
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.7135e+05 | 32768 | 1 | 6.952e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 484.38081726121493 (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 : 6.65 us (2.4%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 252.84 us (92.6%)
LB move op cnt : 0
LB apply : 3.37 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.6%)
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.4430e+05 | 32768 | 1 | 7.375e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 456.5844753898394 (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.60 us (2.3%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 270.96 us (92.5%)
LB move op cnt : 0
LB apply : 3.83 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (67.4%)
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.4448e+05 | 32768 | 1 | 7.372e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 413.94679762480547 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 83.27686291900001 (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 988.18 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.08 us (61.1%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (0.4%)
patch tree reduce : 912.00 ns (0.3%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 267.37 us (96.0%)
LB move op cnt : 0
LB apply : 3.59 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 : 9.56 us (3.3%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 741.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 271.45 us (92.3%)
LB move op cnt : 0
LB apply : 3.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.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 | 4.5266e+05 | 32768 | 1 | 7.239e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.009354083528780794
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (1.8%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 351.28 us (94.2%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (68.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 | 4.6107e+05 | 32768 | 1 | 7.107e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 473.8306687858287 (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.44 us (2.5%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 238.19 us (91.7%)
LB move op cnt : 0
LB apply : 3.85 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (68.3%)
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.6369e+05 | 32768 | 1 | 7.067e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 476.5151991335832 (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.02 us (2.6%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.36 us (0.5%)
split / merge op : 0/0
apply split merge : 1.46 us (0.6%)
LB compute : 242.53 us (91.5%)
LB move op cnt : 0
LB apply : 3.65 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (63.1%)
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.6205e+05 | 32768 | 1 | 7.092e-02 | 0.0% | 1.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 474.8366089108782 (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 : 6.55 us (2.5%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 238.56 us (91.7%)
LB move op cnt : 0
LB apply : 3.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (62.3%)
Info: cfl dt = 0.009354063560589144 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4159e+05 | 32768 | 1 | 9.593e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 351.0388407363724 (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.31 us (2.3%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 251.87 us (92.3%)
LB move op cnt : 0
LB apply : 3.59 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (62.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 | 3.2710e+05 | 32768 | 1 | 1.002e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.1528238168734 (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.49 us (2.2%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 274.11 us (92.7%)
LB move op cnt : 0
LB apply : 4.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (66.3%)
Info: cfl dt = 0.009354060331855442 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3437e+05 | 32768 | 1 | 9.800e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.6216109556522 (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 : 6.45 us (2.3%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 254.84 us (92.4%)
LB move op cnt : 0
LB apply : 3.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (62.0%)
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 | 3.7108e+05 | 32768 | 1 | 8.830e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 381.35004813478906 (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 : 6.73 us (2.6%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.55 us (0.6%)
LB compute : 232.70 us (91.2%)
LB move op cnt : 0
LB apply : 3.99 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (61.4%)
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 | 3.5505e+05 | 32768 | 1 | 9.229e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 364.8779466027789 (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.53 us (2.6%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 225.35 us (91.3%)
LB move op cnt : 0
LB apply : 3.68 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (62.8%)
Info: cfl dt = 0.009354052192277168 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4433e+05 | 32768 | 1 | 7.375e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 456.62120903250576 (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 : 7.10 us (2.6%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 252.73 us (92.1%)
LB move op cnt : 0
LB apply : 3.95 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (64.5%)
Info: cfl dt = 0.009354049658216564 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4051e+05 | 32768 | 1 | 9.623e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 349.9277081782073 (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.53 us (2.1%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 1.44 us (0.5%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 282.05 us (92.8%)
LB move op cnt : 0
LB apply : 4.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (67.5%)
Info: cfl dt = 0.00935404660958092 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1609e+05 | 32768 | 1 | 1.037e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.83811881330837 (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 : 7.19 us (2.4%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 278.72 us (92.5%)
LB move op cnt : 0
LB apply : 4.59 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (69.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 | 3.1850e+05 | 32768 | 1 | 1.029e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 327.31652992136054 (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 : 6.56 us (2.0%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 305.11 us (93.3%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (65.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.3227e+05 | 32768 | 1 | 7.580e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 444.2288889312376 (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.54 us (1.9%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 325.54 us (93.7%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (72.2%)
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.2957e+05 | 32768 | 1 | 7.628e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 441.4563530872499 (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 : 6.55 us (1.9%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 321.78 us (93.7%)
LB move op cnt : 0
LB apply : 4.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (66.4%)
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.3197e+05 | 32768 | 1 | 7.586e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 443.92071544040977 (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 : 7.10 us (2.1%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 311.43 us (93.4%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (69.2%)
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 | 3.2075e+05 | 32768 | 1 | 1.022e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.6270960286056 (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 : 7.06 us (1.8%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.4%)
LB compute : 361.98 us (94.0%)
LB move op cnt : 0
LB apply : 4.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (71.4%)
Info: cfl dt = 0.009354035682225157 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2960e+05 | 32768 | 1 | 9.942e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.7209204151624 (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.64 us (2.1%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 299.05 us (93.3%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (60.4%)
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 | 3.2747e+05 | 32768 | 1 | 1.001e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.5314592015581 (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 : 7.27 us (1.9%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.4%)
LB compute : 357.77 us (94.0%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (73.4%)
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 | 3.3749e+05 | 32768 | 1 | 9.709e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.8302199812917 (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.22 us (1.9%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 305.79 us (93.7%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (62.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 | 3.3287e+05 | 32768 | 1 | 9.844e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.0763607659575 (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.63 us (2.0%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 302.88 us (93.3%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (63.8%)
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 | 3.2771e+05 | 32768 | 1 | 9.999e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 336.7771377590885 (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 : 7.15 us (2.2%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 1.56 us (0.5%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 305.01 us (93.3%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (70.9%)
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 | 3.3499e+05 | 32768 | 1 | 9.782e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 344.258089937592 (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 : 7.06 us (2.1%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.38 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 320.63 us (93.9%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (62.6%)
Info: cfl dt = 0.0093540262525428 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3233e+05 | 32768 | 1 | 9.860e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.52708133902996 (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 : 7.06 us (2.2%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 305.13 us (93.0%)
LB move op cnt : 0
LB apply : 3.97 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (64.3%)
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 | 3.4045e+05 | 32768 | 1 | 9.625e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 349.8636385002946 (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.57 us (1.9%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 320.98 us (93.3%)
LB move op cnt : 0
LB apply : 4.57 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (66.8%)
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.3349e+05 | 32768 | 1 | 9.826e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.71465378455065 (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.84 us (1.1%)
patch tree reduce : 1.70 us (0.3%)
gen split merge : 1.27 us (0.2%)
split / merge op : 0/0
apply split merge : 1.26 us (0.2%)
LB compute : 589.18 us (96.5%)
LB move op cnt : 0
LB apply : 3.79 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (62.8%)
Info: cfl dt = 0.009354022005517115 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3033e+05 | 32768 | 1 | 9.920e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.46836967221094 (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 : 6.63 us (2.2%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 257.60 us (87.2%)
LB move op cnt : 0
LB apply : 19.62 us (6.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (64.7%)
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 | 3.3409e+05 | 32768 | 1 | 9.808e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.33140959274954 (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.81 us (2.2%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.35 us (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 286.63 us (93.0%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (65.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 | 3.3389e+05 | 32768 | 1 | 9.814e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.13030177304773 (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.50 us (2.3%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 255.78 us (92.4%)
LB move op cnt : 0
LB apply : 3.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (61.9%)
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.3361e+05 | 32768 | 1 | 9.822e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.8346155877843 (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 : 6.69 us (2.2%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 277.52 us (92.7%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (67.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.3120e+05 | 32768 | 1 | 9.894e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.36629255766576 (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 : 6.55 us (2.3%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.33 us (0.5%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 259.64 us (92.1%)
LB move op cnt : 0
LB apply : 3.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (65.2%)
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 | 3.2446e+05 | 32768 | 1 | 1.010e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 333.43859500642327 (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 : 5.95 us (2.1%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 268.17 us (92.8%)
LB move op cnt : 0
LB apply : 3.76 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (61.3%)
Info: cfl dt = 0.009354012344533591 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3077e+05 | 32768 | 1 | 9.906e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.924628519776 (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.70 us (2.3%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 273.13 us (92.7%)
LB move op cnt : 0
LB apply : 3.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (64.8%)
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 | 3.3163e+05 | 32768 | 1 | 9.881e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.80392007304175 (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.41 us (2.2%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.29 us (0.5%)
split / merge op : 0/0
apply split merge : 1.58 us (0.6%)
LB compute : 263.56 us (92.2%)
LB move op cnt : 0
LB apply : 4.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (72.3%)
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 | 3.2535e+05 | 32768 | 1 | 1.007e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.3517292250463 (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 : 6.14 us (2.1%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 271.42 us (92.9%)
LB move op cnt : 0
LB apply : 3.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (64.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 | 3.2558e+05 | 32768 | 1 | 1.006e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334.5881329468527 (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.74 us (0.9%)
patch tree reduce : 2.01 us (0.3%)
gen split merge : 1.18 us (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.2%)
LB compute : 751.66 us (97.0%)
LB move op cnt : 0
LB apply : 4.28 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.21 us (70.7%)
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 | 3.2000e+05 | 32768 | 1 | 1.024e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.848090273508 (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 : 7.19 us (2.6%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 252.06 us (91.9%)
LB move op cnt : 0
LB apply : 4.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (60.4%)
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 | 3.2945e+05 | 32768 | 1 | 9.946e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.55834184173136 (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 : 6.45 us (2.3%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 256.44 us (92.6%)
LB move op cnt : 0
LB apply : 3.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (61.8%)
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.3206e+05 | 32768 | 1 | 9.868e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.24710831753043 (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 : 6.96 us (2.5%)
patch tree reduce : 1.59 us (0.6%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 257.75 us (92.1%)
LB move op cnt : 0
LB apply : 3.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (60.3%)
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.3337e+05 | 32768 | 1 | 9.829e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.5883248059476 (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.93 us (2.4%)
patch tree reduce : 1.61 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 262.62 us (92.4%)
LB move op cnt : 0
LB apply : 3.73 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (65.2%)
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 | 3.0831e+05 | 32768 | 1 | 1.063e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.83966260824997 (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 : 6.51 us (2.4%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 255.48 us (92.4%)
LB move op cnt : 0
LB apply : 3.68 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (60.3%)
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.3195e+05 | 32768 | 1 | 9.871e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.13145712291663 (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.84 us (2.5%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 255.00 us (92.1%)
LB move op cnt : 0
LB apply : 3.61 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (64.0%)
Info: cfl dt = 0.009353998385449303 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3916e+05 | 32768 | 1 | 9.661e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 348.54244797946285 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39286936875223977, dt = 0.009353998385449303
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.4%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.28 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 252.74 us (92.1%)
LB move op cnt : 0
LB apply : 3.68 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (62.0%)
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 | 3.4112e+05 | 32768 | 1 | 9.606e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 350.5507075033524 (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.87 us (2.2%)
patch tree reduce : 2.14 us (0.7%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 294.42 us (93.0%)
LB move op cnt : 0
LB apply : 4.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (64.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 | 3.3087e+05 | 32768 | 1 | 9.904e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.02006385361744 (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.53 us (2.4%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.57 us (0.6%)
LB compute : 251.69 us (92.1%)
LB move op cnt : 0
LB apply : 3.47 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (55.4%)
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.2877e+05 | 32768 | 1 | 9.967e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 337.8681124505088 (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.45 us (2.3%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 258.72 us (92.4%)
LB move op cnt : 0
LB apply : 3.68 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (64.7%)
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.2395e+05 | 32768 | 1 | 1.012e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.9138770361671 (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.54 us (2.5%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 244.34 us (91.9%)
LB move op cnt : 0
LB apply : 3.54 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (62.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 | 3.4138e+05 | 32768 | 1 | 9.599e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 350.8250458363625 (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 : 7.04 us (2.6%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 247.81 us (91.8%)
LB move op cnt : 0
LB apply : 3.92 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (64.0%)
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 | 3.3959e+05 | 32768 | 1 | 9.649e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 348.97913829331253 (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 : 6.66 us (2.4%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 251.83 us (92.2%)
LB move op cnt : 0
LB apply : 3.91 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (63.6%)
Info: cfl dt = 0.009353989869870316 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1459e+05 | 32768 | 1 | 1.042e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.2867548645222 (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.32 us (2.2%)
patch tree reduce : 1.62 us (0.6%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 261.78 us (92.7%)
LB move op cnt : 0
LB apply : 3.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (63.6%)
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.4474e+05 | 32768 | 1 | 9.505e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 354.2716615233424 (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.52 us (2.4%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 248.97 us (92.0%)
LB move op cnt : 0
LB apply : 3.86 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (67.4%)
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 | 4.5890e+05 | 32768 | 1 | 7.141e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 471.5940227619789 (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.13 us (2.1%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 266.16 us (92.7%)
LB move op cnt : 0
LB apply : 3.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (66.8%)
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 | 4.4716e+05 | 32768 | 1 | 7.328e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 459.5302536032012 (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.35 us (2.1%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 247.81 us (82.0%)
LB move op cnt : 0
LB apply : 4.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (69.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 | 4.6692e+05 | 32768 | 1 | 7.018e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 479.83821576678133 (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.87 us (2.7%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.28 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 227.67 us (90.8%)
LB move op cnt : 0
LB apply : 3.98 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (63.1%)
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.6226e+05 | 32768 | 1 | 7.089e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 475.0479800311074 (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.60 us (2.4%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.33 us (0.5%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 252.64 us (92.1%)
LB move op cnt : 0
LB apply : 3.71 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (62.4%)
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.6444e+05 | 32768 | 1 | 7.055e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 477.2809061798026 (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.50 us (2.3%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 256.56 us (92.5%)
LB move op cnt : 0
LB apply : 3.61 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (61.6%)
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 | 4.6489e+05 | 32768 | 1 | 7.049e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 477.74396529541286 (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.42 us (2.6%)
patch tree reduce : 1.92 us (0.8%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 222.03 us (91.2%)
LB move op cnt : 0
LB apply : 3.68 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.2%)
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.5906e+05 | 32768 | 1 | 7.138e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 471.756437021019 (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 : 6.52 us (2.3%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 268.33 us (92.6%)
LB move op cnt : 0
LB apply : 3.66 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (65.0%)
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.5503e+05 | 32768 | 1 | 7.201e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 467.6199126084054 (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 : 7.06 us (2.7%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 239.03 us (91.3%)
LB move op cnt : 0
LB apply : 4.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (61.0%)
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.5820e+05 | 32768 | 1 | 7.152e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 470.8694492259711 (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.22 us (1.8%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 317.88 us (93.6%)
LB move op cnt : 0
LB apply : 4.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (69.1%)
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.6297e+05 | 32768 | 1 | 7.078e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 475.7737237769402 (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 : 6.72 us (2.5%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 981.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 251.14 us (91.8%)
LB move op cnt : 0
LB apply : 3.61 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (67.9%)
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 | 3.5185e+05 | 32768 | 1 | 9.313e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 361.5812105055152 (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 : 6.42 us (2.4%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 241.22 us (92.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (66.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 | 3.3064e+05 | 32768 | 1 | 9.911e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 339.78272495215214 (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.58 us (2.7%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 225.88 us (91.3%)
LB move op cnt : 0
LB apply : 3.76 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (65.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 | 4.5028e+05 | 32768 | 1 | 7.277e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 462.7338075298908 (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.45 us (2.4%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 249.39 us (92.0%)
LB move op cnt : 0
LB apply : 4.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.6%)
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 | 4.5220e+05 | 32768 | 1 | 7.246e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 464.70759319831564 (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.30 us (2.3%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 981.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 252.34 us (92.5%)
LB move op cnt : 0
LB apply : 3.60 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (63.3%)
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.6561e+05 | 32768 | 1 | 7.038e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 478.48754885295403 (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 : 6.22 us (2.2%)
patch tree reduce : 1.58 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.63 us (0.6%)
LB compute : 263.56 us (92.6%)
LB move op cnt : 0
LB apply : 3.84 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (64.3%)
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.6596e+05 | 32768 | 1 | 7.032e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 478.8518108054184 (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 : 13.02 us (3.9%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 308.03 us (91.8%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (69.7%)
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.5279e+05 | 32768 | 1 | 7.237e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 465.3095540671555 (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 : 7.17 us (2.4%)
patch tree reduce : 2.11 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 277.29 us (92.5%)
LB move op cnt : 0
LB apply : 3.86 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (65.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.3798e+05 | 32768 | 1 | 7.482e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 450.0933160385091 (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.72 us (2.6%)
patch tree reduce : 1.52 us (0.6%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 234.70 us (91.8%)
LB move op cnt : 0
LB apply : 4.03 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (61.9%)
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.4259e+05 | 32768 | 1 | 7.404e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 454.82873788617803 (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.58 us (2.6%)
patch tree reduce : 1.60 us (0.6%)
gen split merge : 1.15 us (0.5%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 233.72 us (91.7%)
LB move op cnt : 0
LB apply : 3.40 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (68.1%)
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.4129e+05 | 32768 | 1 | 7.426e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 453.4929145557423 (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 : 7.00 us (2.7%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.58 us (0.6%)
LB compute : 233.31 us (91.4%)
LB move op cnt : 0
LB apply : 3.59 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (58.9%)
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.3600e+05 | 32768 | 1 | 7.516e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 448.05557381407243 (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.43 us (2.5%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 239.35 us (91.8%)
LB move op cnt : 0
LB apply : 3.92 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (63.6%)
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.3617e+05 | 32768 | 1 | 7.513e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 448.23356896902686 (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.13 us (1.9%)
patch tree reduce : 2.16 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 296.83 us (93.2%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (69.1%)
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 | 4.3724e+05 | 32768 | 1 | 7.494e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 449.3360736763337 (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 : 7.08 us (2.4%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 268.51 us (92.6%)
LB move op cnt : 0
LB apply : 4.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (62.8%)
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.1243e+05 | 32768 | 1 | 1.049e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.07449701723175 (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 : 6.47 us (2.0%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 300.29 us (93.0%)
LB move op cnt : 0
LB apply : 4.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (62.9%)
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 | 3.1987e+05 | 32768 | 1 | 1.024e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 328.7183328613078 (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.77 us (2.4%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 255.17 us (92.3%)
LB move op cnt : 0
LB apply : 3.70 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (62.1%)
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 | 3.3393e+05 | 32768 | 1 | 9.813e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343.16110021569716 (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.25 us (2.3%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 252.13 us (92.4%)
LB move op cnt : 0
LB apply : 3.94 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (60.9%)
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 | 3.3657e+05 | 32768 | 1 | 9.736e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 345.8815223430997 (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 : 6.86 us (2.5%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 1.38 us (0.5%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 254.29 us (91.9%)
LB move op cnt : 0
LB apply : 3.77 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (57.7%)
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 | 3.3531e+05 | 32768 | 1 | 9.773e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 344.5796205294578 (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.53 us (2.4%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 254.82 us (92.3%)
LB move op cnt : 0
LB apply : 3.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (63.9%)
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 | 4.5135e+05 | 32768 | 1 | 7.260e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 463.82893147620825 (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.61 us (2.2%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 276.59 us (92.9%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.1%)
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 | 4.6524e+05 | 32768 | 1 | 7.043e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 478.108794452748 (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 : 6.46 us (2.6%)
patch tree reduce : 1.61 us (0.7%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 223.23 us (91.3%)
LB move op cnt : 0
LB apply : 3.78 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (63.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.7106e+05 | 32768 | 1 | 6.956e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 484.0849411812579 (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.87 us (2.7%)
patch tree reduce : 1.56 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 234.30 us (91.7%)
LB move op cnt : 0
LB apply : 3.51 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.0%)
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 | 4.5707e+05 | 32768 | 1 | 7.169e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 469.71355803810474 (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.41 us (2.3%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 261.37 us (92.5%)
LB move op cnt : 0
LB apply : 3.89 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (64.8%)
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 | 4.6101e+05 | 32768 | 1 | 7.108e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 473.76216729453193 (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.71 us (2.7%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 225.96 us (91.2%)
LB move op cnt : 0
LB apply : 3.58 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (66.1%)
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.3540e+05 | 32768 | 1 | 9.770e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 344.68003608560133 (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.48 us (2.4%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 250.48 us (92.4%)
LB move op cnt : 0
LB apply : 3.81 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (65.1%)
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 | 3.3119e+05 | 32768 | 1 | 9.894e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340.3506947212253 (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 : 6.88 us (2.3%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 275.97 us (92.6%)
LB move op cnt : 0
LB apply : 4.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (65.2%)
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.3630e+05 | 32768 | 1 | 9.744e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 345.6047560777763 (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 : 6.61 us (2.3%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 262.12 us (92.5%)
LB move op cnt : 0
LB apply : 3.78 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (63.8%)
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.3840e+05 | 32768 | 1 | 9.683e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 347.7574050543055 (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 : 6.53 us (2.4%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 251.08 us (92.3%)
LB move op cnt : 0
LB apply : 3.69 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (66.2%)
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 | 3.3240e+05 | 32768 | 1 | 9.858e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341.5912495522716 (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.57 us (2.4%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 252.53 us (92.3%)
LB move op cnt : 0
LB apply : 3.57 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (58.6%)
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 | 4.4437e+05 | 32768 | 1 | 7.374e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 456.65779981148916 (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 : 6.23 us (2.1%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 274.01 us (93.0%)
LB move op cnt : 0
LB apply : 3.83 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (62.9%)
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.3939e+05 | 32768 | 1 | 7.458e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 451.53854285820273 (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.51 us (2.3%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.59 us (0.6%)
LB compute : 266.83 us (92.4%)
LB move op cnt : 0
LB apply : 3.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.1%)
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.2475e+05 | 32768 | 1 | 1.009e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 333.73333995239045 (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.36 us (2.1%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 275.42 us (92.9%)
LB move op cnt : 0
LB apply : 3.72 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (62.6%)
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.8326e+05 | 32768 | 1 | 8.550e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 393.86088248789633 (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 : 6.66 us (2.3%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.61 us (0.6%)
LB compute : 265.28 us (92.4%)
LB move op cnt : 0
LB apply : 3.91 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.6%)
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 | 4.3649e+05 | 32768 | 1 | 7.507e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 448.5657093315088 (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.20 us (2.4%)
patch tree reduce : 2.08 us (0.8%)
gen split merge : 1.26 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 238.39 us (91.8%)
LB move op cnt : 0
LB apply : 3.58 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (68.0%)
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 | 4.0377e+05 | 32768 | 1 | 8.116e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 414.9341889008507 (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 : 6.67 us (2.6%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.43 us (0.6%)
LB compute : 234.84 us (91.5%)
LB move op cnt : 0
LB apply : 3.77 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (64.8%)
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 | 4.4957e+05 | 32768 | 1 | 7.289e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 462.0039694301217 (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 : 6.35 us (2.2%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 272.43 us (92.6%)
LB move op cnt : 0
LB apply : 4.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (74.5%)
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 | 4.4457e+05 | 32768 | 1 | 7.371e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 456.8627629572832 (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 : 9.57 us (3.6%)
patch tree reduce : 3.47 us (1.3%)
gen split merge : 1.91 us (0.7%)
split / merge op : 0/0
apply split merge : 1.58 us (0.6%)
LB compute : 235.24 us (89.3%)
LB move op cnt : 0
LB apply : 3.71 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (66.8%)
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 | 4.3950e+05 | 32768 | 1 | 7.456e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 451.65327102218737 (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 : 6.55 us (2.3%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 268.60 us (92.6%)
LB move op cnt : 0
LB apply : 4.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (64.1%)
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 | 4.5069e+05 | 32768 | 1 | 7.271e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 463.15363651164506 (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 : 6.35 us (2.3%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 258.63 us (92.3%)
LB move op cnt : 0
LB apply : 4.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.7%)
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 | 4.4199e+05 | 32768 | 1 | 7.414e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 454.210426150983 (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.53 us (2.3%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 266.69 us (92.7%)
LB move op cnt : 0
LB apply : 3.72 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (62.9%)
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 | 4.3919e+05 | 32768 | 1 | 7.461e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 451.3314718854757 (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 : 6.49 us (2.5%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 236.43 us (91.7%)
LB move op cnt : 0
LB apply : 3.67 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.8%)
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 | 4.4195e+05 | 32768 | 1 | 7.414e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 454.1751970834246 (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 : 7.09 us (2.8%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 229.51 us (91.3%)
LB move op cnt : 0
LB apply : 3.98 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (65.2%)
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 | 4.4896e+05 | 32768 | 1 | 7.299e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 461.3753142761633 (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.52 us (2.1%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 1.50 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 287.94 us (92.8%)
LB move op cnt : 0
LB apply : 4.44 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (67.1%)
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 | 4.4958e+05 | 32768 | 1 | 7.289e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 462.008527968347 (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 : 6.71 us (2.6%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.6%)
LB compute : 233.77 us (91.4%)
LB move op cnt : 0
LB apply : 3.70 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (66.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 | 4.4581e+05 | 32768 | 1 | 7.350e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 458.1419285648113 (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 : 6.52 us (2.4%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 249.64 us (92.1%)
LB move op cnt : 0
LB apply : 3.93 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (68.6%)
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 | 4.4974e+05 | 32768 | 1 | 7.286e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 462.1760032138198 (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 : 6.68 us (2.5%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.68 us (0.6%)
LB compute : 245.50 us (91.7%)
LB move op cnt : 0
LB apply : 3.92 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (68.6%)
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 | 4.3673e+05 | 32768 | 1 | 7.503e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 448.8099150141055 (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 : 6.37 us (1.8%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 326.99 us (93.5%)
LB move op cnt : 0
LB apply : 4.50 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (71.2%)
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 | 4.1657e+05 | 32768 | 1 | 7.866e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 387.9577501707139 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 92.710908824 (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 971.65 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.25 us (65.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 : 1.04 us (0.4%)
patch tree reduce : 891.00 ns (0.3%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 245.00 us (95.9%)
LB move op cnt : 0
LB apply : 3.72 us (1.5%)
Info: patch count stable after 1 runs npatch = 1 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: time since start : 92.772113077 (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 : 6.80 us (2.3%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 279.10 us (93.4%)
LB move op cnt : 0
LB apply : 3.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (70.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 | 4.2674e+05 | 32768 | 1 | 7.679e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.009354083528780794
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (2.5%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 234.45 us (91.9%)
LB move op cnt : 0
LB apply : 3.58 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (64.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.3555e+05 | 32768 | 1 | 7.523e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 447.6055198500272 (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.29 us (2.3%)
patch tree reduce : 1.40 us (0.5%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 249.69 us (92.1%)
LB move op cnt : 0
LB apply : 4.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (66.6%)
Info: cfl dt = 0.009354070025152395 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2400e+05 | 32768 | 1 | 7.728e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 435.73114591158685 (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.69 us (2.6%)
patch tree reduce : 1.61 us (0.6%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.6%)
LB compute : 235.17 us (91.5%)
LB move op cnt : 0
LB apply : 4.25 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (65.3%)
Info: cfl dt = 0.009354069892516555 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8915e+05 | 32768 | 1 | 8.420e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 268.99835674415317 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 93.09859980200001 (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 : 6.91 us (2.3%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 277.94 us (92.8%)
LB move op cnt : 0
LB apply : 3.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (69.4%)
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 | 4.4533e+05 | 32768 | 1 | 7.358e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 457.64939506563087 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034354069892516555, dt = 0.009354065311255261
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (2.2%)
patch tree reduce : 1.41 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 254.91 us (92.4%)
LB move op cnt : 0
LB apply : 3.73 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (63.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 | 4.3821e+05 | 32768 | 1 | 7.478e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 450.32969600094515 (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 : 6.49 us (2.4%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 1.29 us (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 248.20 us (92.0%)
LB move op cnt : 0
LB apply : 4.19 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.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 | 4.3126e+05 | 32768 | 1 | 7.598e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 298.10848641441294 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 93.33563733700001 (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 : 6.42 us (2.2%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.60 us (0.5%)
LB compute : 276.50 us (92.7%)
LB move op cnt : 0
LB apply : 4.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (61.7%)
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 | 4.5381e+05 | 32768 | 1 | 7.221e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 466.3656786427521 (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 : 6.37 us (2.5%)
patch tree reduce : 1.42 us (0.6%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 230.56 us (91.7%)
LB move op cnt : 0
LB apply : 3.52 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.3%)
Info: cfl dt = 0.009354055074257444 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2817e+05 | 32768 | 1 | 9.985e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 337.25365545082917 (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 : 6.40 us (2.5%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 237.93 us (91.9%)
LB move op cnt : 0
LB apply : 3.79 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (65.4%)
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.1636e+05 | 32768 | 1 | 1.036e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 218.68379645346926 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 93.62417790500001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.07500000000000001, dt = 0.00935405332060999
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (2.4%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 752.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 255.01 us (93.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (68.5%)
Info: cfl dt = 0.00935405240457556 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1179e+05 | 32768 | 1 | 1.051e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.4114373834673 (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 : 6.41 us (2.3%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.43 us (0.5%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 254.49 us (92.2%)
LB move op cnt : 0
LB apply : 3.73 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (68.7%)
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 | 4.4163e+05 | 32768 | 1 | 7.420e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 453.85342785862804 (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 : 7.07 us (2.2%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 292.26 us (92.9%)
LB move op cnt : 0
LB apply : 4.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (64.5%)
Info: cfl dt = 0.00935404770116929 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4362e+05 | 32768 | 1 | 7.386e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 306.6537197501386 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 93.89608309600001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.1, dt = 0.00935404770116929
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (2.0%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 306.45 us (93.5%)
LB move op cnt : 0
LB apply : 4.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.7%)
Info: cfl dt = 0.00935404591278391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2915e+05 | 32768 | 1 | 9.955e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 338.25958448206046 (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 : 6.47 us (2.4%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 243.20 us (92.1%)
LB move op cnt : 0
LB apply : 3.56 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (59.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 | 3.1546e+05 | 32768 | 1 | 1.039e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 324.1862808334694 (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 : 7.50 us (2.5%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 272.19 us (92.3%)
LB move op cnt : 0
LB apply : 4.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (66.6%)
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 | 4.3794e+05 | 32768 | 1 | 7.482e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 302.7290106128798 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 94.18736465500001 (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 : 7.18 us (2.2%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 302.75 us (93.4%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (67.8%)
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 | 4.4380e+05 | 32768 | 1 | 7.383e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 456.0794717899669 (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.74 us (2.2%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.58 us (0.5%)
LB compute : 290.17 us (93.0%)
LB move op cnt : 0
LB apply : 4.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (67.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 | 3.6226e+05 | 32768 | 1 | 9.046e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 372.2777394540982 (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.76 us (2.6%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.32 us (0.5%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 235.21 us (91.7%)
LB move op cnt : 0
LB apply : 3.60 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.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 | 3.5139e+05 | 32768 | 1 | 9.325e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 242.89662806658754 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 94.457670542 (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 : 6.41 us (2.4%)
patch tree reduce : 1.41 us (0.5%)
gen split merge : 1.28 us (0.5%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 246.91 us (92.3%)
LB move op cnt : 0
LB apply : 3.56 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (65.9%)
Info: cfl dt = 0.009354036160859757 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1847e+05 | 32768 | 1 | 1.029e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 327.28438832242637 (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.37 us (2.1%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 278.68 us (92.9%)
LB move op cnt : 0
LB apply : 4.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (69.4%)
Info: cfl dt = 0.009354034177637329 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9189e+05 | 32768 | 1 | 8.362e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 402.72734926751605 (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.14 us (2.1%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 267.37 us (92.8%)
LB move op cnt : 0
LB apply : 4.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (63.3%)
Info: cfl dt = 0.009354033778184391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1760e+05 | 32768 | 1 | 1.032e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 219.54428981179552 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 94.76078256800001 (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 : 6.71 us (2.4%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 262.22 us (92.7%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (63.9%)
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 | 4.2595e+05 | 32768 | 1 | 7.693e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 437.72934534457806 (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.88 us (2.7%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 235.28 us (91.8%)
LB move op cnt : 0
LB apply : 3.65 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (63.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 | 3.2359e+05 | 32768 | 1 | 1.013e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 332.5459304621876 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19370806602401822, dt = 0.006291933975981795
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.6%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 235.33 us (91.5%)
LB move op cnt : 0
LB apply : 4.21 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (64.9%)
Info: cfl dt = 0.009354028542815121 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1486e+05 | 32768 | 1 | 1.041e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 217.64857714405233 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 95.056273329 (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 : 7.10 us (2.5%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 265.49 us (92.4%)
LB move op cnt : 0
LB apply : 3.85 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (66.5%)
Info: cfl dt = 0.009354028427680811 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8575e+05 | 32768 | 1 | 8.495e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 396.426231607178 (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 : 7.00 us (2.3%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 278.36 us (92.7%)
LB move op cnt : 0
LB apply : 4.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 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 | 4.4534e+05 | 32768 | 1 | 7.358e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 457.6612551255036 (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 : 6.67 us (2.7%)
patch tree reduce : 1.57 us (0.6%)
gen split merge : 1.17 us (0.5%)
split / merge op : 0/0
apply split merge : 1.41 us (0.6%)
LB compute : 226.12 us (91.5%)
LB move op cnt : 0
LB apply : 3.77 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (62.1%)
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 | 4.4558e+05 | 32768 | 1 | 7.354e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.0097386391024 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 95.307075298 (s) [Godunov][rank=0]
amr::Godunov: t = 0.225, dt = 0.009354024210839024
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (2.1%)
patch tree reduce : 1.47 us (0.5%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 1.59 us (0.5%)
LB compute : 296.29 us (93.1%)
LB move op cnt : 0
LB apply : 3.97 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (64.9%)
Info: cfl dt = 0.009354023047931922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1469e+05 | 32768 | 1 | 7.902e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 426.16151357335264 (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.65 us (2.4%)
patch tree reduce : 1.43 us (0.5%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 254.44 us (92.3%)
LB move op cnt : 0
LB apply : 4.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.7%)
Info: cfl dt = 0.009354022373049758 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1896e+05 | 32768 | 1 | 7.821e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 430.5544621982135 (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.16 us (2.3%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 1.44 us (0.5%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 250.68 us (92.2%)
LB move op cnt : 0
LB apply : 3.68 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (64.6%)
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 | 4.2379e+05 | 32768 | 1 | 7.732e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 292.9474569718169 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 95.55536190900001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.25, dt = 0.009354020524772362
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (2.2%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 275.27 us (92.8%)
LB move op cnt : 0
LB apply : 4.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (66.9%)
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 | 4.2838e+05 | 32768 | 1 | 7.649e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 440.2337424620543 (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 : 6.01 us (2.4%)
patch tree reduce : 1.41 us (0.6%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.40 us (0.6%)
LB compute : 231.46 us (91.7%)
LB move op cnt : 0
LB apply : 3.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (62.7%)
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 | 4.2675e+05 | 32768 | 1 | 7.678e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 438.5601219306272 (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.43 us (2.5%)
patch tree reduce : 1.62 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 230.08 us (91.1%)
LB move op cnt : 0
LB apply : 4.63 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (51.4%)
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 | 4.2251e+05 | 32768 | 1 | 7.756e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 292.0617824502714 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 95.799073347 (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 : 6.50 us (2.3%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 258.99 us (92.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (60.8%)
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 | 3.1056e+05 | 32768 | 1 | 1.055e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 319.15484633962586 (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.32 us (2.5%)
patch tree reduce : 1.43 us (0.6%)
gen split merge : 1.43 us (0.6%)
split / merge op : 0/0
apply split merge : 1.59 us (0.6%)
LB compute : 235.05 us (91.7%)
LB move op cnt : 0
LB apply : 3.68 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (62.3%)
Info: cfl dt = 0.00935401324174287 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1470e+05 | 32768 | 1 | 1.041e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.4027694860299 (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.60 us (2.4%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 256.19 us (92.4%)
LB move op cnt : 0
LB apply : 4.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (70.1%)
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.1053e+05 | 32768 | 1 | 1.055e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 214.65544717536417 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 96.12715822400001 (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 : 7.14 us (2.4%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 276.05 us (92.8%)
LB move op cnt : 0
LB apply : 4.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (63.2%)
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 | 3.7991e+05 | 32768 | 1 | 8.625e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 390.41430559710494 (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 : 6.23 us (2.3%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 255.05 us (92.6%)
LB move op cnt : 0
LB apply : 3.94 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (67.1%)
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 | 4.3804e+05 | 32768 | 1 | 7.481e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 450.1581134677663 (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 : 6.23 us (2.1%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 274.10 us (92.9%)
LB move op cnt : 0
LB apply : 4.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (63.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 | 4.4360e+05 | 32768 | 1 | 7.387e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 306.6413892326483 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 96.380634496 (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 : 7.26 us (2.4%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 274.69 us (92.6%)
LB move op cnt : 0
LB apply : 3.74 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (63.9%)
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 | 4.2367e+05 | 32768 | 1 | 7.734e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 435.3869226116633 (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 : 6.34 us (1.1%)
patch tree reduce : 1.67 us (0.3%)
gen split merge : 1.08 us (0.2%)
split / merge op : 0/0
apply split merge : 1.39 us (0.2%)
LB compute : 575.25 us (96.4%)
LB move op cnt : 0
LB apply : 4.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (69.1%)
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 | 3.3319e+05 | 32768 | 1 | 9.835e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 342.4099218381512 (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 : 6.54 us (2.4%)
patch tree reduce : 1.46 us (0.5%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 246.86 us (92.3%)
LB move op cnt : 0
LB apply : 3.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.2%)
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 | 3.8567e+05 | 32768 | 1 | 8.496e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 266.5971160962668 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 96.65427210700001 (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 : 6.76 us (2.2%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 282.03 us (93.0%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (66.4%)
Info: cfl dt = 0.009354003672931025 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4286e+05 | 32768 | 1 | 7.399e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 455.1137236268219 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35935400457335986, dt = 0.009354003672931025
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.5%)
patch tree reduce : 1.62 us (0.6%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.65 us (0.6%)
LB compute : 251.40 us (91.8%)
LB move op cnt : 0
LB apply : 3.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (61.5%)
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 | 4.3960e+05 | 32768 | 1 | 7.454e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 451.761995352622 (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.07 us (2.2%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 251.55 us (92.3%)
LB move op cnt : 0
LB apply : 3.68 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (60.9%)
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 | 4.4292e+05 | 32768 | 1 | 7.398e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 306.1693424126808 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 96.890064992 (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.09 us (2.4%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 277.08 us (92.7%)
LB move op cnt : 0
LB apply : 3.74 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (62.1%)
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 | 4.1712e+05 | 32768 | 1 | 7.856e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 428.6543350436477 (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 : 6.57 us (2.6%)
patch tree reduce : 1.54 us (0.6%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.46 us (0.6%)
LB compute : 235.74 us (91.6%)
LB move op cnt : 0
LB apply : 4.00 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (63.2%)
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 | 4.1469e+05 | 32768 | 1 | 7.902e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 426.1655777632525 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3937080007275089, dt = 0.006291999272491133
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (2.2%)
patch tree reduce : 1.57 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 252.97 us (92.6%)
LB move op cnt : 0
LB apply : 3.53 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (62.8%)
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 | 4.2291e+05 | 32768 | 1 | 7.748e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 292.3440845690606 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 97.13788061700001 (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 : 7.29 us (2.6%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.39 us (0.5%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 256.16 us (92.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (64.5%)
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 | 4.2132e+05 | 32768 | 1 | 7.777e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 432.9775585341779 (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.80 us (2.4%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 258.31 us (92.1%)
LB move op cnt : 0
LB apply : 3.92 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (62.8%)
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 | 4.1627e+05 | 32768 | 1 | 7.872e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 427.7859544757235 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4187079944251259, dt = 0.006292005574874138
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.6%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 233.66 us (91.6%)
LB move op cnt : 0
LB apply : 3.81 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (64.7%)
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 | 4.2481e+05 | 32768 | 1 | 7.714e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 293.6511943796827 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 97.384330883 (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 : 7.91 us (2.8%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 258.97 us (91.7%)
LB move op cnt : 0
LB apply : 4.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (64.2%)
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 | 4.2441e+05 | 32768 | 1 | 7.721e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 436.1471089329831 (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.26 us (2.2%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 261.69 us (92.4%)
LB move op cnt : 0
LB apply : 3.84 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (59.7%)
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 | 4.2699e+05 | 32768 | 1 | 7.674e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 438.800106240956 (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.73 us (2.6%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 1.31 us (0.5%)
split / merge op : 0/0
apply split merge : 1.44 us (0.6%)
LB compute : 233.11 us (91.6%)
LB move op cnt : 0
LB apply : 3.69 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (62.4%)
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 | 4.2919e+05 | 32768 | 1 | 7.635e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 296.6830285359272 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 97.62743543500001 (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 : 7.00 us (2.5%)
patch tree reduce : 1.56 us (0.6%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 258.56 us (92.2%)
LB move op cnt : 0
LB apply : 3.81 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (68.4%)
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 | 3.1186e+05 | 32768 | 1 | 1.051e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.4846386155557 (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 : 6.20 us (2.2%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.32 us (0.5%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 258.97 us (92.3%)
LB move op cnt : 0
LB apply : 3.72 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (68.2%)
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 | 4.2017e+05 | 32768 | 1 | 7.799e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 431.79054750594645 (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 : 6.25 us (2.3%)
patch tree reduce : 1.61 us (0.6%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.55 us (0.6%)
LB compute : 255.47 us (92.4%)
LB move op cnt : 0
LB apply : 3.72 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (62.1%)
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 | 4.2090e+05 | 32768 | 1 | 7.785e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 290.9531958851086 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 97.90107958700001 (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 : 6.52 us (2.4%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 1.31 us (0.5%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 250.45 us (92.3%)
LB move op cnt : 0
LB apply : 3.72 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.8%)
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 | 4.3304e+05 | 32768 | 1 | 7.567e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 445.01285373400344 (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.93 us (2.7%)
patch tree reduce : 1.46 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.6%)
LB compute : 235.85 us (91.5%)
LB move op cnt : 0
LB apply : 3.54 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (62.7%)
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.2440e+05 | 32768 | 1 | 7.721e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 436.14024667345234 (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 : 7.03 us (2.8%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.6%)
LB compute : 229.90 us (91.2%)
LB move op cnt : 0
LB apply : 4.12 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (65.4%)
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 | 3.0151e+05 | 32768 | 1 | 1.087e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 208.42205589145362 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 98.17535159 (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 : 7.34 us (1.5%)
patch tree reduce : 1.58 us (0.3%)
gen split merge : 1.41 us (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.2%)
LB compute : 472.09 us (95.4%)
LB move op cnt : 0
LB apply : 3.99 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (69.4%)
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 | 2.7653e+05 | 32768 | 1 | 1.185e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 284.17733488097156 (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 : 7.91 us (2.1%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 1.25 us (0.3%)
split / merge op : 0/0
apply split merge : 1.58 us (0.4%)
LB compute : 348.64 us (93.4%)
LB move op cnt : 0
LB apply : 4.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (64.0%)
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 | 2.9934e+05 | 32768 | 1 | 1.095e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 307.6216584013315 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5187079663450532, dt = 0.006292033654946794
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (1.8%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 327.38 us (93.6%)
LB move op cnt : 0
LB apply : 4.54 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (72.3%)
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 | 2.9924e+05 | 32768 | 1 | 1.095e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 206.85222793391887 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 98.53344014800001 (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 : 7.42 us (2.0%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 339.66 us (93.8%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (71.5%)
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 | 3.0266e+05 | 32768 | 1 | 1.083e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311.0351666376045 (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 : 6.63 us (2.1%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 299.15 us (93.2%)
LB move op cnt : 0
LB apply : 3.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (67.8%)
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.9423e+05 | 32768 | 1 | 1.114e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 302.3695532849936 (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.81 us (2.2%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 280.48 us (92.6%)
LB move op cnt : 0
LB apply : 4.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (65.8%)
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.9508e+05 | 32768 | 1 | 1.110e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 203.9758674107413 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 98.883943978 (s) [Godunov][rank=0]
amr::Godunov: t = 0.55, dt = 0.009353978517217844
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.1%)
patch tree reduce : 2.13 us (0.7%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 305.51 us (93.1%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (67.2%)
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.8838e+05 | 32768 | 1 | 1.136e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 296.3538977445245 (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 : 7.35 us (2.5%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 273.70 us (91.8%)
LB move op cnt : 0
LB apply : 4.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (61.2%)
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.9891e+05 | 32768 | 1 | 1.096e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 307.17415484583967 (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.55 us (2.3%)
patch tree reduce : 1.50 us (0.5%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 263.83 us (92.6%)
LB move op cnt : 0
LB apply : 3.84 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (68.9%)
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.9950e+05 | 32768 | 1 | 1.094e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 207.034143584334 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 99.23678401000001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.5750000000000001, dt = 0.009353974520405763
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.2%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 283.89 us (92.8%)
LB move op cnt : 0
LB apply : 4.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (60.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 | 3.0504e+05 | 32768 | 1 | 1.074e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.47444227339395 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5843539745204058, dt = 0.009353973987258622
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (2.2%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 277.91 us (92.8%)
LB move op cnt : 0
LB apply : 3.81 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (68.8%)
Info: cfl dt = 0.009353971924770858 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0816e+05 | 32768 | 1 | 1.063e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.6859519528099 (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 : 6.56 us (2.3%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 260.74 us (92.7%)
LB move op cnt : 0
LB apply : 3.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (64.3%)
Info: cfl dt = 0.009353971082196886 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0749e+05 | 32768 | 1 | 1.066e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 212.55621390221884 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 99.577090372 (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 : 7.27 us (2.2%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 313.82 us (93.4%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (69.9%)
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 | 3.0838e+05 | 32768 | 1 | 1.063e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.91054792216147 (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.37 us (2.2%)
patch tree reduce : 1.46 us (0.5%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 263.69 us (92.8%)
LB move op cnt : 0
LB apply : 3.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (63.3%)
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.9974e+05 | 32768 | 1 | 1.093e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.0280358084635 (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.70 us (2.0%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 318.63 us (93.5%)
LB move op cnt : 0
LB apply : 4.42 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (66.8%)
Info: cfl dt = 0.009353968118859565 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1393e+05 | 32768 | 1 | 1.044e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 217.0090673252893 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 99.916201888 (s) [Godunov][rank=0]
amr::Godunov: t = 0.625, dt = 0.009353968118859565
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.1%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 307.18 us (93.3%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (68.0%)
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 | 3.1185e+05 | 32768 | 1 | 1.051e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.47881215016145 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6343539681188596, dt = 0.00935396710964047
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (2.0%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.95 us (0.6%)
split / merge op : 0/0
apply split merge : 1.72 us (0.5%)
LB compute : 296.77 us (92.9%)
LB move op cnt : 0
LB apply : 4.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (67.8%)
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 | 3.0821e+05 | 32768 | 1 | 1.063e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.73165905114035 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6437079352285, dt = 0.006292064771500017
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (2.3%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 263.55 us (92.5%)
LB move op cnt : 0
LB apply : 4.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (70.2%)
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 | 3.0539e+05 | 32768 | 1 | 1.073e-01 | 0.0% | 1.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 211.10886501410658 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 100.25405192400001 (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.17 us (2.4%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 275.06 us (92.8%)
LB move op cnt : 0
LB apply : 3.77 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (64.5%)
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.9978e+05 | 32768 | 1 | 1.093e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.0734179774498 (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 : 6.47 us (2.2%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.89 us (0.6%)
LB compute : 275.77 us (92.4%)
LB move op cnt : 0
LB apply : 3.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (70.2%)
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 | 3.0131e+05 | 32768 | 1 | 1.088e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 309.63939607368116 (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.50 us (2.2%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 274.02 us (92.7%)
LB move op cnt : 0
LB apply : 4.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (65.0%)
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 | 3.0930e+05 | 32768 | 1 | 1.059e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 213.81107394103967 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 100.596843398 (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 : 6.60 us (2.0%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 302.61 us (93.5%)
LB move op cnt : 0
LB apply : 3.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (64.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 | 3.0020e+05 | 32768 | 1 | 1.092e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 308.50561606423327 (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 : 6.73 us (2.5%)
patch tree reduce : 1.62 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 251.67 us (92.1%)
LB move op cnt : 0
LB apply : 3.64 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (59.3%)
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 | 3.0811e+05 | 32768 | 1 | 1.064e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.63289269567616 (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 : 7.30 us (2.6%)
patch tree reduce : 1.58 us (0.6%)
gen split merge : 1.28 us (0.5%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 260.09 us (92.1%)
LB move op cnt : 0
LB apply : 4.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.8%)
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.1796e+05 | 32768 | 1 | 1.031e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 219.79615398765782 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 100.93401899300001 (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 : 6.52 us (2.1%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 293.52 us (93.2%)
LB move op cnt : 0
LB apply : 4.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (67.9%)
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 | 2.9525e+05 | 32768 | 1 | 1.110e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 303.41866598583493 (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 : 6.50 us (2.4%)
patch tree reduce : 1.58 us (0.6%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 246.85 us (92.2%)
LB move op cnt : 0
LB apply : 3.59 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (65.3%)
Info: cfl dt = 0.009353957326763262 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0785e+05 | 32768 | 1 | 1.064e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.3655541467865 (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 : 6.25 us (2.2%)
patch tree reduce : 1.61 us (0.6%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.69 us (0.6%)
LB compute : 267.94 us (92.8%)
LB move op cnt : 0
LB apply : 3.79 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (65.0%)
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 | 2.9533e+05 | 32768 | 1 | 1.110e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 204.1539776725743 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 101.280868263 (s) [Godunov][rank=0]
amr::Godunov: t = 0.7250000000000001, dt = 0.009353956719419519
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.9%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 293.57 us (93.4%)
LB move op cnt : 0
LB apply : 3.87 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (67.2%)
Info: cfl dt = 0.009353956830009738 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0917e+05 | 32768 | 1 | 1.060e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 317.72331459033745 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7343539567194196, dt = 0.009353956830009738
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.4%)
patch tree reduce : 1.39 us (0.5%)
gen split merge : 1.28 us (0.5%)
split / merge op : 0/0
apply split merge : 1.57 us (0.6%)
LB compute : 251.39 us (92.3%)
LB move op cnt : 0
LB apply : 3.92 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (69.5%)
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 | 3.0843e+05 | 32768 | 1 | 1.062e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316.9630274362862 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7437079135494293, dt = 0.006292086450570666
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (2.3%)
patch tree reduce : 1.46 us (0.6%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 243.24 us (92.3%)
LB move op cnt : 0
LB apply : 3.55 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (67.4%)
Info: cfl dt = 0.009353953940730946 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0206e+05 | 32768 | 1 | 1.085e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 208.8020655115628 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 101.620065956 (s) [Godunov][rank=0]
amr::Godunov: t = 0.75, dt = 0.009353953940730946
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.3%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 283.34 us (92.9%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (64.8%)
Info: cfl dt = 0.009353953292643229 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1053e+05 | 32768 | 1 | 1.055e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 319.1129350073174 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7593539539407309, dt = 0.009353953292643229
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (2.0%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 1.49 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 308.32 us (93.2%)
LB move op cnt : 0
LB apply : 4.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.0%)
Info: cfl dt = 0.009353952798285022 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0706e+05 | 32768 | 1 | 1.067e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.5544999886765 (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.31 us (2.3%)
patch tree reduce : 1.58 us (0.6%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 248.25 us (92.2%)
LB move op cnt : 0
LB apply : 3.79 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.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 | 3.0703e+05 | 32768 | 1 | 1.067e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 212.24150814442703 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 101.95768773100001 (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 : 6.70 us (2.3%)
patch tree reduce : 1.34 us (0.5%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 270.68 us (92.8%)
LB move op cnt : 0
LB apply : 3.71 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (62.2%)
Info: cfl dt = 0.00935395026179593 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1262e+05 | 32768 | 1 | 1.048e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.27064153197534 (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 : 6.56 us (2.4%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 252.25 us (92.1%)
LB move op cnt : 0
LB apply : 3.91 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (58.6%)
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 | 3.1019e+05 | 32768 | 1 | 1.056e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.7691081767626 (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 : 6.32 us (2.3%)
patch tree reduce : 1.55 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 249.32 us (92.3%)
LB move op cnt : 0
LB apply : 3.85 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (63.7%)
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 | 3.1148e+05 | 32768 | 1 | 1.052e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 215.31781427849654 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 102.291532434 (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 : 6.87 us (2.3%)
patch tree reduce : 1.34 us (0.5%)
gen split merge : 1.36 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 274.63 us (92.7%)
LB move op cnt : 0
LB apply : 3.71 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (66.6%)
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 | 3.1004e+05 | 32768 | 1 | 1.057e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.61947409348915 (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.82 us (2.5%)
patch tree reduce : 1.55 us (0.6%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 253.46 us (92.0%)
LB move op cnt : 0
LB apply : 4.04 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (64.5%)
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 | 3.0511e+05 | 32768 | 1 | 1.074e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.54492976001995 (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.85 us (2.1%)
patch tree reduce : 1.43 us (0.5%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 264.08 us (93.0%)
LB move op cnt : 0
LB apply : 3.82 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (68.0%)
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 | 3.1542e+05 | 32768 | 1 | 1.039e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 218.0434412314887 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 102.626768092 (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 : 6.18 us (2.1%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 273.94 us (93.1%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.2%)
Info: cfl dt = 0.009353945563393187 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1508e+05 | 32768 | 1 | 1.040e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 323.79452484333166 (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.23 us (2.2%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 267.49 us (92.8%)
LB move op cnt : 0
LB apply : 3.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (65.3%)
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 | 3.0533e+05 | 32768 | 1 | 1.073e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.7739532075567 (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.83 us (2.5%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 250.35 us (91.8%)
LB move op cnt : 0
LB apply : 4.05 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (64.3%)
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 | 3.0975e+05 | 32768 | 1 | 1.058e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 214.1206085616389 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 102.962076808 (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 : 6.62 us (2.2%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 285.19 us (93.1%)
LB move op cnt : 0
LB apply : 3.80 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (70.7%)
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.9958e+05 | 32768 | 1 | 1.094e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 307.8610904056793 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8593539437905385, dt = 0.009353943705146096
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.5%)
patch tree reduce : 1.40 us (0.5%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 248.04 us (92.1%)
LB move op cnt : 0
LB apply : 3.96 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (63.7%)
Info: cfl dt = 0.009353941826320837 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0201e+05 | 32768 | 1 | 1.085e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 310.3630993665681 (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.41 us (2.3%)
patch tree reduce : 1.58 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 255.61 us (92.4%)
LB move op cnt : 0
LB apply : 4.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (58.9%)
Info: cfl dt = 0.009353941069642458 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0769e+05 | 32768 | 1 | 1.065e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 212.69493544391807 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 103.30470064400001 (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.09 us (2.3%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.76 us (0.6%)
LB compute : 290.21 us (92.6%)
LB move op cnt : 0
LB apply : 4.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (66.3%)
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 | 3.1047e+05 | 32768 | 1 | 1.055e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 319.0514820311826 (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 : 6.58 us (2.4%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 253.68 us (92.2%)
LB move op cnt : 0
LB apply : 3.81 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (64.7%)
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 | 3.1031e+05 | 32768 | 1 | 1.056e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318.88847449709874 (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 : 7.19 us (2.5%)
patch tree reduce : 1.62 us (0.6%)
gen split merge : 1.33 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 271.12 us (92.5%)
LB move op cnt : 0
LB apply : 3.83 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (46.6%)
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 | 3.1418e+05 | 32768 | 1 | 1.043e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 217.18090004216867 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 103.63862063900001 (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 : 6.37 us (2.1%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 285.87 us (92.9%)
LB move op cnt : 0
LB apply : 4.71 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (68.3%)
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 | 3.0484e+05 | 32768 | 1 | 1.075e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 313.26679261412124 (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.44 us (2.3%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 252.98 us (92.1%)
LB move op cnt : 0
LB apply : 4.43 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (66.0%)
Info: cfl dt = 0.009353938146435176 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1234e+05 | 32768 | 1 | 1.049e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.9761880999574 (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 : 7.38 us (2.7%)
patch tree reduce : 1.62 us (0.6%)
gen split merge : 1.39 us (0.5%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 254.88 us (92.0%)
LB move op cnt : 0
LB apply : 3.72 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (64.8%)
Info: cfl dt = 0.00935393684862767 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1381e+05 | 32768 | 1 | 1.044e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 216.92642455254608 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 103.97373344500001 (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 : 6.85 us (2.1%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 309.16 us (93.6%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (65.3%)
Info: cfl dt = 0.009353935375974459 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0860e+05 | 32768 | 1 | 1.062e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 317.1368497734063 (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.55 us (2.2%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 273.14 us (92.4%)
LB move op cnt : 0
LB apply : 4.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (68.6%)
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.1148e+05 | 32768 | 1 | 1.052e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 320.0925827929414 (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 : 31.09 us (9.6%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 275.74 us (85.6%)
LB move op cnt : 0
LB apply : 4.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (65.9%)
Info: cfl dt = 0.009353935254400637 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0777e+05 | 32768 | 1 | 1.065e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 212.7502702945072 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 104.310406017 (s) [Godunov][rank=0]
amr::Godunov: t = 0.9500000000000001, dt = 0.009353935254400637
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 4096.0 min = 4096.0 factor = 1
- strategy "round robin" : max = 3891.2 min = 3891.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 4096
max = 4096
avg = 4096
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.2%)
patch tree reduce : 1.50 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 293.10 us (93.1%)
LB move op cnt : 0
LB apply : 4.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (67.7%)
Info: cfl dt = 0.009353933341104494 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1098e+05 | 32768 | 1 | 1.054e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 319.58468845821824 (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.57 us (2.4%)
patch tree reduce : 1.49 us (0.5%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 251.73 us (92.5%)
LB move op cnt : 0
LB apply : 3.74 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (61.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 | 3.1309e+05 | 32768 | 1 | 1.047e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.7465784680001 (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.15 us (2.1%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 17.86 us (6.1%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 256.64 us (87.3%)
LB move op cnt : 0
LB apply : 3.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (65.7%)
Info: cfl dt = 0.009353932155879562 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1349e+05 | 32768 | 1 | 1.045e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 216.70969166365325 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 104.643454524 (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.52 us (2.6%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 306.02 us (93.0%)
LB move op cnt : 0
LB apply : 3.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (54.6%)
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.0902e+05 | 32768 | 1 | 1.060e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 317.5689304644616 (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.56 us (2.4%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 253.08 us (92.1%)
LB move op cnt : 0
LB apply : 3.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (59.4%)
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.1298e+05 | 32768 | 1 | 1.047e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 321.63294758707366 (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.4%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.29 us (0.5%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 263.10 us (92.6%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (62.3%)
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.0608e+05 | 32768 | 1 | 1.071e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 211.5831386420684 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 104.98023317200001 (s) [Godunov][rank=0]
Plot 1: Comparison grouped by Riemann solver (last timestep only)
134 riemann_solvers = ["rusanov", "hll", "hllc"]
135 slope_limiters = ["none", "vanleer", "vanleer_sym", "minmod"]
136
137 fig, axes = plt.subplots(3, 1, figsize=(6, 15))
138 fig.suptitle(f"t={tmax} (Last Step)", fontsize=14)
139
140 for idx, solver in enumerate(riemann_solvers):
141 ax = axes[idx]
142 ax.set_title(f"Riemann Solver: {solver}")
143 ax.set_xlabel("$x$")
144 ax.set_ylabel("$\\rho$")
145 ax.grid(True, alpha=0.3)
146
147 for limiter in slope_limiters:
148 key = f"{limiter}_{solver}"
149 if key in data:
150 # Get the last timestep
151 last_step = data[key][-1]
152 ax.plot([x[0] for x in positions], last_step, label=limiter, linewidth=2)
153
154 ax.legend()
155
156 plt.tight_layout()
157 plt.show()

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