Note
Go to the end to download the full example code.
Orszag-Tang vortex in SPH#
This example demonstrates how to setup and run an Orszag-Tang vortex simulation using smoothed particle magnetohydrodynamics (SPMHD).
The simulation models:
An ideal MHD fluid with adiabatic equation of state
Periodic boundary conditions
A sinusoidal velocity and magnetic field initialization to trigger the vortex instability
On-the-fly rendering of density, magnetic field, and velocity fields
On a cluster or laptop, one can run the code as follows:
mpirun <your parameters> ./shamrock --sycl-cfg 0:0 --loglevel 1 --rscript runscript.py
Setup and imports
27 import os
28
29 import numpy as np
30
31 import shamrock
32
33 # If we use the shamrock executable to run this script instead of the python interpreter,
34 # we should not initialize the system as the shamrock executable needs to handle specific MPI logic
35 if not shamrock.sys.is_initialized():
36 shamrock.change_loglevel(1)
37 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 )
List parameters
42 kernel = "M4"
43
44 # CFLs
45 C_cour = 0.3
46 C_force = 0.25
47
48 # Grid resolution
49 nx = 64 # 512
50 ny = 64 # 590
51 nz = 3
52
53 # Domain bounds
54 xymin = -0.5
55 xmin = xymin
56 ymin = xymin
57
58 # Physical parameters
59 gamma = 5 / 3
60 betazero = 10.0 / 3.0
61 machzero = 1.0
62 vzero = 1.0
63 bzero = 1.0 / np.sqrt(4.0 * np.pi)
64
65 # Derived quantities
66 przero = 0.5 * bzero**2 * betazero
67 rhozero = gamma * przero * machzero
68 gam1 = gamma - 1.0
69 uuzero = przero / (gam1 * rhozero)
70
71 render_gif = True
72
73 dump_folder = ""
74 sim_name = "orztang"
75 analysis_folder = dump_folder # store analysis data alongside dumps
Configure the solver Set up the context, unit system, and SPH model with ideal MHD physics
81 ctx = shamrock.Context()
82 ctx.pdata_layout_new()
83
84 si = shamrock.UnitSystem()
85 sicte = shamrock.Constants(si)
86 codeu = shamrock.UnitSystem(
87 unit_time=1.0,
88 unit_length=1.0,
89 unit_mass=1.2566370621219e-06, # cgs mess
90 )
91 ucte = shamrock.Constants(codeu)
92 model = shamrock.get_Model_SPH(context=ctx, vector_type="f64_3", sph_kernel=kernel)
93
94 cfg = model.gen_default_config()
95 cfg.set_units(codeu)
96
97 mu_0 = ucte.mu_0()
98 print(f"mu_0: {mu_0}")
99
100 cfg.set_artif_viscosity_None() # artificial viscosity terms are computed in the MHD solver
101 cfg.set_IdealMHD(sigma_mhd=1, sigma_u=1)
102 cfg.set_boundary_periodic()
103 cfg.set_eos_adiabatic(gamma)
104 model.set_solver_config(cfg)
105
106 cfg.print_status()
107
108 crit_split = int(1e7)
109 crit_merge = 1
110 model.init_scheduler(crit_split, crit_merge)
mu_0: 1.0
----- SPH Solver configuration -----
[
{
"artif_viscosity": {
"type": "none"
},
"boundary_config": {
"bc_type": "periodic"
},
"cfl_config": {
"cfl_cour": 0.0,
"cfl_force": 0.0,
"cfl_multiplier_stiffness": 2.0,
"eta_sink": 0.05
},
"combined_dtdiv_divcurlv_compute": false,
"debug_dump_filename": "",
"do_debug_dump": false,
"enable_particle_reordering": false,
"eos_config": {
"Tvec": "f64_3",
"eos_type": "adiabatic",
"gamma": 1.6666666666666667
},
"epsilon_h": 1e-06,
"ext_force_config": {
"force_list": []
},
"gpart_mass": 0.0,
"h_iter_per_subcycles": 50,
"h_max_subcycles_count": 100,
"htol_up_coarse_cycle": 1.1,
"htol_up_fine_cycle": 1.1,
"kernel_id": "M4<f64>",
"mhd_config": {
"alpha_u": 1.0,
"mhd_type": "ideal_mhd_constrained_hyper_para",
"sigma_mhd": 1.0
},
"particle_killing": [],
"particle_reordering_step_freq": 1000,
"save_dt_to_fields": false,
"scheduler_config": {
"merge_load_value": 0,
"split_load_value": 0
},
"self_grav_config": {
"softening_length": 1e-09,
"softening_mode": "plummer",
"type": "none"
},
"show_ghost_zone_graph": false,
"show_neigh_stats": false,
"smoothing_length_config": {
"type": "density_based"
},
"time_state": {
"cfl_multiplier": 0.01,
"dt_sph": 0.0,
"time": 0.0
},
"tree_reduction_level": 3,
"type_id": "sycl::vec<f64,3>",
"unit_sys": {
"unit_current": 1.0,
"unit_length": 1.0,
"unit_lumint": 1.0,
"unit_mass": 1.2566370621219e-06,
"unit_qte": 1.0,
"unit_temperature": 1.0,
"unit_time": 1.0
},
"use_two_stage_search": true
}
]
------------------------------------
Setup the simulation
115 # Compute box size
116 (xs, ys, zs) = model.get_box_dim_fcc_3d(1, nx, ny, nz)
117 print(f"Initial dim: x: {xs}\ty: {ys}\tz: {zs}")
118 dr = 1 / xs
119 (xs, ys, zs) = model.get_box_dim_fcc_3d(dr, nx, ny, nz)
120 print(f"Final dim: x: {xs}\ty: {ys}\tz: {zs}")
121
122 model.resize_simulation_box((-xs / 2, -ys / 2, -zs / 2), (xs / 2, ys / 2, zs / 2))
123
124 model.add_cube_fcc_3d(dr, (-xs / 2, -ys / 2, -zs / 2), (xs / 2, ys / 2, zs / 2))
125 model.set_value_in_a_box(
126 "uint", "f64", uuzero, (-xs / 2, -ys / 2, -zs / 2), (xs / 2, ys / 2, zs / 2)
127 )
Initial dim: x: 129.0 y: 111.42860195359776 z: 4.898979485566356
Final dim: x: 1.0 y: 0.8637876120433935 z: 0.037976585159429116
Info: Add fcc lattice size : ( 65 65 4 ) [SPH][rank=0]
Info: Push particles : [Model][rank=0]
rank = 0 patch id=0, add N=12514 particles, coords = (-0.5,-0.43189380602169675,-0.018988292579714558) (0.5,0.43189380602169675,0.018988292579714558)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 56.19 us (70.4%)
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.71 us (0.5%)
patch tree reduce : 1422.00 ns (0.2%)
gen split merge : 721.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.1%)
LB compute : 927.13 us (98.1%)
LB move op cnt : 0
LB apply : 4.45 us (0.5%)
Info: current particle counts : min = 12514 max = 12514 [Model][rank=0]
Initial condition profiles
133 def vel_func(r):
134 x, y, z = r
135 vx = -vzero * np.sin(2.0 * np.pi * (y - ymin))
136 vy = vzero * np.sin(2.0 * np.pi * (x - xmin))
137 return (vx, vy, 0.0)
138
139
140 def mag_func(r):
141 x, y, z = r
142 Bx = -bzero * np.sin(2.0 * np.pi * (y - ymin)) / rhozero
143 By = bzero * np.sin(4.0 * np.pi * (x - xmin)) / rhozero
144 return (Bx, By, 0.0)
145
146
147 model.set_field_value_lambda_f64_3("vxyz", vel_func)
148 model.set_field_value_lambda_f64_3("B/rho", mag_func)
149
150 vol_b = xs * ys * zs
151
152 totmass = rhozero * vol_b
153 pmass = model.total_mass_to_part_mass(totmass)
154 model.set_particle_mass(pmass)
155
156 print("Total mass :", totmass)
157 print("Current part mass :", pmass)
158
159 model.set_cfl_cour(C_cour)
160 model.set_cfl_force(C_force)
161
162 model.timestep()
163 cfg.print_status()
Total mass : 0.007251210573379732
Current part mass : 5.794478642624047e-07
---------------- t = 0, dt = 0 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 19.02 us (2.3%)
patch tree reduce : 1513.00 ns (0.2%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1372.00 ns (0.2%)
LB compute : 790.89 us (94.8%)
LB move op cnt : 0
LB apply : 4.89 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.41 us (73.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.1636567044909703
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.008527131782945736 unconverged cnt = 12514
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.1956209045868622
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.009379844961240311 unconverged cnt = 12514
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.1956209045868622
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.010317829457364343 unconverged cnt = 12514
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.1956209045868622
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.011349612403100779 unconverged cnt = 12514
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.2283842096851527
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.012484573643410858 unconverged cnt = 12514
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.011187470033562
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.013733031007751945 unconverged cnt = 12514
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.011187470033562
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.015106334108527141 unconverged cnt = 12506
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.099728304299185
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.016616967519379855 unconverged cnt = 122
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.099728304299185
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0228669411760642e-05,-1.4114334291093654e-08,0)
sum a = (1.0213313931107694e-06,-3.6725568732252264e-06,9.409145088292637e-19)
sum e = 0.010396026854745858
sum de = -1.152158095263821e-08
Info: CFL hydro = 1.61362184669257e-05 sink sink = inf [SPH][rank=0]
Info: cfl dt = 1.61362184669257e-05 cfl multiplier : 0.01 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.8556e+04 | 12514 | 1 | 6.744e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [sph::Model][rank=0]
----- SPH Solver configuration -----
[
{
"artif_viscosity": {
"type": "none"
},
"boundary_config": {
"bc_type": "periodic"
},
"cfl_config": {
"cfl_cour": 0.0,
"cfl_force": 0.0,
"cfl_multiplier_stiffness": 2.0,
"eta_sink": 0.05
},
"combined_dtdiv_divcurlv_compute": false,
"debug_dump_filename": "",
"do_debug_dump": false,
"enable_particle_reordering": false,
"eos_config": {
"Tvec": "f64_3",
"eos_type": "adiabatic",
"gamma": 1.6666666666666667
},
"epsilon_h": 1e-06,
"ext_force_config": {
"force_list": []
},
"gpart_mass": 0.0,
"h_iter_per_subcycles": 50,
"h_max_subcycles_count": 100,
"htol_up_coarse_cycle": 1.1,
"htol_up_fine_cycle": 1.1,
"kernel_id": "M4<f64>",
"mhd_config": {
"alpha_u": 1.0,
"mhd_type": "ideal_mhd_constrained_hyper_para",
"sigma_mhd": 1.0
},
"particle_killing": [],
"particle_reordering_step_freq": 1000,
"save_dt_to_fields": false,
"scheduler_config": {
"merge_load_value": 0,
"split_load_value": 0
},
"self_grav_config": {
"softening_length": 1e-09,
"softening_mode": "plummer",
"type": "none"
},
"show_ghost_zone_graph": false,
"show_neigh_stats": false,
"smoothing_length_config": {
"type": "density_based"
},
"time_state": {
"cfl_multiplier": 0.01,
"dt_sph": 0.0,
"time": 0.0
},
"tree_reduction_level": 3,
"type_id": "sycl::vec<f64,3>",
"unit_sys": {
"unit_current": 1.0,
"unit_length": 1.0,
"unit_lumint": 1.0,
"unit_mass": 1.2566370621219e-06,
"unit_qte": 1.0,
"unit_temperature": 1.0,
"unit_time": 1.0
},
"use_two_stage_search": true
}
]
------------------------------------
On-the-fly analysis objects
168 import matplotlib.pyplot as plt
169 from shamrock.utils.analysis import (
170 SliceByPlot,
171 SliceDensityPlot,
172 SliceVzPlot,
173 )
174
175 # Render domain half-extent (the box runs from -0.5 to 0.5)
176 ext_r = 0.5
177
178 density_slice_plot = SliceDensityPlot(
179 model,
180 ext_r=ext_r,
181 nx=1080,
182 ny=1080,
183 ex=(1, 0, 0),
184 ey=(0, 1, 0),
185 center=(0, 0, 0),
186 analysis_folder=analysis_folder,
187 analysis_prefix="rho_slice",
188 )
189
190 v_y_slice_plot = SliceVzPlot(
191 model,
192 ext_r=ext_r,
193 nx=1080,
194 ny=1080,
195 ex=(1, 0, 0),
196 ey=(0, 1, 0),
197 center=(0, 0, 0),
198 analysis_folder=analysis_folder,
199 analysis_prefix="vy_slice",
200 do_normalization=False,
201 )
202
203 by_slice_plot = SliceByPlot(
204 model,
205 ext_r=ext_r,
206 nx=1080,
207 ny=1080,
208 ex=(1, 0, 0),
209 ey=(0, 1, 0),
210 center=(0, 0, 0),
211 analysis_folder=analysis_folder,
212 analysis_prefix="By_slice",
213 do_normalization=False,
214 )
215
216
217 def analysis(ianalysis):
218 density_slice_plot.analysis_save(ianalysis)
219 v_y_slice_plot.analysis_save(ianalysis)
220 by_slice_plot.analysis_save(ianalysis)
Run the simulation
226 t_sum = 0.0
227 t_target = 1.0
228 dt_dump = 0.025
229
230 analysis(0)
231 model.do_vtk_dump(f"{sim_name}_{0:05}.vtk", True)
232
233 i_dump = 1
234
235 while t_sum < t_target:
236 model.evolve_until(t_sum + dt_dump)
237 model.do_vtk_dump(f"{sim_name}_{i_dump:05}.vtk", True)
238 analysis(i_dump)
239 t_sum += dt_dump
240 i_dump += 1
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 734.01 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 687.82 ms [sph::CartesianRender][rank=0]
/usr/local/lib/python3.10/dist-packages/shamrock/utils/analysis/StandardPlotHelper.py:59: RuntimeWarning: invalid value encountered in divide
ret = field / normalization
Saving data to plots/rho_slice_0000000.npy
Saving metadata to plots/rho_slice_0000000.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 706.37 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000000.npy
Saving metadata to plots/vy_slice_0000000.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.009970557000000001 s
Info: compute_slice took 692.43 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000000.npy
Saving metadata to plots/By_slice_0000000.json
Info: dump to orztang_00000.vtk [VTK Dump][rank=0]
- took 5.80 ms, bandwidth = 115.34 MB/s
---------------- t = 0, dt = 1.61362184669257e-05 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 16.67 us (3.1%)
patch tree reduce : 1653.00 ns (0.3%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 515.06 us (94.5%)
LB move op cnt : 0
LB apply : 3.66 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.099728304299185
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.02286529313343e-05,-1.4173595471309237e-08,1.4855880431233866e-23)
sum a = (1.0334521305623936e-06,-3.6766716570445475e-06,-2.1075043969128045e-19)
sum e = 0.010396066683976794
sum de = 5.111812636110951e-07
Info: CFL hydro = 0.0005486408477980441 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0005486408477980441 cfl multiplier : 0.34 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.0226e+05 | 12514 | 1 | 1.224e-01 | 0.0% | 0.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.47470164706346746 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.61362184669257e-05, dt = 0.0005486408477980441 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.3%)
patch tree reduce : 1372.00 ns (0.3%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1263.00 ns (0.3%)
LB compute : 431.12 us (95.7%)
LB move op cnt : 0
LB apply : 3.66 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.099728304299185
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0228085839489725e-05,-1.6190800924908457e-08,-1.128316585362591e-22)
sum a = (1.4421286454079617e-06,-3.780178034187899e-06,-4.91107709585847e-19)
sum e = 0.010397485333626385
sum de = 1.8070280709211977e-05
Info: CFL hydro = 0.0009049257345052535 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0009049257345052535 cfl multiplier : 0.56 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.0503e+05 | 12514 | 1 | 1.191e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.576950794244347 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0005647770662649698, dt = 0.0009049257345052535 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.5%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 1092.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1223.00 ns (0.3%)
LB compute : 376.03 us (95.0%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (71.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.099728304299185
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0226668711851368e-05,-1.9639975222104828e-08,-6.335158377948981e-22)
sum a = (2.2547513437455336e-06,-3.7008577032577407e-06,-4.0258737838462546e-19)
sum e = 0.010399523200501762
sum de = 4.4693337315194474e-05
Info: CFL hydro = 0.0011485819718354687 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0011485819718354687 cfl multiplier : 0.7066666666666667 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.1924e+04 | 12514 | 1 | 1.740e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.7236587522403 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0014697028007702234, dt = 0.0011485819718354687 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.6%)
patch tree reduce : 1323.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 342.39 us (94.8%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.1099568483298707
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0223711263510636e-05,-2.3854824155347438e-08,-9.134589727824095e-22)
sum a = (3.4254654213856692e-06,-3.219383988965405e-06,1.2012003082770417e-18)
sum e = 0.010401571594041968
sum de = 7.326903646604662e-05
Info: CFL hydro = 0.0012721516913725007 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012721516913725007 cfl multiplier : 0.8044444444444444 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.7491e+04 | 12514 | 1 | 1.430e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.90887919849331 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0026182847726056923, dt = 0.0012721516913725007 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (1.7%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 1193.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 363.34 us (94.9%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.120185392360556
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0218681221339458e-05,-2.7673862928431906e-08,1.4308763111480164e-21)
sum a = (4.661131777127655e-06,-2.3993379508652423e-06,8.814720771214667e-19)
sum e = 0.010403281677241557
sum de = 9.734846402815636e-05
Info: CFL hydro = 0.0013479103715663353 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013479103715663353 cfl multiplier : 0.8696296296296296 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2704e+04 | 12514 | 1 | 1.513e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.267110486464517 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0038904364639781933, dt = 0.0013479103715663353 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.4%)
patch tree reduce : 1322.00 ns (0.3%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1383.00 ns (0.3%)
LB compute : 379.93 us (95.3%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.1304139363912418
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0211612455951677e-05,-3.038634396014521e-08,2.2867886251224007e-21)
sum a = (5.758582453292861e-06,-1.582886298079697e-06,3.621871109468587e-20)
sum e = 0.010404685394448051
sum de = 0.00011464854663192194
Info: CFL hydro = 0.0013954726796525567 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013954726796525567 cfl multiplier : 0.9130864197530864 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.1309e+04 | 12514 | 1 | 1.755e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.651043340928155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.005238346835544529, dt = 0.0013954726796525567 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (1.8%)
patch tree reduce : 1834.00 ns (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 334.48 us (94.3%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.1176282563528845
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0202836878889966e-05,-3.204496671835545e-08,1.9108506269704104e-21)
sum a = (6.548141121969165e-06,-8.956562440227795e-07,-1.3738020877922142e-19)
sum e = 0.010405827056210232
sum de = 0.00012458839695682648
Info: CFL hydro = 0.0014100006857167785 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014100006857167785 cfl multiplier : 0.9420576131687243 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.0087e+04 | 12514 | 1 | 1.785e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.136367141521475 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0066338195151970855, dt = 0.0014100006857167785 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.5%)
patch tree reduce : 1413.00 ns (0.4%)
gen split merge : 1071.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 355.26 us (95.1%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.112513984337541
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0193053091642388e-05,-3.282833725575869e-08,1.5660732650288792e-21)
sum a = (7.156172403999775e-06,-3.954955649526983e-07,1.31899153387983e-18)
sum e = 0.010406732443966298
sum de = 0.00012760378588465925
Info: CFL hydro = 0.0014371937646284062 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014371937646284062 cfl multiplier : 0.9613717421124829 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.9445e+04 | 12514 | 1 | 1.802e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.16881299809844 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.008043820200913864, dt = 0.0014371937646284062 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.5%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 330.82 us (94.9%)
LB move op cnt : 0
LB apply : 3.11 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.118267540354802
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.018233962302223e-05,-3.304412756430776e-08,4.2529242518210454e-21)
sum a = (7.602337532992074e-06,-1.4885862819463014e-07,8.440953965779276e-19)
sum e = 0.010407470162227882
sum de = 0.00012474840607499724
Info: CFL hydro = 0.0014756847466001956 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014756847466001956 cfl multiplier : 0.9742478280749886 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.9346e+04 | 12514 | 1 | 1.805e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.67091625269702 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.00948101396554227, dt = 0.0014756847466001956 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.8%)
patch tree reduce : 1282.00 ns (0.4%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.4%)
LB compute : 307.08 us (94.4%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.1294550103883645
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.01708003566158e-05,-3.308656343781627e-08,5.295297792151564e-21)
sum a = (7.865178181419086e-06,2.174166330619294e-07,-1.206089512616644e-18)
sum e = 0.010408064916448
sum de = 0.00011676979248486642
Info: CFL hydro = 0.0015255019926626939 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015255019926626939 cfl multiplier : 0.9828318853833258 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8150e+04 | 12514 | 1 | 1.836e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.931060029028643 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.010956698712142466, dt = 0.0015255019926626939 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.6%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 296.25 us (94.4%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.1419210484257634
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.015860807665957e-05,-3.248464052246336e-08,2.076705626155112e-21)
sum a = (7.778200969059215e-06,4.141714151235456e-07,-9.7044272977502e-19)
sum e = 0.010408539616783027
sum de = 0.00010437797370908944
Info: CFL hydro = 0.0015874227857828045 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015874227857828045 cfl multiplier : 0.9885545902555505 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7396e+04 | 12514 | 1 | 1.857e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.576836439390952 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.01248220070480516, dt = 0.0015874227857828045 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.7%)
patch tree reduce : 1472.00 ns (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 304.38 us (94.4%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.1378456129135373
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0146327125164416e-05,-3.1677100475027815e-08,7.880625415806427e-22)
sum a = (7.341621020815285e-06,4.542865370200679e-07,6.933020416828234e-19)
sum e = 0.010408914493050335
sum de = 8.809410125171755e-05
Info: CFL hydro = 0.0016635943086238045 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016635943086238045 cfl multiplier : 0.9923697268370336 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7216e+04 | 12514 | 1 | 1.862e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.695070637402065 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.014069623490587964, dt = 0.0016635943086238045 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 1633.00 ns (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 311.03 us (94.4%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.1356880294070644
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0134460164696604e-05,-3.088951214870101e-08,3.2899600747365354e-21)
sum a = (6.461958968001851e-06,3.786379718831029e-08,-1.1561681630438622e-18)
sum e = 0.010409211128122682
sum de = 6.83499708513235e-05
Info: CFL hydro = 0.001728817971683793 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001728817971683793 cfl multiplier : 0.9949131512246892 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6545e+04 | 12514 | 1 | 1.881e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.847179084599748 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.015733217799211767, dt = 0.001728817971683793 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.6%)
patch tree reduce : 1663.00 ns (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 343.96 us (94.9%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (75.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.138005433914016
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0124020314293056e-05,-3.1170431785730184e-08,-2.5129545331015393e-22)
sum a = (5.273649800389995e-06,-8.355901520349019e-07,-3.5253736553974874e-20)
sum e = 0.010409441227569647
sum de = 4.593119116895998e-05
Info: CFL hydro = 0.0017834627827891317 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017834627827891317 cfl multiplier : 0.9966087674831261 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6453e+04 | 12514 | 1 | 1.883e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.04996515412438 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.01746203577089556, dt = 0.0017834627827891317 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.5%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 374.90 us (95.1%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (77.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.1424804219274423
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0115642141266616e-05,-3.341569716569572e-08,5.629018154147448e-22)
sum a = (3.980936469521532e-06,-1.824827147828729e-06,-3.1014281738451255e-19)
sum e = 0.010409621743706517
sum de = 2.2312484884452057e-05
Info: CFL hydro = 0.0018564631692236776 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018564631692236776 cfl multiplier : 0.997739178322084 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5685e+04 | 12514 | 1 | 1.905e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.700746027035386 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.01924549855368469, dt = 0.0018564631692236776 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.5%)
patch tree reduce : 1282.00 ns (0.3%)
gen split merge : 1192.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 359.77 us (94.9%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (71.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.1450375579351126
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.010940443238943e-05,-3.7685555237904745e-08,-3.9202090716384015e-22)
sum a = (2.636969332453485e-06,-2.463222895658556e-06,-2.6678329468856534e-19)
sum e = 0.01040978033904317
sum de = -1.6340758332720941e-06
Info: CFL hydro = 0.0019187113217907792 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019187113217907792 cfl multiplier : 0.998492785548056 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5964e+04 | 12514 | 1 | 1.897e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.229118632898576 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.021101961722908368, dt = 0.0019187113217907792 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.8%)
patch tree reduce : 1372.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.4%)
LB compute : 299.81 us (94.4%)
LB move op cnt : 0
LB apply : 3.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (71.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.1383250759149752
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0105592362221095e-05,-4.30043479922839e-08,-8.584252685074859e-22)
sum a = (1.4832688157548342e-06,-2.580208730228243e-06,1.4384553820198507e-19)
sum e = 0.01040992101320704
sum de = -2.5193839741450134e-05
Info: CFL hydro = 0.0019564106821147766 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019564106821147766 cfl multiplier : 0.9989951903653708 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5372e+04 | 12514 | 1 | 1.914e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.08339813472943 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.023020673044699146, dt = 0.0019564106821147766 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.7%)
patch tree reduce : 1523.00 ns (0.5%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 298.08 us (94.3%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.1428000639283997
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0103797288387414e-05,-4.816452693644619e-08,-2.940156803728801e-22)
sum a = (6.986580770805771e-07,-2.407794185003769e-06,-5.697209688357691e-19)
sum e = 0.010410042241933865
sum de = -4.532190585288766e-05
Info: CFL hydro = 0.001842789474783055 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001842789474783055 cfl multiplier : 0.9993301269102473 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5304e+04 | 12514 | 1 | 1.916e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.75400439817426 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.024977083726813922, dt = 2.2916273186079222e-05 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.7%)
patch tree reduce : 1473.00 ns (0.5%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 304.63 us (94.3%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (74.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.1463161259389474
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0104548788163183e-05,-4.805104777726648e-08,-9.765341315632582e-22)
sum a = (7.278725477826745e-07,-2.382738350825344e-06,-9.443884171758233e-20)
sum e = 0.010409787550002507
sum de = -4.5555690671126784e-05
Info: CFL hydro = 0.001843718993378444 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001843718993378444 cfl multiplier : 0.9995534179401648 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6709e+04 | 12514 | 1 | 1.876e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.43978156111853356 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 20 [SPH][rank=0]
Info: time since start : 17.839651699 (s) [SPH][rank=0]
Info: dump to orztang_00001.vtk [VTK Dump][rank=0]
- took 2.47 ms, bandwidth = 270.83 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 719.53 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 729.00 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000001.npy
Saving metadata to plots/rho_slice_0000001.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 735.54 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000001.npy
Saving metadata to plots/vy_slice_0000001.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005746174000000001 s
Info: compute_slice took 715.10 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000001.npy
Saving metadata to plots/By_slice_0000001.json
---------------- t = 0.025, dt = 0.001843718993378444 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.24 us (1.9%)
patch tree reduce : 1883.00 ns (0.3%)
gen split merge : 902.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1133.00 ns (0.2%)
LB compute : 602.29 us (95.4%)
LB move op cnt : 0
LB apply : 5.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (71.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.147594693942783
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0103206460978865e-05,-5.2443860638312897e-08,-1.190135266876889e-21)
sum a = (2.1662622792755526e-07,-2.175819487626875e-06,6.580483051288485e-19)
sum e = 0.010410102921702545
sum de = -5.9137175843294115e-05
Info: CFL hydro = 0.001860550715917643 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001860550715917643 cfl multiplier : 0.9997022786267765 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 9.8192e+04 | 12514 | 1 | 1.274e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.08067809863431 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.026843718993378445, dt = 0.001860550715917643 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.4%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 368.10 us (95.2%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (71.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.1608598369825787
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.010327471417043e-05,-5.630133302450657e-08,5.9305726981196325e-22)
sum a = (2.340785357646031e-09,-1.9354134203817625e-06,-1.4392916932884668e-18)
sum e = 0.01041017057382469
sum de = -6.756074364397827e-05
Info: CFL hydro = 0.0018829007690911558 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018829007690911558 cfl multiplier : 0.9998015190845176 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 9.9002e+04 | 12514 | 1 | 1.264e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.98971618121153 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.028704269709296088, dt = 0.0018829007690911558 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 1532.00 ns (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 298.86 us (94.5%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.178759789036279
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.010346965117067e-05,-5.972188060127101e-08,-3.930260889770808e-21)
sum a = (4.3927650480936485e-09,-1.695741778392999e-06,3.3265889000110235e-19)
sum e = 0.010410204207945636
sum de = -7.083339832553214e-05
Info: CFL hydro = 0.0016381148092677654 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016381148092677654 cfl multiplier : 0.9998676793896785 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 9.8836e+04 | 12514 | 1 | 1.266e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.53627195565976 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.030587170478387243, dt = 0.0016381148092677654 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.6%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 315.90 us (94.5%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5082307815246927
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0103460523479957e-05,-6.227406136199094e-08,-1.7952547184477397e-21)
sum a = (1.65359447629859e-07,-1.5319344803935828e-06,9.560324433004026e-19)
sum e = 0.010410137692978149
sum de = -7.011025950382516e-05
Info: CFL hydro = 0.0016383992776190421 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016383992776190421 cfl multiplier : 0.9999117862597856 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 9.5193e+04 | 12514 | 1 | 1.315e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.85980982307242 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03222528528765501, dt = 0.0016383992776190421 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.5%)
patch tree reduce : 1823.00 ns (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 332.32 us (94.9%)
LB move op cnt : 0
LB apply : 3.29 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.527888764583667
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0103057757727377e-05,-6.464981412851756e-08,3.9202090716384015e-22)
sum a = (4.325782161722155e-07,-1.441484485719021e-06,-1.3222241985912118e-18)
sum e = 0.010410079984257007
sum de = -6.682443265083738e-05
Info: CFL hydro = 0.0016414459921636128 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016414459921636128 cfl multiplier : 0.9999411908398571 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.9852e+04 | 12514 | 1 | 1.393e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.35002079166301 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.033863684565274055, dt = 0.0016414459921636128 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.8%)
patch tree reduce : 1563.00 ns (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 291.01 us (94.1%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.530525811091577
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.010212879842913e-05,-6.694183645760586e-08,-3.7654110723993464e-21)
sum a = (7.870230295670743e-07,-1.423347372516377e-06,-2.728626342950446e-19)
sum e = 0.010409974568942193
sum de = -6.177314485886112e-05
Info: CFL hydro = 0.0016485276087025093 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016485276087025093 cfl multiplier : 0.999960793893238 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.0174e+04 | 12514 | 1 | 1.783e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.13674603880921 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03550513055743767, dt = 0.0016485276087025093 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (2.0%)
patch tree reduce : 1853.00 ns (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 297.11 us (93.9%)
LB move op cnt : 0
LB apply : 3.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5310052740930162
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.010054046822706e-05,-6.92733783513629e-08,-3.28091343841737e-21)
sum a = (1.207735724040929e-06,-1.4800422211815793e-06,-3.2889548929232945e-19)
sum e = 0.010409816051295415
sum de = -5.5605541920280074e-05
Info: CFL hydro = 0.0016592468035131129 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016592468035131129 cfl multiplier : 0.999973862595492 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 9.5927e+04 | 12514 | 1 | 1.305e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.49267824622977 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03715365816614018, dt = 0.0016592468035131129 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.6%)
patch tree reduce : 1563.00 ns (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.3%)
LB compute : 303.44 us (94.6%)
LB move op cnt : 0
LB apply : 3.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5346012466038044
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.009818975834154e-05,-7.177586518798206e-08,-3.972478525926913e-21)
sum a = (1.6684696477399207e-06,-1.569761969558901e-06,1.3258750189369017e-19)
sum e = 0.010409599290770753
sum de = -4.8904609000728364e-05
Info: CFL hydro = 0.001673343931171752 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001673343931171752 cfl multiplier : 0.9999825750636614 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 9.5795e+04 | 12514 | 1 | 1.306e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.72572741883353 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03881290496965329, dt = 0.001673343931171752 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.9%)
patch tree reduce : 1894.00 ns (0.6%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1303.00 ns (0.4%)
LB compute : 287.94 us (93.8%)
LB move op cnt : 0
LB apply : 3.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5365190986095576
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0095015599137077e-05,-7.447705045512178e-08,-3.3653487107295813e-21)
sum a = (2.1549483771143363e-06,-1.684536581963027e-06,-9.578498120187416e-19)
sum e = 0.010409318775782569
sum de = -4.206540252866032e-05
Info: CFL hydro = 0.0015861848556525807 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015861848556525807 cfl multiplier : 0.9999883833757742 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4423e+04 | 12514 | 1 | 1.942e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.012274977193496 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04048624890082504, dt = 0.0015861848556525807 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.6%)
patch tree reduce : 1363.00 ns (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 343.74 us (95.0%)
LB move op cnt : 0
LB apply : 3.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5357999041073995
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0091190429541877e-05,-7.724506557051062e-08,-5.878805834737741e-21)
sum a = (2.6027403296412816e-06,-1.7729804611945958e-06,6.204464638591435e-19)
sum e = 0.010408972568887075
sum de = -3.575834776408427e-05
Info: CFL hydro = 0.0016269732097045886 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016269732097045886 cfl multiplier : 0.9999922555838495 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.4634e+04 | 12514 | 1 | 1.677e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.056259519947695 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04207243375647762, dt = 0.0016269732097045886 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.4%)
patch tree reduce : 1452.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 412.43 us (95.6%)
LB move op cnt : 0
LB apply : 3.52 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (76.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5357999041074
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0086600700347012e-05,-8.019980145335356e-08,-3.576436891510111e-21)
sum a = (3.042120705360442e-06,-1.8460551186579646e-06,-4.734486754908359e-19)
sum e = 0.010408573152134106
sum de = -2.9538856800415312e-05
Info: CFL hydro = 0.001641938850306016 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001641938850306016 cfl multiplier : 0.9999948370558996 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8645e+04 | 12514 | 1 | 1.823e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.12901636699251 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.043699406966182214, dt = 0.001641938850306016 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.5%)
patch tree reduce : 1954.00 ns (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 372.96 us (94.9%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5403548026210645
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0081248294123502e-05,-8.329035632773587e-08,-5.2309661561041645e-21)
sum a = (3.4425122336265713e-06,-1.9024471476754398e-06,7.279124618763243e-20)
sum e = 0.010408090213265296
sum de = -2.36190461722474e-05
Info: CFL hydro = 0.0016547889035978818 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016547889035978818 cfl multiplier : 0.9999965580372665 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.9342e+04 | 12514 | 1 | 1.805e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.75370580603031 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04534134581648823, dt = 0.0016547889035978818 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (1.6%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 370.93 us (95.2%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.56 us (73.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.545628895636887
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.00752229538759e-05,-8.6484800888724e-08,-4.6700747043159005e-21)
sum a = (3.806252718933649e-06,-1.9318227317870163e-06,6.237595431155846e-19)
sum e = 0.010407519082013034
sum de = -1.8036339756948868e-05
Info: CFL hydro = 0.0015959304164424983 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015959304164424983 cfl multiplier : 0.9999977053581777 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.5107e+04 | 12514 | 1 | 1.666e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.75419610951308 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04699613472008611, dt = 0.0015959304164424983 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.4%)
patch tree reduce : 1703.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1263.00 ns (0.3%)
LB compute : 373.03 us (95.2%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.544669969634009
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0068847482529403e-05,-8.959216074183057e-08,-3.29749893833584e-21)
sum a = (4.110216630182758e-06,-1.9404117698355276e-06,7.613005809849246e-19)
sum e = 0.010406866687294838
sum de = -1.3047008049798945e-05
Info: CFL hydro = 0.0016125643452095562 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016125643452095562 cfl multiplier : 0.9999984702387851 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1892e+04 | 12514 | 1 | 2.022e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.415673587053988 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04859206513652861, dt = 0.0014079348634713912 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.8%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 335.83 us (94.7%)
LB move op cnt : 0
LB apply : 3.25 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (63.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5439507751318517
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0062818012613753e-05,-9.233098787510351e-08,-2.0666538080227058e-21)
sum a = (4.328002710620253e-06,-1.9304597321214823e-06,2.692922284944139e-19)
sum e = 0.010406186844689028
sum de = -8.967279203754826e-06
Info: CFL hydro = 0.001629478380137047 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001629478380137047 cfl multiplier : 0.99999898015919 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.5966e+04 | 12514 | 1 | 1.456e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.81879114990385 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 35 [SPH][rank=0]
Info: time since start : 23.264789662000002 (s) [SPH][rank=0]
Info: dump to orztang_00002.vtk [VTK Dump][rank=0]
- took 2.39 ms, bandwidth = 280.32 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 770.58 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 749.53 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000002.npy
Saving metadata to plots/rho_slice_0000002.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 796.93 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000002.npy
Saving metadata to plots/vy_slice_0000002.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.004116242 s
Info: compute_slice took 747.22 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000002.npy
Saving metadata to plots/By_slice_0000002.json
---------------- t = 0.05, dt = 0.001629478380137047 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.07 us (2.1%)
patch tree reduce : 1653.00 ns (0.3%)
gen split merge : 1022.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 459.32 us (95.0%)
LB move op cnt : 0
LB apply : 3.75 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.545628895636886
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0055612311459962e-05,-9.54696243618825e-08,-1.905196479270932e-21)
sum a = (4.535719678212965e-06,-1.9060402527731987e-06,-8.118652469181805e-20)
sum e = 0.010405380817965703
sum de = -4.602231024577609e-06
Info: CFL hydro = 0.001651354359220398 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001651354359220398 cfl multiplier : 0.9999993201061267 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.9960e+04 | 12514 | 1 | 1.391e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.17028957570404 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05162947838013705, dt = 0.001651354359220398 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.5%)
patch tree reduce : 1423.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 342.34 us (95.2%)
LB move op cnt : 0
LB apply : 3.15 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.554498961163497
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0047952995843193e-05,-9.859727673545798e-08,-2.3388067839576027e-21)
sum a = (4.686143165969179e-06,-1.8289811851062046e-06,-5.18641649814134e-19)
sum e = 0.010404407860815802
sum de = -6.920586592219969e-07
Info: CFL hydro = 0.0015290644681638938 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015290644681638938 cfl multiplier : 0.9999995467374179 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7040e+04 | 12514 | 1 | 1.867e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.84786819998402 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05328083273935745, dt = 0.0015290644681638938 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.74 us (1.2%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1523.00 ns (0.4%)
LB compute : 363.32 us (95.4%)
LB move op cnt : 0
LB apply : 3.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.559053859677163
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0040663379594188e-05,-1.0133028096496575e-07,-3.468379846586744e-21)
sum a = (4.7820052882395035e-06,-1.7196855977515607e-06,-5.7280888736604435e-19)
sum e = 0.010403356429533606
sum de = 2.4557519985213716e-06
Info: CFL hydro = 0.0015427319662999724 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015427319662999724 cfl multiplier : 0.9999996978249452 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8472e+04 | 12514 | 1 | 2.140e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.72044948795721 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.054809897207521344, dt = 0.0015427319662999724 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.4%)
patch tree reduce : 1392.00 ns (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 355.40 us (95.3%)
LB move op cnt : 0
LB apply : 3.12 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5568962761706886
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.003321273749032e-05,-1.038997349091688e-07,-4.360981296744411e-21)
sum a = (4.850158385955895e-06,-1.6071673005767e-06,-6.75345473771093e-19)
sum e = 0.010402199346820221
sum de = 5.186419119645566e-06
Info: CFL hydro = 0.0015467003552101784 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015467003552101784 cfl multiplier : 0.9999997985499635 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 9.2220e+04 | 12514 | 1 | 1.357e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.92813558884296 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05635262917382131, dt = 0.0015467003552101784 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.82 us (1.6%)
patch tree reduce : 1163.00 ns (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.4%)
LB compute : 284.23 us (94.5%)
LB move op cnt : 0
LB apply : 2.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.555937350167812
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0025658424810766e-05,-1.0629874835607477e-07,-5.491810836640104e-21)
sum a = (4.879955742871917e-06,-1.4846752250069808e-06,-3.7177252471792114e-19)
sum e = 0.010400902471705924
sum de = 7.4403549383019585e-06
Info: CFL hydro = 0.0015725664386664047 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015725664386664047 cfl multiplier : 0.9999998656999756 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 9.2685e+04 | 12514 | 1 | 1.350e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.24029957519226 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05789932952903149, dt = 0.0015725664386664047 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.4%)
patch tree reduce : 1362.00 ns (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 349.18 us (95.4%)
LB move op cnt : 0
LB apply : 3.15 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5542592296627777
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0017961326396493e-05,-1.0853876951869684e-07,-5.803919789651315e-21)
sum a = (4.879724183356002e-06,-1.3202074910233697e-06,7.916651131992971e-19)
sum e = 0.010399440329455575
sum de = 9.235630262978257e-06
Info: CFL hydro = 0.0015993315977131401 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015993315977131401 cfl multiplier : 0.9999999104666504 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3070e+04 | 12514 | 1 | 1.506e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.58038694426256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0594718959676979, dt = 0.0015993315977131401 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.8%)
patch tree reduce : 1663.00 ns (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.4%)
LB compute : 304.00 us (94.2%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (65.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.560492248681477
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0010157211392816e-05,-1.1052090085616536e-07,-3.642276300277371e-21)
sum a = (4.842224833115296e-06,-1.122640964374161e-06,-3.2879899183825835e-19)
sum e = 0.010397789528455681
sum de = 1.0590871897522312e-05
Info: CFL hydro = 0.0016258270493755094 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016258270493755094 cfl multiplier : 0.9999999403111003 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8109e+04 | 12514 | 1 | 1.837e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.336203951924915 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.061071227565411036, dt = 0.0016258270493755094 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.9%)
patch tree reduce : 1382.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.4%)
LB compute : 290.13 us (94.0%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (66.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5592935911778802
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0002314578228293e-05,-1.1218813370802127e-07,-5.157839179190909e-21)
sum a = (4.784623258336604e-06,-9.24807947458527e-07,-5.376355653571287e-19)
sum e = 0.010395930729084043
sum de = 1.1558822191093528e-05
Info: CFL hydro = 0.001650178246872624 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001650178246872624 cfl multiplier : 0.9999999602074002 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1648e+04 | 12514 | 1 | 1.533e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.188131288783254 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06269705461478654, dt = 0.001650178246872624 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.6%)
patch tree reduce : 1694.00 ns (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 320.09 us (94.7%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5578552021735663
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9994465922106728e-05,-1.1355341053079051e-07,-6.126583151701553e-21)
sum a = (4.714839660544443e-06,-7.031613746367902e-07,-9.508859124166107e-19)
sum e = 0.01039384602817937
sum de = 1.2188271704216796e-05
Info: CFL hydro = 0.0016741755435075588 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016741755435075588 cfl multiplier : 0.9999999734716001 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 9.0747e+04 | 12514 | 1 | 1.379e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.07941476034038 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06434723286165916, dt = 0.0016741755435075588 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.4%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 353.55 us (95.2%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (71.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5616909061850737
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9986630030543152e-05,-1.1454774793011364e-07,-8.088698051147235e-21)
sum a = (4.6395863306590016e-06,-4.903648233048127e-07,5.552463507251043e-19)
sum e = 0.010391516115753738
sum de = 1.259005939572678e-05
Info: CFL hydro = 0.0016979897047495053 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016979897047495053 cfl multiplier : 0.9999999823144 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.9925e+04 | 12514 | 1 | 1.392e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.309720306973034 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06602140840516672, dt = 0.0016979897047495053 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.6%)
patch tree reduce : 1633.00 ns (0.5%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 337.20 us (94.9%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (71.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5616909061850737
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.99788150543616e-05,-1.1520225296060738e-07,-5.9657540615830544e-21)
sum a = (4.562248293199874e-06,-3.04866220246871e-07,-4.878267961474297e-19)
sum e = 0.010388920633726926
sum de = 1.2876249701636053e-05
Info: CFL hydro = 0.0016899393493586196 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016899393493586196 cfl multiplier : 0.9999999882095999 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 9.1483e+04 | 12514 | 1 | 1.368e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.68709056121178 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06771939810991623, dt = 0.0016899393493586196 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.5%)
patch tree reduce : 1773.00 ns (0.5%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 359.17 us (95.0%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5679239252037718
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9971170791045205e-05,-1.1555997102475528e-07,-7.749700484631837e-21)
sum a = (4.478724458792252e-06,-1.3927135444695376e-07,-1.192065215958311e-18)
sum e = 0.010386082967605294
sum de = 1.312495038373935e-05
Info: CFL hydro = 0.001728062686764443 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001728062686764443 cfl multiplier : 0.9999999921397332 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 9.1001e+04 | 12514 | 1 | 1.375e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.240817328047214 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06940933745927484, dt = 0.001728062686764443 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (0.8%)
patch tree reduce : 1443.00 ns (0.2%)
gen split merge : 751.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1173.00 ns (0.2%)
LB compute : 697.63 us (97.3%)
LB move op cnt : 0
LB apply : 4.17 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (73.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5698417772095254
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.996350184953061e-05,-1.1566071801480967e-07,-1.0368199108123641e-20)
sum a = (4.3795615765294e-06,1.4440053328642225e-08,-9.785485159169923e-19)
sum e = 0.010382937727573078
sum de = 1.3469893024460413e-05
Info: CFL hydro = 0.001698495637706302 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001698495637706302 cfl multiplier : 0.9999999947598223 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.9029e+04 | 12514 | 1 | 1.406e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.25840438696654 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07113740014603928, dt = 0.001698495637706302 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.3%)
patch tree reduce : 1342.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 361.75 us (95.2%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5703212402109634
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.995614886313633e-05,-1.1550338017310116e-07,-1.1802028140848051e-20)
sum a = (4.282134546206733e-06,1.3984988328153265e-07,7.383985185520504e-19)
sum e = 0.01037955552317064
sum de = 1.3921409462736305e-05
Info: CFL hydro = 0.0017297267362041343 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017297267362041343 cfl multiplier : 0.9999999965065482 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.6244e+04 | 12514 | 1 | 1.641e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.25433502691958 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07283589578374558, dt = 0.0017297267362041343 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.5%)
patch tree reduce : 1423.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 338.08 us (94.9%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (66.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5691225827073674
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.994882468021678e-05,-1.1515497406731826e-07,-9.051913523685054e-21)
sum a = (4.17897915971949e-06,2.2477555407331583e-07,1.5350171677269972e-18)
sum e = 0.010375859116172375
sum de = 1.460031450178829e-05
Info: CFL hydro = 0.0017612557847548778 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017612557847548778 cfl multiplier : 0.9999999976710322 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.0751e+04 | 12514 | 1 | 1.769e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.20613292703638 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07456562251994972, dt = 0.00043437748005029087 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.4%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 344.08 us (89.9%)
LB move op cnt : 0
LB apply : 3.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5703212402109643
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9947098641095184e-05,-1.149838875259489e-07,-7.686813797440971e-21)
sum a = (4.160489397933863e-06,2.4454154760433423e-07,-1.1496063361670273e-18)
sum e = 0.010374518479736793
sum de = 1.4496320648865442e-05
Info: CFL hydro = 0.0017684114535446796 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017684114535446796 cfl multiplier : 0.9999999984473549 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 9.3017e+04 | 12514 | 1 | 1.345e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.62348075976157 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 51 [SPH][rank=0]
Info: time since start : 28.989079626000002 (s) [SPH][rank=0]
Info: dump to orztang_00003.vtk [VTK Dump][rank=0]
- took 2.35 ms, bandwidth = 284.72 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 779.32 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 755.40 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000003.npy
Saving metadata to plots/rho_slice_0000003.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 768.70 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000003.npy
Saving metadata to plots/vy_slice_0000003.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005779652000000001 s
Info: compute_slice took 754.80 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000003.npy
Saving metadata to plots/By_slice_0000003.json
---------------- t = 0.07500000000000001, dt = 0.0017684114535446796 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.79 us (2.3%)
patch tree reduce : 1994.00 ns (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.2%)
LB compute : 438.89 us (94.6%)
LB move op cnt : 0
LB apply : 3.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (71.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5772734537318196
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9939745199759437e-05,-1.1454714450056666e-07,-1.031668354019506e-20)
sum a = (4.061187251975536e-06,2.6568202504704e-07,9.152783518643751e-20)
sum e = 0.010370734189348519
sum de = 1.5814621027762603e-05
Info: CFL hydro = 0.001801637757990647 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001801637757990647 cfl multiplier : 0.9999999989649032 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.9531e+04 | 12514 | 1 | 1.398e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.54736400202161 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0767684114535447, dt = 0.001801637757990647 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.9%)
patch tree reduce : 1663.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 304.60 us (94.0%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5801502317404497
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9932516214990236e-05,-1.140497892026171e-07,-9.068750319056836e-21)
sum a = (3.9823444324314635e-06,2.3237276221159761e-07,5.887631331057993e-19)
sum e = 0.010366206838083225
sum de = 1.704106508877328e-05
Info: CFL hydro = 0.0017970137863251524 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017970137863251524 cfl multiplier : 0.9999999993099354 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.9133e+04 | 12514 | 1 | 1.404e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.196999480003534 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07857004921153535, dt = 0.0017970137863251524 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 28.24 us (8.3%)
patch tree reduce : 1533.00 ns (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.4%)
LB compute : 298.46 us (88.0%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5789515742368554
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9925430910243553e-05,-1.1366221775833374e-07,-7.502928349481266e-21)
sum a = (3.909228545267066e-06,1.612056891092736e-07,-8.019260091488573e-19)
sum e = 0.01036135458111321
sum de = 1.8510325983828863e-05
Info: CFL hydro = 0.0017806094142012515 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017806094142012515 cfl multiplier : 0.999999999539957 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.8321e+04 | 12514 | 1 | 1.417e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.658551557088494 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0803670629978605, dt = 0.0017806094142012515 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.6%)
patch tree reduce : 1824.00 ns (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 322.49 us (94.6%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.577033722231101
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.991853579622235e-05,-1.1343911749546555e-07,-1.0215160177057756e-20)
sum a = (3.820689635018657e-06,5.2652996924401976e-08,6.258181554691014e-19)
sum e = 0.010356230450220475
sum de = 2.0168931313919783e-05
Info: CFL hydro = 0.0018166035197378504 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018166035197378504 cfl multiplier : 0.9999999996933046 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.7880e+04 | 12514 | 1 | 1.424e-01 | 0.0% | 1.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.01572929904578 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08214767241206175, dt = 0.0018166035197378504 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.7%)
patch tree reduce : 1713.00 ns (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1542.00 ns (0.5%)
LB compute : 322.97 us (94.3%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (60.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5851845932555535
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9911673944591868e-05,-1.1344011284986586e-07,-7.791918120787943e-21)
sum a = (3.7096501568175603e-06,-7.284716297119769e-08,-9.45482054988629e-19)
sum e = 0.010350715351341713
sum de = 2.204504794590492e-05
Info: CFL hydro = 0.0018108838379656466 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018108838379656466 cfl multiplier : 0.9999999997955363 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.9337e+04 | 12514 | 1 | 1.401e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.68706475242853 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0839642759317996, dt = 0.0018108838379656466 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.7%)
patch tree reduce : 1693.00 ns (0.5%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 321.81 us (94.4%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5904586862713765
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9905057056431984e-05,-1.1368602261594844e-07,-1.0927457139465388e-20)
sum a = (3.5634879922185285e-06,-2.0884930244302042e-07,-5.330680191977633e-19)
sum e = 0.010344882140715382
sum de = 2.3997359406880824e-05
Info: CFL hydro = 0.001849481219958315 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001849481219958315 cfl multiplier : 0.9999999998636909 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 9.0804e+04 | 12514 | 1 | 1.378e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.30444366070054 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08577515976976524, dt = 0.001849481219958315 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.6%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 328.76 us (94.9%)
LB move op cnt : 0
LB apply : 3.09 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.58926002876778
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9898598793663516e-05,-1.1419542751663786e-07,-1.1566124534053145e-20)
sum a = (3.37366389711627e-06,-3.485803062801548e-07,-9.401425291966948e-19)
sum e = 0.010338633460673595
sum de = 2.6077078345157172e-05
Info: CFL hydro = 0.0018905920125206585 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018905920125206585 cfl multiplier : 0.9999999999091272 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.9350e+04 | 12514 | 1 | 1.401e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.53889298735256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08762464098972356, dt = 0.0018905920125206585 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.6%)
patch tree reduce : 1583.00 ns (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 315.43 us (94.6%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.588061371264184
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.989239610969621e-05,-1.149836655927579e-07,-1.3677772007692742e-20)
sum a = (3.1644837020162003e-06,-4.953637670238118e-07,-1.5086050104022869e-18)
sum e = 0.01033192631951566
sum de = 2.824701793420763e-05
Info: CFL hydro = 0.0018905315319663228 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018905315319663228 cfl multiplier : 0.9999999999394182 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 9.0129e+04 | 12514 | 1 | 1.388e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.01924045924258 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08951523300224422, dt = 0.0018905315319663228 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.9%)
patch tree reduce : 1583.00 ns (0.5%)
gen split merge : 1102.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 291.03 us (94.0%)
LB move op cnt : 0
LB apply : 3.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.589020297267061
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.988661129067828e-05,-1.1605892023320442e-07,-1.7073075921755187e-20)
sum a = (2.9433994734344772e-06,-6.443364646338808e-07,-1.7161268061094383e-19)
sum e = 0.010324879655193311
sum de = 3.0439976409590657e-05
Info: CFL hydro = 0.0019335799226131247 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019335799226131247 cfl multiplier : 0.9999999999596122 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 9.0062e+04 | 12514 | 1 | 1.389e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.98133198888996 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09140576453421054, dt = 0.0019335799226131247 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.6%)
patch tree reduce : 1884.00 ns (0.6%)
gen split merge : 832.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1313.00 ns (0.4%)
LB compute : 312.36 us (94.3%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.585903787757711
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9881128975904723e-05,-1.1744561507618979e-07,-1.605488956880577e-20)
sum a = (2.6935252069911847e-06,-7.954696295985321e-07,-3.214812682378667e-19)
sum e = 0.010317388187385205
sum de = 3.27394427179571e-05
Info: CFL hydro = 0.001949701580041662 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001949701580041662 cfl multiplier : 0.9999999999730749 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.9811e+04 | 12514 | 1 | 1.393e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.95732617709765 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09333934445682367, dt = 0.001949701580041662 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.7%)
patch tree reduce : 1873.00 ns (0.6%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 286.69 us (94.0%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5911778807735333
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.987611898148527e-05,-1.1914265749459136e-07,-1.6851119212618992e-20)
sum a = (2.4505169281371788e-06,-9.417603883626229e-07,-5.846459083987658e-19)
sum e = 0.010309513776617379
sum de = 3.511721874477485e-05
Info: CFL hydro = 0.0019480547959991395 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019480547959991395 cfl multiplier : 0.9999999999820499 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.9646e+04 | 12514 | 1 | 1.396e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.28134633243936 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09528904603686533, dt = 0.0019480547959991395 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.6%)
patch tree reduce : 1794.00 ns (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 331.56 us (94.6%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (70.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.592856001278568
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9871582137043313e-05,-1.211198699993041e-07,-1.8247568046663518e-20)
sum a = (2.2370171545474002e-06,-1.0604908125694473e-06,-1.0677443292967116e-18)
sum e = 0.01030134747395757
sum de = 3.7558113588452157e-05
Info: CFL hydro = 0.0019508996257033427 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019508996257033427 cfl multiplier : 0.9999999999880332 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.9503e+04 | 12514 | 1 | 1.398e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.15862709981418 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09723710083286448, dt = 0.0019508996257033427 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.7%)
patch tree reduce : 1824.00 ns (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 289.69 us (94.0%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.591897075275692
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9867425895742885e-05,-1.233044278145488e-07,-2.0774092534243804e-20)
sum a = (2.048898564783988e-06,-1.1659592516259832e-06,1.384223812831893e-18)
sum e = 0.010292904416929852
sum de = 4.012143200452432e-05
Info: CFL hydro = 0.001955513545417039 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001955513545417039 cfl multiplier : 0.999999999992022 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.9990e+04 | 12514 | 1 | 1.391e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.50520969842276 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09918800045856782, dt = 0.0008119995414321846 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.9%)
patch tree reduce : 1703.00 ns (0.6%)
gen split merge : 1052.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.4%)
LB compute : 278.39 us (93.6%)
LB move op cnt : 0
LB apply : 3.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5938149272814455
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9865945691291166e-05,-1.243540653615003e-07,-1.7249171210662276e-20)
sum a = (1.986433467808911e-06,-1.1919346943754243e-06,-1.277851452627518e-18)
sum e = 0.010288748655801181
sum de = 4.093213122091198e-05
Info: CFL hydro = 0.001962366128436113 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001962366128436113 cfl multiplier : 0.9999999999946813 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.9145e+04 | 12514 | 1 | 1.810e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.151797349043125 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 65 [SPH][rank=0]
Info: time since start : 34.239264809000005 (s) [SPH][rank=0]
Info: dump to orztang_00004.vtk [VTK Dump][rank=0]
- took 2.34 ms, bandwidth = 286.23 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 784.33 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 783.35 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000004.npy
Saving metadata to plots/rho_slice_0000004.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 791.07 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000004.npy
Saving metadata to plots/vy_slice_0000004.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005729218 s
Info: compute_slice took 777.41 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000004.npy
Saving metadata to plots/By_slice_0000004.json
---------------- t = 0.1, dt = 0.001962366128436113 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.95 us (2.6%)
patch tree reduce : 1804.00 ns (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.3%)
LB compute : 392.11 us (94.0%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (71.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.596931436790795
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9862072942352415e-05,-1.2670362365605624e-07,-2.0841439715730925e-20)
sum a = (1.8284141086901697e-06,-1.2560235410656754e-06,-1.1530159128775395e-18)
sum e = 0.010280477483294118
sum de = 4.4161413907258836e-05
Info: CFL hydro = 0.0019459304695907688 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019459304695907688 cfl multiplier : 0.9999999999964541 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.7163e+04 | 12514 | 1 | 1.436e-01 | 0.0% | 1.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.20628478635839 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10196236612843612, dt = 0.0019459304695907688 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (1.5%)
patch tree reduce : 1303.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.4%)
LB compute : 293.06 us (94.6%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.596691705290076
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.985867002154613e-05,-1.2921064102584875e-07,-2.3032736068595468e-20)
sum a = (1.688037687900048e-06,-1.2531537131256472e-06,-6.168117264224655e-19)
sum e = 0.01027148676270582
sum de = 4.726856719773539e-05
Info: CFL hydro = 0.001944416352853797 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001944416352853797 cfl multiplier : 0.999999999997636 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 9.0579e+04 | 12514 | 1 | 1.382e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.706025644740116 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10390829659802689, dt = 0.001944416352853797 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.4%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 344.86 us (95.3%)
LB move op cnt : 0
LB apply : 3.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (71.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.594054658782165
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9855524354838994e-05,-1.3164450135599866e-07,-2.3792841990995356e-20)
sum a = (1.577511459096936e-06,-1.214451941960858e-06,9.864452242418106e-19)
sum e = 0.010262318181806842
sum de = 5.0745556092969974e-05
Info: CFL hydro = 0.0019405247025612474 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019405247025612474 cfl multiplier : 0.999999999998424 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.2033e+04 | 12514 | 1 | 1.737e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.29287698086124 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10585271295088068, dt = 0.0019405247025612474 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.81 us (1.4%)
patch tree reduce : 1072.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 336.29 us (95.3%)
LB move op cnt : 0
LB apply : 3.28 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6000479463001436
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.985257060938722e-05,-1.3396354917112143e-07,-2.0280736735532646e-20)
sum a = (1.5067870982812119e-06,-1.142426374133967e-06,2.1874364547016985e-19)
sum e = 0.010253000361416817
sum de = 5.457500729600958e-05
Info: CFL hydro = 0.0019359284646876733 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019359284646876733 cfl multiplier : 0.9999999999989493 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.5817e+04 | 12514 | 1 | 1.458e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.906928902597194 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10779323765344193, dt = 0.0019359284646876733 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.9%)
patch tree reduce : 1082.00 ns (0.4%)
gen split merge : 751.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.4%)
LB compute : 272.89 us (93.8%)
LB move op cnt : 0
LB apply : 3.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6029247243087745
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.98497221985383e-05,-1.3610532121093737e-07,-2.0563004353463274e-20)
sum a = (1.48062654901075e-06,-1.0286785097003646e-06,1.4778263432808592e-18)
sum e = 0.010243563570436424
sum de = 5.8760311560292566e-05
Info: CFL hydro = 0.0019240239999708383 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019240239999708383 cfl multiplier : 0.9999999999992996 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.9037e+04 | 12514 | 1 | 1.405e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.58673471165129 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10972916611812959, dt = 0.0019240239999708383 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 1403.00 ns (0.4%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 321.51 us (94.6%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (70.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6024452613073357
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9846898759998753e-05,-1.3797441948651714e-07,-1.6467391055414387e-20)
sum a = (1.491459809139589e-06,-8.864491899222098e-07,-4.746066449396891e-20)
sum e = 0.010234065750905356
sum de = 6.3266462174219e-05
Info: CFL hydro = 0.001915467401810751 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001915467401810751 cfl multiplier : 0.9999999999995332 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.6440e+04 | 12514 | 1 | 1.448e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.844411119380844 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11165319011810043, dt = 0.001915467401810751 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.06 us (1.4%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 346.17 us (95.2%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6014863353044593
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9844031495627065e-05,-1.395355577015861e-07,-1.7982451343421304e-20)
sum a = (1.5251729281719518e-06,-7.322209887760416e-07,1.2325941466681725e-19)
sum e = 0.010224525035180659
sum de = 6.805193036523384e-05
Info: CFL hydro = 0.0019062945510694216 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019062945510694216 cfl multiplier : 0.9999999999996888 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.6331e+04 | 12514 | 1 | 1.639e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.061391978957104 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11356865751991119, dt = 0.0019062945510694216 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.6%)
patch tree reduce : 1644.00 ns (0.5%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1263.00 ns (0.4%)
LB compute : 304.20 us (94.4%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (71.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.598849288796546
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.984109177859436e-05,-1.4078367703730944e-07,-1.761279573160207e-20)
sum a = (1.5813355681954536e-06,-5.664288993874239e-07,-8.971046646809847e-19)
sum e = 0.010214968125994692
sum de = 7.307428090479878e-05
Info: CFL hydro = 0.0018902954467948307 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018902954467948307 cfl multiplier : 0.9999999999997925 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7165e+04 | 12514 | 1 | 1.863e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.83322905242271 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1154749520709806, dt = 0.0018902954467948307 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.81 us (1.3%)
patch tree reduce : 1413.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 345.79 us (95.2%)
LB move op cnt : 0
LB apply : 3.18 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.598849288796546
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.983804905590272e-05,-1.416963707274953e-07,-2.0314473150139535e-20)
sum a = (1.6578021580915768e-06,-3.828587897291548e-07,1.2067971606131655e-18)
sum e = 0.010205450431137795
sum de = 7.825627808926585e-05
Info: CFL hydro = 0.0018784173052346829 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018784173052346829 cfl multiplier : 0.9999999999998618 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.8758e+04 | 12514 | 1 | 1.589e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.82822066789542 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11736524751777544, dt = 0.0018784173052346829 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.5%)
patch tree reduce : 1432.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 349.20 us (95.2%)
LB move op cnt : 0
LB apply : 3.17 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (75.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.601006872303019
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.983486273941697e-05,-1.4224203843337159e-07,-1.6091076114082432e-20)
sum a = (1.765631773053773e-06,-2.1847967885608146e-07,-1.2843811136863291e-18)
sum e = 0.010195983705099542
sum de = 8.35453962760264e-05
Info: CFL hydro = 0.0018834320378661629 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018834320378661629 cfl multiplier : 0.999999999999908 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.1124e+04 | 12514 | 1 | 1.759e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.43392834873586 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11924366482301012, dt = 0.0018834320378661629 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.4%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 363.66 us (95.3%)
LB move op cnt : 0
LB apply : 3.28 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6062809653188417
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9831436017461086e-05,-1.4249914377713687e-07,-2.0817817943119773e-20)
sum a = (1.8956146451594544e-06,-5.6184570864849225e-08,-2.614116030786075e-19)
sum e = 0.010186515339393742
sum de = 8.89569677401151e-05
Info: CFL hydro = 0.001851048223932475 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001851048223932475 cfl multiplier : 0.9999999999999387 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.3296e+04 | 12514 | 1 | 1.707e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.71354665281099 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12112709686087628, dt = 0.001851048223932475 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.7%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 331.91 us (94.9%)
LB move op cnt : 0
LB apply : 3.20 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.607479622822439
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9827804736386088e-05,-1.4245030822342714e-07,-2.029411821842141e-20)
sum a = (2.04620859168905e-06,1.0906156349270582e-07,-1.757733291723094e-18)
sum e = 0.010177216712597153
sum de = 9.432996367594522e-05
Info: CFL hydro = 0.0018626325335525777 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018626325335525777 cfl multiplier : 0.9999999999999591 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.9204e+04 | 12514 | 1 | 1.403e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.50183000285941 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12297814508480875, dt = 0.0018626325335525777 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (1.3%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 354.68 us (95.8%)
LB move op cnt : 0
LB apply : 2.65 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.607959085823876
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9823854023363943e-05,-1.4209422732563547e-07,-2.494559705919236e-20)
sum a = (2.2229750666018183e-06,2.2905257103899174e-07,-1.8016074675074203e-19)
sum e = 0.010167945920038415
sum de = 9.981158861188261e-05
Info: CFL hydro = 0.0018402069061435502 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018402069061435502 cfl multiplier : 0.9999999999999728 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.9922e+04 | 12514 | 1 | 1.566e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.825335249429735 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12484077761836133, dt = 0.00015922238163866564 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.95 us (1.3%)
patch tree reduce : 1233.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 364.52 us (95.8%)
LB move op cnt : 0
LB apply : 2.65 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.609637206328911
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9823335450486073e-05,-1.4194600745241786e-07,-2.345792797559625e-20)
sum a = (2.2492232016972388e-06,2.4754507094197277e-07,4.5578964139582477e-20)
sum e = 0.010166481157922552
sum de = 9.9703157453902e-05
Info: CFL hydro = 0.0018471407763883355 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018471407763883355 cfl multiplier : 0.9999999999999819 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8022e+04 | 12514 | 1 | 2.157e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6576826229709782 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 79 [SPH][rank=0]
Info: time since start : 39.821252897 (s) [SPH][rank=0]
Info: dump to orztang_00005.vtk [VTK Dump][rank=0]
- took 2.19 ms, bandwidth = 305.89 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 792.37 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 803.64 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000005.npy
Saving metadata to plots/rho_slice_0000005.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 805.91 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000005.npy
Saving metadata to plots/vy_slice_0000005.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.003298853 s
Info: compute_slice took 821.20 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000005.npy
Saving metadata to plots/By_slice_0000005.json
---------------- t = 0.125, dt = 0.0018471407763883355 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.20 us (2.2%)
patch tree reduce : 2.03 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 443.54 us (94.7%)
LB move op cnt : 0
LB apply : 4.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6108358638325067
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.981917872894977e-05,-1.4148728464805117e-07,-2.3368466794217833e-20)
sum a = (2.448824898991423e-06,2.966628575667639e-07,2.6453168742690634e-19)
sum e = 0.010158010368371504
sum de = 0.00010573883157138136
Info: CFL hydro = 0.0018162363472258745 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018162363472258745 cfl multiplier : 0.9999999999999879 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.5089e+04 | 12514 | 1 | 1.471e-01 | 0.0% | 1.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.214704863353795 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12684714077638834, dt = 0.0018162363472258745 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.4%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1133.00 ns (0.3%)
LB compute : 369.83 us (95.2%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (71.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6089180118267543
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9814546737943036e-05,-1.4090311104962912e-07,-2.2654787706816998e-20)
sum a = (2.691510411335589e-06,3.1152704993268304e-07,-8.310843231873411e-19)
sum e = 0.010149122206483898
sum de = 0.00011106614621257366
Info: CFL hydro = 0.0018060203371259094 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018060203371259094 cfl multiplier : 0.999999999999992 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.7183e+04 | 12514 | 1 | 1.435e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.55216815154996 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12866337712361423, dt = 0.0018060203371259094 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.69 us (1.5%)
patch tree reduce : 1383.00 ns (0.4%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 305.31 us (94.7%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.611794789835385
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9809465428278288e-05,-1.403269884193908e-07,-2.5184830330743628e-20)
sum a = (2.92995527678439e-06,2.821256086432786e-07,-2.420887920463205e-18)
sum e = 0.01014039594897145
sum de = 0.00011640600489739504
Info: CFL hydro = 0.0017869358192204295 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017869358192204295 cfl multiplier : 0.9999999999999947 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0413e+04 | 12514 | 1 | 2.071e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.38754902187085 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13046939746074013, dt = 0.0017869358192204295 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.5%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 351.00 us (95.1%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.611794789835385
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9804014468107443e-05,-1.3984939786395651e-07,-3.096764130231689e-20)
sum a = (3.160047121398987e-06,2.4419591644686513e-07,1.6128423644353386e-18)
sum e = 0.010131876924328279
sum de = 0.00012170861385911089
Info: CFL hydro = 0.0017756039665172442 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017756039665172442 cfl multiplier : 0.9999999999999964 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.9308e+04 | 12514 | 1 | 1.806e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.62873187467327 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13225633327996056, dt = 0.0017756039665172442 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 1392.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.3%)
LB compute : 308.91 us (94.7%)
LB move op cnt : 0
LB apply : 3.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.613952373341857
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.979819789622495e-05,-1.3944969158912408e-07,-2.447517197059575e-20)
sum a = (3.384455651945184e-06,1.9136034301933974e-07,-5.477356322165704e-19)
sum e = 0.01012354984060528
sum de = 0.00012701800875789207
Info: CFL hydro = 0.0017525334280106975 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017525334280106975 cfl multiplier : 0.9999999999999977 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0011e+04 | 12514 | 1 | 1.564e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.86992459239086 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1340319372464778, dt = 0.0017525334280106975 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.7%)
patch tree reduce : 1893.00 ns (0.6%)
gen split merge : 761.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 283.15 us (94.1%)
LB move op cnt : 0
LB apply : 3.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.613712641841138
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9792067294220956e-05,-1.3916123371898063e-07,-2.7370095592728723e-20)
sum a = (3.5595053433371725e-06,1.3734220102071845e-07,-7.452659207001103e-19)
sum e = 0.01011546388965714
sum de = 0.00013228707406951024
Info: CFL hydro = 0.0017382200197562266 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017382200197562266 cfl multiplier : 0.9999999999999986 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.1705e+04 | 12514 | 1 | 1.745e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.15120192654274 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1357844706744885, dt = 0.0017382200197562266 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.89 us (1.5%)
patch tree reduce : 1793.00 ns (0.6%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 301.35 us (94.5%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6163496883490494
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9785726700554913e-05,-1.3896983705447668e-07,-2.8821578131048176e-20)
sum a = (3.672273400340114e-06,8.320160090385203e-08,-8.897266301717986e-19)
sum e = 0.010107599369964259
sum de = 0.00013756064849976455
Info: CFL hydro = 0.0017331025411578167 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017331025411578167 cfl multiplier : 0.9999999999999991 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.2833e+04 | 12514 | 1 | 1.718e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.419840151657105 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13752269069424475, dt = 0.0017331025411578167 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.5%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 339.51 us (95.1%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (71.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.617068882851206
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.977926426634581e-05,-1.388726942861196e-07,-3.05595374861412e-20)
sum a = (3.739649173427429e-06,3.5631774366824365e-08,-7.180053899250248e-19)
sum e = 0.010099922450236047
sum de = 0.00014287247342441298
Info: CFL hydro = 0.0017185062023198005 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017185062023198005 cfl multiplier : 0.9999999999999994 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.7312e+04 | 12514 | 1 | 1.433e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.53181328535903 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13925579323540258, dt = 0.0017185062023198005 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.9%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.4%)
LB compute : 307.46 us (93.9%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (73.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.620185392360556
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9772779271484818e-05,-1.388526825551484e-07,-3.162402502636301e-20)
sum a = (3.765520723929987e-06,-1.281626034802101e-08,-5.018269684422449e-19)
sum e = 0.010092466846284431
sum de = 0.00014819605363246616
Info: CFL hydro = 0.0017089408205101984 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017089408205101984 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4788e+04 | 12514 | 1 | 1.932e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.02969169739752 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.14097429943772238, dt = 0.0017089408205101984 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.8%)
patch tree reduce : 1573.00 ns (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1402.00 ns (0.4%)
LB compute : 320.71 us (94.3%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (71.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.623301901869905
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9766321989199277e-05,-1.389162139090483e-07,-3.230252275030043e-20)
sum a = (3.7452509284410177e-06,-5.928905050202478e-08,-1.1932553512251878e-18)
sum e = 0.010085224246426426
sum de = 0.00015357555259982018
Info: CFL hydro = 0.0016370005035784578 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016370005035784578 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4279e+04 | 12514 | 1 | 1.485e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.4335273459686 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1426832402582326, dt = 0.0016370005035784578 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (2.0%)
patch tree reduce : 1493.00 ns (0.5%)
gen split merge : 761.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.4%)
LB compute : 279.94 us (93.7%)
LB move op cnt : 0
LB apply : 3.81 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.623301901869905
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.976020833148381e-05,-1.3905297973837683e-07,-3.4876793374009643e-20)
sum a = (3.6843004926955404e-06,-1.0101520458714624e-07,3.8364171156866635e-19)
sum e = 0.010078402221843266
sum de = 0.000158778794328003
Info: CFL hydro = 0.0016080424885129697 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016080424885129697 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2269e+04 | 12514 | 1 | 2.010e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.324100942720133 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.14432024076181105, dt = 0.0016080424885129697 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.5%)
patch tree reduce : 1332.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 347.30 us (95.1%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (71.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6233019018699046
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.975433370769798e-05,-1.392495693460761e-07,-3.295589092890683e-20)
sum a = (3.60403008983696e-06,-1.3700186978230203e-07,-4.831466696249814e-19)
sum e = 0.010071888450009555
sum de = 0.0001640059034521488
Info: CFL hydro = 0.0015680581964616115 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015680581964616115 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0566e+04 | 12514 | 1 | 1.553e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.269875775492466 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.145928283250324, dt = 0.0015680581964616115 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.5%)
patch tree reduce : 1542.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 339.48 us (94.9%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6259389483778173
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9748746917884765e-05,-1.394933302953371e-07,-3.4491306148631865e-20)
sum a = (3.5436373934638707e-06,-1.7583417404747366e-07,5.938292494445321e-19)
sum e = 0.01006568274578414
sum de = 0.000169181055426569
Info: CFL hydro = 0.0015080167017400754 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015080167017400754 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.7927e+04 | 12514 | 1 | 1.423e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.663635144621075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1474963414467856, dt = 0.0015080167017400754 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.85 us (1.6%)
patch tree reduce : 1723.00 ns (0.6%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.3%)
LB compute : 287.65 us (94.1%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.38 us (73.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6271376058814124
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9743450403141548e-05,-1.397889368231076e-07,-3.2707862316489703e-20)
sum a = (3.5076950269958277e-06,-2.269967389439011e-07,6.634843283748537e-19)
sum e = 0.010059844520489566
sum de = 0.000174215396046835
Info: CFL hydro = 0.001511911273741425 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001511911273741425 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0657e+04 | 12514 | 1 | 2.063e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.31447064189279 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1490043581485257, dt = 0.0009956418514742993 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.4%)
patch tree reduce : 1423.00 ns (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 363.62 us (95.2%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (11.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.629055457887167
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.973998509601516e-05,-1.4005352127722706e-07,-3.198086457006343e-20)
sum a = (3.486073885548157e-06,-2.5473748496361443e-07,-7.201926655506364e-19)
sum e = 0.01005579260813781
sum de = 0.0001772509938791317
Info: CFL hydro = 0.0015283843219912742 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015283843219912742 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.6012e+04 | 12514 | 1 | 1.455e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.635815305406304 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 94 [SPH][rank=0]
Info: time since start : 45.752511283000004 (s) [SPH][rank=0]
Info: dump to orztang_00006.vtk [VTK Dump][rank=0]
- took 2.33 ms, bandwidth = 286.77 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 830.06 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 823.18 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000006.npy
Saving metadata to plots/rho_slice_0000006.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 842.93 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000006.npy
Saving metadata to plots/vy_slice_0000006.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.0034493650000000002 s
Info: compute_slice took 802.14 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000006.npy
Saving metadata to plots/By_slice_0000006.json
---------------- t = 0.15, dt = 0.0015283843219912742 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.52 us (2.1%)
patch tree reduce : 1562.00 ns (0.3%)
gen split merge : 1131.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 423.99 us (94.9%)
LB move op cnt : 0
LB apply : 3.75 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6302541153907604
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9734667798799963e-05,-1.4045666798013164e-07,-3.379044312934985e-20)
sum a = (3.4412797183483147e-06,-3.0471230121319826e-07,8.023441647831653e-19)
sum e = 0.010050471599914254
sum de = 0.00018290414592019762
Info: CFL hydro = 0.0014784073253910988 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014784073253910988 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4095e+04 | 12514 | 1 | 1.488e-01 | 0.0% | 1.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.97513886008849 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15152838432199126, dt = 0.0014784073253910988 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 1543.00 ns (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 300.02 us (94.3%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6328911618986726
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9729614417006842e-05,-1.4094534724028637e-07,-3.1338867510719313e-20)
sum a = (3.4161137240792844e-06,-3.3164594209683766e-07,1.2389629786368652e-18)
sum e = 0.01004513657802359
sum de = 0.00018788962855970196
Info: CFL hydro = 0.0014515824660559712 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014515824660559712 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.8560e+04 | 12514 | 1 | 1.413e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.66514331271693 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15300679164738235, dt = 0.0014515824660559712 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.8%)
patch tree reduce : 1242.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 325.90 us (94.6%)
LB move op cnt : 0
LB apply : 3.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.636487134409461
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.972467424901801e-05,-1.4144666812129308e-07,-2.9274946540751355e-20)
sum a = (3.4028499248288765e-06,-3.4872527356862103e-07,-9.528158614980326e-19)
sum e = 0.010040043166194638
sum de = 0.00019285439312110382
Info: CFL hydro = 0.001454177126038032 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001454177126038032 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.7113e+04 | 12514 | 1 | 1.437e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.377406013537474 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15445837411343832, dt = 0.001454177126038032 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.8%)
patch tree reduce : 1533.00 ns (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.3%)
LB compute : 286.31 us (94.0%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.639603643918811
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9719735529243234e-05,-1.4196617246641073e-07,-3.2269603045916797e-20)
sum a = (3.404344646734184e-06,-3.379000394244055e-07,8.594706575932561e-19)
sum e = 0.010035095701724521
sum de = 0.00019784314255106943
Info: CFL hydro = 0.001470990530411913 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001470990530411913 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.7995e+04 | 12514 | 1 | 1.422e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.81137283463783 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15591255123947637, dt = 0.001470990530411913 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.7%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1111.00 ns (0.3%)
LB compute : 316.59 us (94.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.64272015342816
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.971472668371045e-05,-1.4245534932103563e-07,-2.96864271395809e-20)
sum a = (3.4042075060585082e-06,-3.088726776712991e-07,-1.2396706266333865e-18)
sum e = 0.010030237465987463
sum de = 0.00020282242495088784
Info: CFL hydro = 0.0014260978290481735 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014260978290481735 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0039e+04 | 12514 | 1 | 1.563e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.87003972299486 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15738354176988828, dt = 0.0014260978290481735 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.4%)
patch tree reduce : 1843.00 ns (0.5%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 344.86 us (95.0%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.641761227425284
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.970987205164274e-05,-1.4287448248970023e-07,-3.2984789906037496e-20)
sum a = (3.4007048849240183e-06,-2.5973233643660743e-07,3.4854880410481e-19)
sum e = 0.010025611230193243
sum de = 0.00020757699136295536
Info: CFL hydro = 0.0014389030719044998 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014389030719044998 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.7770e+04 | 12514 | 1 | 1.426e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.00805527879517 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15880963959893646, dt = 0.0014389030719044998 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 1583.00 ns (0.5%)
gen split merge : 1142.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 311.16 us (94.6%)
LB move op cnt : 0
LB apply : 3.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6415214959245654
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9704981264477317e-05,-1.4321317267816146e-07,-3.142751198187447e-20)
sum a = (3.386530776771039e-06,-1.960264223571595e-07,-3.0686190394609516e-20)
sum e = 0.010021113122744908
sum de = 0.0002124920510945281
Info: CFL hydro = 0.0013967885349904945 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013967885349904945 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8373e+04 | 12514 | 1 | 1.830e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.302273645420225 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16024854267084096, dt = 0.0013967885349904945 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.8%)
patch tree reduce : 1563.00 ns (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 303.63 us (94.3%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (66.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6436790794310374
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9700261194698826e-05,-1.4344114681983815e-07,-3.179641370733378e-20)
sum a = (3.396178265155858e-06,-1.2033869363080127e-07,1.923515917817242e-18)
sum e = 0.010016827458850784
sum de = 0.0002172085468888583
Info: CFL hydro = 0.001414869601743001 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001414869601743001 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5639e+04 | 12514 | 1 | 1.906e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.37536982598359 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16164533120583147, dt = 0.001414869601743001 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.4%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 355.99 us (95.0%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (72.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6460763944382295
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9695449307558807e-05,-1.4355855050387664e-07,-2.769024600024586e-20)
sum a = (3.419660087002477e-06,-1.0558580854705524e-08,8.884842254506331e-19)
sum e = 0.010012651628209652
sum de = 0.00022202723312239348
Info: CFL hydro = 0.0014428083503417533 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014428083503417533 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.2537e+04 | 12514 | 1 | 1.725e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.524453585691656 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16306020080757447, dt = 0.0014428083503417533 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.82 us (1.3%)
patch tree reduce : 1653.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 349.56 us (95.1%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (70.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6467955889403862
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9690498781571983e-05,-1.4349612224041148e-07,-2.711779495760533e-20)
sum a = (3.4350103162782383e-06,1.372949636946109e-07,-4.933271510294823e-19)
sum e = 0.010008526263106277
sum de = 0.00022692014703351988
Info: CFL hydro = 0.0013822460828741092 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013822460828741092 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.5343e+04 | 12514 | 1 | 1.466e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.4226606290722 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1645030091579162, dt = 0.0013822460828741092 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.5%)
patch tree reduce : 1693.00 ns (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1071.00 ns (0.3%)
LB compute : 322.28 us (94.8%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6467955889403876
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9685739678298506e-05,-1.4319968465010616e-07,-2.865471795005023e-20)
sum a = (3.453974343511133e-06,3.0013296950120543e-07,-1.2202746383650957e-18)
sum e = 0.010004621717624795
sum de = 0.0002315029979363563
Info: CFL hydro = 0.001396884897621297 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001396884897621297 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3493e+04 | 12514 | 1 | 1.499e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.200187921741225 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1658852552407903, dt = 0.001396884897621297 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.6%)
patch tree reduce : 1563.00 ns (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 309.53 us (94.7%)
LB move op cnt : 0
LB apply : 2.95 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6499120984497355
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9680901767224957e-05,-1.4266789233911602e-07,-3.0896273393576807e-20)
sum a = (3.4732558747676317e-06,4.809835878988599e-07,1.2019401220915867e-18)
sum e = 0.010000848705542239
sum de = 0.00023630301876413957
Info: CFL hydro = 0.0014027573846675482 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014027573846675482 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.3349e+04 | 12514 | 1 | 1.706e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.475367447667484 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1672821401384116, dt = 0.0014027573846675482 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.7%)
patch tree reduce : 1473.00 ns (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1303.00 ns (0.4%)
LB compute : 287.70 us (94.2%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6525491449576477
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9676016164857775e-05,-1.4186687531176906e-07,-2.751685213746186e-20)
sum a = (3.5033733363653855e-06,6.664847914446308e-07,6.192724115012785e-19)
sum e = 0.009997169663937683
sum de = 0.00024122444710658947
Info: CFL hydro = 0.0013712116415543324 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013712116415543324 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.7547e+04 | 12514 | 1 | 1.429e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.3290330918234 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16868489752307916, dt = 0.0013712116415543324 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.6%)
patch tree reduce : 1472.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.4%)
LB compute : 323.41 us (92.8%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6556656544669974
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9671191174808462e-05,-1.408228770152488e-07,-2.7138903775683385e-20)
sum a = (3.5351873205701233e-06,8.664248611959474e-07,4.295101680704621e-19)
sum e = 0.009993654324862628
sum de = 0.0002461101213201024
Info: CFL hydro = 0.0013976557845838291 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013976557845838291 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.6852e+04 | 12514 | 1 | 1.441e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.260238093249356 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17005610916463348, dt = 0.0013976557845838291 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.9%)
patch tree reduce : 1683.00 ns (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.4%)
LB compute : 283.10 us (93.6%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.655665654466998
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.966622838794741e-05,-1.3947483322061248e-07,-2.667953568703242e-20)
sum a = (3.559966057937971e-06,1.0718671510823032e-06,2.3329867812589394e-19)
sum e = 0.009990231351705514
sum de = 0.00025122852699091297
Info: CFL hydro = 0.00135519447951265 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00135519447951265 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.7334e+04 | 12514 | 1 | 1.433e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.11471254474278 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17145376494921732, dt = 0.00135519447951265 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.4%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 346.90 us (95.4%)
LB move op cnt : 0
LB apply : 2.96 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6614192104842576
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.966138662552574e-05,-1.378786759706861e-07,-2.633073759783793e-20)
sum a = (3.5683469022757663e-06,1.25326792746923e-06,-6.902784547885956e-19)
sum e = 0.009986965493140213
sum de = 0.00025623063208791974
Info: CFL hydro = 0.0013466614693695986 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013466614693695986 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.9704e+04 | 12514 | 1 | 1.570e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.073182991869434 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17280895942872998, dt = 0.0013466614693695986 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.77 us (1.5%)
patch tree reduce : 1753.00 ns (0.5%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.4%)
LB compute : 305.40 us (94.6%)
LB move op cnt : 0
LB apply : 3.03 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (73.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.664535719993608
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9656575591406046e-05,-1.360680316775781e-07,-2.803653113490725e-20)
sum a = (3.5648454288910204e-06,1.419395975250182e-06,3.7180469053594486e-19)
sum e = 0.009983852631842484
sum de = 0.00026140546152534353
Info: CFL hydro = 0.0013563759123602593 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013563759123602593 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2164e+04 | 12514 | 1 | 2.013e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.08264736343572 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17415562089809958, dt = 0.000844379101900411 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (2.0%)
patch tree reduce : 1684.00 ns (0.6%)
gen split merge : 742.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.4%)
LB compute : 272.05 us (93.8%)
LB move op cnt : 0
LB apply : 3.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6686111555058343
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9653567868073938e-05,-1.347576642590102e-07,-2.7101712048593482e-20)
sum a = (3.547912208675189e-06,1.5151897787800876e-06,5.122406520274178e-20)
sum e = 0.009981614691835054
sum de = 0.0002641291456711365
Info: CFL hydro = 0.0013688716503783215 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013688716503783215 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.5439e+04 | 12514 | 1 | 1.465e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.75384485061141 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 112 [SPH][rank=0]
Info: time since start : 52.067547408 (s) [SPH][rank=0]
Info: dump to orztang_00007.vtk [VTK Dump][rank=0]
- took 2.38 ms, bandwidth = 280.97 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 823.15 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 809.00 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000007.npy
Saving metadata to plots/rho_slice_0000007.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 811.09 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000007.npy
Saving metadata to plots/vy_slice_0000007.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005642223 s
Info: compute_slice took 808.20 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000007.npy
Saving metadata to plots/By_slice_0000007.json
---------------- t = 0.175, dt = 0.0013688716503783215 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.18 us (2.5%)
patch tree reduce : 1703.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1021.00 ns (0.3%)
LB compute : 378.41 us (94.0%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (71.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6662138404986417
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9648718380662044e-05,-1.326431207832809e-07,-2.7055473685184412e-20)
sum a = (3.512799257639559e-06,1.6576231783835922e-06,1.3941097759651144e-18)
sum e = 0.009978990064660674
sum de = 0.00027029257869248585
Info: CFL hydro = 0.0013514532400282719 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013514532400282719 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.3894e+04 | 12514 | 1 | 1.694e-01 | 0.0% | 1.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.098977671555733 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17636887165037832, dt = 0.0013514532400282719 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.74 us (1.6%)
patch tree reduce : 1142.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1213.00 ns (0.4%)
LB compute : 287.34 us (94.4%)
LB move op cnt : 0
LB apply : 3.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6669330350007994
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.964399502928546e-05,-1.3030543404543994e-07,-2.4332436153115584e-20)
sum a = (3.429377092943771e-06,1.7261914455874704e-06,-1.1694848117056737e-18)
sum e = 0.009976144409057502
sum de = 0.000275731373638348
Info: CFL hydro = 0.0013549604365369209 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013549604365369209 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3744e+04 | 12514 | 1 | 1.963e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.782599025005652 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1777203248904066, dt = 0.0013549604365369209 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.64 us (1.5%)
patch tree reduce : 1212.00 ns (0.4%)
gen split merge : 561.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 296.15 us (95.0%)
LB move op cnt : 0
LB apply : 2.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6678919610036766
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9639404729579847e-05,-1.2792017952673404e-07,-2.7714872954670255e-20)
sum a = (3.3148685977935514e-06,1.7809521203136706e-06,2.605351649520067e-16)
sum e = 0.009973412314161835
sum de = 0.0002814085433253022
Info: CFL hydro = 0.0013646898850699896 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013646898850699896 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6192e+04 | 12514 | 1 | 1.891e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.80116351799222 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17907528532694353, dt = 0.0013646898850699896 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (1.5%)
patch tree reduce : 952.00 ns (0.3%)
gen split merge : 551.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.4%)
LB compute : 274.05 us (95.0%)
LB move op cnt : 0
LB apply : 2.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6671727665015195
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.963495853917456e-05,-1.2545263290874106e-07,5.05152109880445e-19)
sum a = (3.175208205635957e-06,1.8459497565482785e-06,1.6287783560733653e-15)
sum e = 0.009970776185318905
sum de = 0.0002872676756857632
Info: CFL hydro = 0.0013482146317933047 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013482146317933047 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.6578e+04 | 12514 | 1 | 1.445e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.98955450746808 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18043997521201352, dt = 0.0013482146317933047 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.34 us (1.5%)
patch tree reduce : 771.00 ns (0.3%)
gen split merge : 511.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.4%)
LB compute : 281.38 us (95.2%)
LB move op cnt : 0
LB apply : 2.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6678919610036758
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9630772973574898e-05,-1.2291954562855904e-07,3.634727384859934e-18)
sum a = (3.0397191932579105e-06,1.8541923438517815e-06,2.7560270523604786e-15)
sum e = 0.009968256971642596
sum de = 0.00029310879644260483
Info: CFL hydro = 0.0013245565440626308 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013245565440626308 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5146e+04 | 12514 | 1 | 1.921e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.26700054383962 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18178818984380682, dt = 0.0013245565440626308 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.86 us (1.5%)
patch tree reduce : 1472.00 ns (0.5%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 302.42 us (95.0%)
LB move op cnt : 0
LB apply : 2.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6693303500079923
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.962683802775988e-05,-1.2045800663705512e-07,8.045210870361006e-18)
sum a = (2.891418766967006e-06,1.8410212440194053e-06,3.0027406939709738e-15)
sum e = 0.009965880087973642
sum de = 0.0002989131167150103
Info: CFL hydro = 0.0013464553763883837 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013464553763883837 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.0168e+04 | 12514 | 1 | 1.783e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.73728966962247 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18311274638786945, dt = 0.0013464553763883837 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.5%)
patch tree reduce : 1402.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 317.55 us (94.9%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6719673965159036
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9623043077565757e-05,-1.1798787661900164e-07,1.2251597214592637e-17)
sum a = (2.7091540868884757e-06,1.8524918540927951e-06,3.03537856145708e-15)
sum e = 0.009963612778477172
sum de = 0.00030490714102503544
Info: CFL hydro = 0.0013600289301134493 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013600289301134493 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6675e+04 | 12514 | 1 | 1.877e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.826211091843394 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18445920176425784, dt = 0.0013600289301134493 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.00 us (1.5%)
patch tree reduce : 1222.00 ns (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.4%)
LB compute : 310.21 us (94.8%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.671487933514464
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9619481255260645e-05,-1.1546071177314891e-07,1.6401802942100437e-17)
sum a = (2.5206210529471397e-06,1.8218655972571434e-06,3.148861626057046e-15)
sum e = 0.00996142687995658
sum de = 0.00031083535335563525
Info: CFL hydro = 0.0013202729298974257 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013202729298974257 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.3041e+04 | 12514 | 1 | 1.713e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.577484013195566 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18581923069437128, dt = 0.0013202729298974257 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (1.4%)
patch tree reduce : 1152.00 ns (0.3%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 314.35 us (95.3%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6719673965159028
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9616281552708187e-05,-1.1307617824050288e-07,2.063633839783006e-17)
sum a = (2.300935671695079e-06,1.7904110864722668e-06,3.421519557086188e-15)
sum e = 0.009959362833755965
sum de = 0.00031645698690912897
Info: CFL hydro = 0.001332782922570201 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001332782922570201 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4707e+04 | 12514 | 1 | 1.934e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.57663614375171 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1871395036242687, dt = 0.001332782922570201 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.82 us (1.5%)
patch tree reduce : 1673.00 ns (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1051.00 ns (0.3%)
LB compute : 304.54 us (94.7%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.677001758031005
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.961335992726992e-05,-1.1071071318959654e-07,2.537630339362058e-17)
sum a = (2.1032699586104832e-06,1.7487297783479036e-06,-1.0276163455085155e-15)
sum e = 0.009957434715252952
sum de = 0.000322183375976938
Info: CFL hydro = 0.001353433808233219 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001353433808233219 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2667e+04 | 12514 | 1 | 1.997e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.027431595374303 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1884722865468389, dt = 0.001353433808233219 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.5%)
patch tree reduce : 1373.00 ns (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 326.97 us (95.1%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.678679878536039
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9610645013343603e-05,-1.0837169925402008e-07,2.10204867210326e-17)
sum a = (1.9657511729905265e-06,1.6643928559208327e-06,-1.05016587057585e-15)
sum e = 0.009955596202655164
sum de = 0.00032787345250169693
Info: CFL hydro = 0.0013555207531534051 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013555207531534051 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5204e+04 | 12514 | 1 | 1.919e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.387225231900914 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18982572035507211, dt = 0.0013555207531534051 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.03 us (1.6%)
patch tree reduce : 1243.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.3%)
LB compute : 299.85 us (94.9%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.683714240051143
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.96080734581198e-05,-1.0617265241735488e-07,1.9581767981377677e-17)
sum a = (1.8830075372347746e-06,1.5980234997678866e-06,1.7038868342245885e-14)
sum e = 0.009953849899107182
sum de = 0.0003331339383932974
Info: CFL hydro = 0.0013242145765217054 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013242145765217054 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.6477e+04 | 12514 | 1 | 1.447e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.72191218317905 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1911812411082255, dt = 0.0013242145765217054 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.22 us (1.4%)
patch tree reduce : 1202.00 ns (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 286.87 us (95.2%)
LB move op cnt : 0
LB apply : 2.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.688748601566245
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9605636032449113e-05,-1.0410150892459954e-07,5.440512086428638e-17)
sum a = (1.8421993135560037e-06,1.5398372296982015e-06,-6.147471291360181e-14)
sum e = 0.009952220819391287
sum de = 0.00033773629897986815
Info: CFL hydro = 0.0013313784252494754 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013313784252494754 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7730e+04 | 12514 | 1 | 1.848e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.80161393771343 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19250545568474722, dt = 0.0013313784252494754 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.50 us (1.1%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 601.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.2%)
LB compute : 392.33 us (96.1%)
LB move op cnt : 0
LB apply : 3.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6918651110755953
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9603210387450244e-05,-1.0208992841291416e-07,-7.942553762656549e-17)
sum a = (1.8637251255181568e-06,1.482964607529961e-06,-2.8508368735545356e-13)
sum e = 0.00995072823122567
sum de = 0.00034187161083371704
Info: CFL hydro = 0.001351344743704284 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001351344743704284 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.7517e+04 | 12514 | 1 | 1.614e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.689717104006377 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1938368341099967, dt = 0.001351344743704284 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.82 us (1.3%)
patch tree reduce : 1012.00 ns (0.3%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 346.43 us (95.7%)
LB move op cnt : 0
LB apply : 3.15 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.692824037078471
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9600677522797443e-05,-1.0012379147574973e-07,-6.135259670025265e-16)
sum a = (1.8725647619008082e-06,1.4727450537995586e-06,-5.420268169884893e-13)
sum e = 0.009949338314571322
sum de = 0.00034526728013963215
Info: CFL hydro = 0.0013121233175363697 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013121233175363697 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.6740e+04 | 12514 | 1 | 1.443e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.72022550533 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.195188178853701, dt = 0.0013121233175363697 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.02 us (3.4%)
patch tree reduce : 2.65 us (0.8%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 327.72 us (92.6%)
LB move op cnt : 0
LB apply : 2.92 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6942624260827874
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.959821451421163e-05,-9.819827342058376e-08,-1.4983412044513772e-15)
sum a = (1.892397161749539e-06,1.5382397901410488e-06,-8.950373152871473e-13)
sum e = 0.009948040895455392
sum de = 0.0003477247271328116
Info: CFL hydro = 0.0013397864187826307 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013397864187826307 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.6479e+04 | 12514 | 1 | 1.447e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.64318370336992 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19650030217123735, dt = 0.0013397864187826307 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.31 us (1.2%)
patch tree reduce : 1132.00 ns (0.3%)
gen split merge : 682.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 332.98 us (95.6%)
LB move op cnt : 0
LB apply : 2.75 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6935432315806302
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.959566609491815e-05,-9.609439205517029e-08,-2.9290968269372144e-15)
sum a = (1.9588138654618214e-06,1.6260212237333853e-06,-8.73415932092419e-13)
sum e = 0.009946891097105857
sum de = 0.0003498057115707178
Info: CFL hydro = 0.0013760236168013904 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013760236168013904 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.2603e+04 | 12514 | 1 | 1.724e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.983271409900006 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19784008859001997, dt = 0.0013760236168013904 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.89 us (1.4%)
patch tree reduce : 1022.00 ns (0.3%)
gen split merge : 571.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 681.00 ns (0.2%)
LB compute : 326.79 us (95.7%)
LB move op cnt : 0
LB apply : 2.52 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.695940546587821
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.95929262286797e-05,-9.379814426398863e-08,-4.116453717253784e-15)
sum a = (2.1206885242698043e-06,1.7040006552199235e-06,-3.2721647026052487e-13)
sum e = 0.009945836068199888
sum de = 0.0003511494470214473
Info: CFL hydro = 0.0013692827194063538 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013692827194063538 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4173e+04 | 12514 | 1 | 1.950e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.403140997525423 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19921611220682137, dt = 0.000783887793178617 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.87 us (1.3%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.3%)
LB compute : 367.39 us (95.6%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.697858398593575
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.959115247515553e-05,-9.240874818065732e-08,-3.9971631704998206e-15)
sum a = (2.2351268696434142e-06,1.751991634998412e-06,7.240365586095615e-13)
sum e = 0.0099448023051295
sum de = 0.0003503480862288989
Info: CFL hydro = 0.0013563307672919782 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013563307672919782 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7345e+04 | 12514 | 1 | 2.182e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.931744527645447 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 131 [SPH][rank=0]
Info: time since start : 58.890757794 (s) [SPH][rank=0]
Info: dump to orztang_00008.vtk [VTK Dump][rank=0]
- took 2.30 ms, bandwidth = 290.34 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 811.55 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 813.19 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000008.npy
Saving metadata to plots/rho_slice_0000008.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 818.67 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000008.npy
Saving metadata to plots/vy_slice_0000008.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.003202152 s
Info: compute_slice took 832.75 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000008.npy
Saving metadata to plots/By_slice_0000008.json
---------------- t = 0.19999999999999998, dt = 0.0013563307672919782 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.73 us (2.2%)
patch tree reduce : 1924.00 ns (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 409.61 us (94.6%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (70.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7004954451014855
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9588076050402544e-05,-9.001365825043559e-08,-2.6030978590035097e-15)
sum a = (2.4384460974957244e-06,1.8392997819858988e-06,4.2873239836548834e-13)
sum e = 0.009944349806272972
sum de = 0.0003512443098612117
Info: CFL hydro = 0.0013288005370191988 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013288005370191988 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2267e+04 | 12514 | 1 | 1.521e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.09961398051357 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20135633076729195, dt = 0.0013288005370191988 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (1.3%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 368.79 us (95.7%)
LB move op cnt : 0
LB apply : 3.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.703132491609397
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9584697957856367e-05,-8.751038634962986e-08,-2.2336630979421198e-15)
sum a = (2.663803354543424e-06,1.944270360289763e-06,1.8760602042960353e-12)
sum e = 0.009943564193840928
sum de = 0.0003499255219946315
Info: CFL hydro = 0.0013568089413379808 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013568089413379808 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2058e+04 | 12514 | 1 | 2.016e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.722813644478038 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20268513130431115, dt = 0.0013568089413379808 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.7%)
patch tree reduce : 1332.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 339.99 us (94.6%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.704091417612275
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9580933958224908e-05,-8.480264045963185e-08,1.2733973755376064e-15)
sum a = (2.856289131897406e-06,2.010476385448538e-06,2.0333173115861667e-12)
sum e = 0.009942927413931085
sum de = 0.000348099505137293
Info: CFL hydro = 0.0013640406201079988 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013640406201079988 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2182e+04 | 12514 | 1 | 1.523e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.077739650272214 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20404194024564914, dt = 0.0013640406201079988 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.99 us (1.5%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 315.43 us (95.1%)
LB move op cnt : 0
LB apply : 3.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (66.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.707207927121624
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.957690728061433e-05,-8.201535454128403e-08,4.1536085147177546e-15)
sum a = (3.035964329938181e-06,2.0749309450516387e-06,2.2645675510449195e-12)
sum e = 0.009942385304647416
sum de = 0.0003458882247392628
Info: CFL hydro = 0.0013450271018836857 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013450271018836857 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.5122e+04 | 12514 | 1 | 1.470e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.40212975217802 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20540598086575715, dt = 0.0013450271018836857 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (1.3%)
patch tree reduce : 1183.00 ns (0.4%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 303.82 us (95.4%)
LB move op cnt : 0
LB apply : 3.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.710084705130254
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9572701284175863e-05,-7.918055686670876e-08,7.357230640653614e-15)
sum a = (3.224106707205583e-06,2.115571174646014e-06,2.387986932934844e-12)
sum e = 0.00994194022912702
sum de = 0.00034384773825635437
Info: CFL hydro = 0.0013680258763999252 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013680258763999252 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.5950e+04 | 12514 | 1 | 1.456e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.256995575076715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20675100796764084, dt = 0.0013680258763999252 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (1.4%)
patch tree reduce : 932.00 ns (0.3%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 321.58 us (95.7%)
LB move op cnt : 0
LB apply : 3.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7105641681316928
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9568164094474028e-05,-7.625906965192975e-08,1.0707059746259485e-14)
sum a = (3.3701023742349645e-06,2.12077722495798e-06,5.9251571789180364e-12)
sum e = 0.009941647704045705
sum de = 0.00034231779319709733
Info: CFL hydro = 0.001362792911381044 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001362792911381044 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.5434e+04 | 12514 | 1 | 1.465e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.6226148540994 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20811903384404076, dt = 0.001362792911381044 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.55 us (1.5%)
patch tree reduce : 1723.00 ns (0.6%)
gen split merge : 761.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.4%)
LB compute : 287.24 us (94.5%)
LB move op cnt : 0
LB apply : 3.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7120025571360076
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.956347147992264e-05,-7.336532847660198e-08,2.1201292127003893e-14)
sum a = (3.4583204502936386e-06,2.127423099155754e-06,6.481422988294918e-12)
sum e = 0.009941448105649415
sum de = 0.00034093706542885627
Info: CFL hydro = 0.0013655961857509413 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013655961857509413 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8499e+04 | 12514 | 1 | 1.827e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.854885985452544 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20948182675542182, dt = 0.0013655961857509413 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.45 us (1.3%)
patch tree reduce : 912.00 ns (0.3%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 762.00 ns (0.2%)
LB compute : 324.12 us (95.9%)
LB move op cnt : 0
LB apply : 2.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7117628256352884
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9558688699222296e-05,-7.045559913246692e-08,3.0431336220297544e-14)
sum a = (3.5289737603142917e-06,2.1362223564773176e-06,7.673172045587542e-12)
sum e = 0.009941375563089739
sum de = 0.00033951034374742756
Info: CFL hydro = 0.0013540762035323215 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013540762035323215 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8575e+04 | 12514 | 1 | 1.825e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.939823833937147 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21084742294117276, dt = 0.0013540762035323215 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (1.1%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 365.23 us (96.0%)
LB move op cnt : 0
LB apply : 3.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (71.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7141601406424805
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.95538619578852e-05,-6.755698315749484e-08,4.16351198605754e-14)
sum a = (3.551142670364215e-06,2.1482276164266474e-06,1.102412150250298e-11)
sum e = 0.009941408134537696
sum de = 0.0003379788266704646
Info: CFL hydro = 0.0013824154346610141 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013824154346610141 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.0217e+04 | 12514 | 1 | 1.782e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.35198536450584 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21220149914470507, dt = 0.0013824154346610141 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.42 us (1.3%)
patch tree reduce : 1103.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 711.00 ns (0.2%)
LB compute : 327.30 us (95.6%)
LB move op cnt : 0
LB apply : 3.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.716557455649672
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9548937794250146e-05,-6.457911212440506e-08,5.91437559516403e-14)
sum a = (3.5322471530655566e-06,2.1510711925941078e-06,1.3278192655032953e-11)
sum e = 0.009941603322645053
sum de = 0.0003365185113746622
Info: CFL hydro = 0.001338789544152428 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001338789544152428 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.9843e+04 | 12514 | 1 | 1.792e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.775864877670532 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2135839145793661, dt = 0.001338789544152428 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.78 us (1.3%)
patch tree reduce : 1072.00 ns (0.3%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 360.92 us (95.3%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.719673965159022
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9544221919421703e-05,-6.169731500109442e-08,7.847849275598044e-14)
sum a = (3.5045062231991263e-06,2.1667111651621023e-06,1.5746195131333225e-11)
sum e = 0.009941838666574271
sum de = 0.0003350095761525152
Info: CFL hydro = 0.0013606115764408936 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013606115764408936 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.2395e+04 | 12514 | 1 | 1.729e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.8823467347768 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21492270412351852, dt = 0.0013606115764408936 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.93 us (1.4%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 338.94 us (95.4%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.720393159661179
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.953947221731822e-05,-5.873879339179292e-08,1.0155501624355771e-13)
sum a = (3.4748650439751512e-06,2.2098846860482618e-06,1.8331886140380298e-11)
sum e = 0.009942259277990972
sum de = 0.00033404379391799473
Info: CFL hydro = 0.0013590812907370783 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013590812907370783 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7908e+04 | 12514 | 1 | 2.161e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.666362458108537 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21628331569995943, dt = 0.0013590812907370783 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (1.2%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 366.07 us (95.9%)
LB move op cnt : 0
LB apply : 3.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7218315486654947
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.953476975831491e-05,-5.570600926380768e-08,1.2822860014591715e-13)
sum a = (3.443400605354435e-06,2.2898745219584636e-06,1.4447599508174396e-11)
sum e = 0.009942773305006009
sum de = 0.0003336072099651246
Info: CFL hydro = 0.001353784432185693 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001353784432185693 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7714e+04 | 12514 | 1 | 1.848e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.474465771205434 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2176423969906965, dt = 0.001353784432185693 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.64 us (1.5%)
patch tree reduce : 1022.00 ns (0.3%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.3%)
LB compute : 290.86 us (95.1%)
LB move op cnt : 0
LB apply : 2.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.728064567684194
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9530129517546456e-05,-5.25516564396844e-08,1.4514800471032292e-13)
sum a = (3.3994560643265033e-06,2.4156523653189785e-06,7.746911401347278e-13)
sum e = 0.009943395108727727
sum de = 0.0003336316690291359
Info: CFL hydro = 0.0013631278288311443 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013631278288311443 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.4617e+04 | 12514 | 1 | 1.677e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.06004666523797 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2189961814228822, dt = 0.0013631278288311443 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.7%)
patch tree reduce : 1102.00 ns (0.4%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1333.00 ns (0.4%)
LB compute : 291.34 us (94.6%)
LB move op cnt : 0
LB apply : 2.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.729023493687071
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9525525370100133e-05,-4.917367543258645e-08,1.3694892261885726e-13)
sum a = (3.2850800260598614e-06,2.5941138540021836e-06,7.746142031697433e-12)
sum e = 0.00994414841667958
sum de = 0.0003336932844656141
Info: CFL hydro = 0.001381791533543868 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001381791533543868 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6289e+04 | 12514 | 1 | 1.888e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.99484723201852 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22035930925171335, dt = 0.001381791533543868 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (1.5%)
patch tree reduce : 1173.00 ns (0.4%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.4%)
LB compute : 265.20 us (94.6%)
LB move op cnt : 0
LB apply : 2.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7309413456928238
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9521064028913402e-05,-4.5467517961589914e-08,1.524039653647728e-13)
sum a = (3.1290377563399395e-06,2.7962618482471205e-06,1.3815630650996005e-11)
sum e = 0.009945034762113553
sum de = 0.0003335441896593186
Info: CFL hydro = 0.001342323565136173 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001342323565136173 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3552e+04 | 12514 | 1 | 1.498e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.212645503144934 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22174110078525722, dt = 0.001342323565136173 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.81 us (1.4%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 323.63 us (95.2%)
LB move op cnt : 0
LB apply : 3.17 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7316605401949823
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9516971656740467e-05,-4.157436659453432e-08,1.751423960285618e-13)
sum a = (2.918934892494803e-06,2.993615297632939e-06,5.0682435818446755e-12)
sum e = 0.009945945553621485
sum de = 0.00033311961792179895
Info: CFL hydro = 0.0013502790103682534 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013502790103682534 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8070e+04 | 12514 | 1 | 2.155e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.424158317242153 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22308342435039338, dt = 0.0013502790103682534 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.50 us (1.2%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 365.14 us (95.9%)
LB move op cnt : 0
LB apply : 3.06 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7314208086942617
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.951317129323509e-05,-3.7399694600188375e-08,1.7611502707708986e-13)
sum a = (2.6700006086497005e-06,3.1852944869230503e-06,2.0096788989781566e-12)
sum e = 0.009947011316759917
sum de = 0.0003327734016338018
Info: CFL hydro = 0.0012895568944412384 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012895568944412384 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8469e+04 | 12514 | 1 | 1.828e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.596634347138615 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22443370336076163, dt = 0.0005662966392383506 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.75 us (1.6%)
patch tree reduce : 1122.00 ns (0.4%)
gen split merge : 612.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 274.00 us (94.6%)
LB move op cnt : 0
LB apply : 3.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (66.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7326194661978587
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.951182734623293e-05,-3.546646284481607e-08,1.7518814377177448e-13)
sum a = (2.5816161184732286e-06,3.261320779387078e-06,4.110257436156168e-12)
sum e = 0.009946941435752614
sum de = 0.0003308158704300807
Info: CFL hydro = 0.0012994274586434042 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012994274586434042 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.6877e+04 | 12514 | 1 | 1.440e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.153238809782266 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 150 [SPH][rank=0]
Info: time since start : 65.651566562 (s) [SPH][rank=0]
Info: dump to orztang_00009.vtk [VTK Dump][rank=0]
- took 2.21 ms, bandwidth = 302.25 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 835.85 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 824.05 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000009.npy
Saving metadata to plots/rho_slice_0000009.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 834.12 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000009.npy
Saving metadata to plots/vy_slice_0000009.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005744059 s
Info: compute_slice took 839.50 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000009.npy
Saving metadata to plots/By_slice_0000009.json
---------------- t = 0.22499999999999998, dt = 0.0012994274586434042 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.33 us (2.5%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 392.18 us (94.3%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7333386607000163
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.950849774928075e-05,-3.120708635533245e-08,1.8112390031739882e-13)
sum a = (2.380677163460402e-06,3.452133075269402e-06,7.486497773330383e-13)
sum e = 0.009948582356571855
sum de = 0.0003323196402051367
Info: CFL hydro = 0.0013172798704699016 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013172798704699016 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2817e+04 | 12514 | 1 | 1.511e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.95851414288026 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22629942745864337, dt = 0.0013172798704699016 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.78 us (1.2%)
patch tree reduce : 1363.00 ns (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 366.11 us (95.6%)
LB move op cnt : 0
LB apply : 3.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7388524852165577
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9505492283972884e-05,-2.653568757692368e-08,1.7992599889697009e-13)
sum a = (2.2200683748352155e-06,3.655558008618726e-06,-2.531240647408447e-11)
sum e = 0.009949865745876264
sum de = 0.0003320225111534554
Info: CFL hydro = 0.001236524381019018 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001236524381019018 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.5316e+04 | 12514 | 1 | 1.467e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.330748125393946 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22761670732911327, dt = 0.001236524381019018 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.5%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 331.67 us (95.2%)
LB move op cnt : 0
LB apply : 2.94 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7426881892280646
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9502852898661924e-05,-2.188151718781964e-08,1.3146173880008414e-13)
sum a = (2.150121413984585e-06,3.8169125587329984e-06,-4.264793447345705e-11)
sum e = 0.009951057164540398
sum de = 0.00033170852511250865
Info: CFL hydro = 0.0012433271689877646 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012433271689877646 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6795e+04 | 12514 | 1 | 1.874e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.760257440032586 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22885323171013228, dt = 0.0012433271689877646 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.95 us (1.3%)
patch tree reduce : 1363.00 ns (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 351.45 us (95.3%)
LB move op cnt : 0
LB apply : 3.27 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7424484577273454
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9500222839852663e-05,-1.7036086684300434e-08,6.77185016694688e-14)
sum a = (2.138919305098402e-06,3.976898385113838e-06,-5.92078468441777e-11)
sum e = 0.009952411958439357
sum de = 0.00033168380056399085
Info: CFL hydro = 0.0012418174034734728 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012418174034734728 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2098e+04 | 12514 | 1 | 2.015e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.211199424391392 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23009655887912003, dt = 0.0012418174034734728 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.7%)
patch tree reduce : 1353.00 ns (0.4%)
gen split merge : 1112.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.4%)
LB compute : 294.65 us (94.2%)
LB move op cnt : 0
LB apply : 3.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (61.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7479622822438867
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9497573656578288e-05,-1.199804769536142e-08,-1.6101527553301692e-14)
sum a = (2.173810549222172e-06,4.115587386684979e-06,-8.216132456982197e-11)
sum e = 0.00995383343162835
sum de = 0.0003314238826896506
Info: CFL hydro = 0.0012410001708198866 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012410001708198866 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2918e+04 | 12514 | 1 | 1.509e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.62205149103284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23133837628259352, dt = 0.0012410001708198866 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.77 us (1.4%)
patch tree reduce : 1452.00 ns (0.4%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 328.63 us (95.0%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7501198657503587
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9494854293038166e-05,-6.804489837385645e-09,-1.3231575927066577e-13)
sum a = (2.2186966532290784e-06,4.205371091880629e-06,-1.0311104077073684e-10)
sum e = 0.009955326784085892
sum de = 0.00033106398724192936
Info: CFL hydro = 0.0012319854717199614 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012319854717199614 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4577e+04 | 12514 | 1 | 1.480e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.19465421517133 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2325793764534134, dt = 0.0012319854717199614 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.74 us (1.4%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 326.53 us (95.0%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7515582547546744
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.949209303916389e-05,-1.5678229527318882e-09,-2.723463640832316e-13)
sum a = (2.2164650974227607e-06,4.264422660079831e-06,-9.764725675501853e-11)
sum e = 0.009956870859648175
sum de = 0.00033059809057012186
Info: CFL hydro = 0.0012067968830693577 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012067968830693577 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2852e+04 | 12514 | 1 | 1.991e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.275794230388055 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23381136192513335, dt = 0.0012067968830693577 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.5%)
patch tree reduce : 1242.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1233.00 ns (0.4%)
LB compute : 332.33 us (95.0%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7549144957647442
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.948941959061491e-05,3.6148443582285876e-09,-3.8682111794246695e-13)
sum a = (2.1472235964702032e-06,4.27359465333659e-06,-1.0731033713821397e-10)
sum e = 0.009958433202634235
sum de = 0.0003300535374022099
Info: CFL hydro = 0.001206788443743999 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001206788443743999 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4293e+04 | 12514 | 1 | 1.485e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.263773792115412 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2350181588082027, dt = 0.001206788443743999 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.6%)
patch tree reduce : 1383.00 ns (0.4%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.4%)
LB compute : 315.56 us (94.4%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (71.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7568323477704966
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9486870126206492e-05,8.777703366302577e-09,-5.221526803618704e-13)
sum a = (2.0816547501981243e-06,4.2281013885194774e-06,-1.1767139919137419e-10)
sum e = 0.00996007864870882
sum de = 0.0003296828950210489
Info: CFL hydro = 0.0012147511125464294 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012147511125464294 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4351e+04 | 12514 | 1 | 1.484e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.283916346628452 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2362249472519467, dt = 0.0012147511125464294 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.7%)
patch tree reduce : 1874.00 ns (0.5%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 322.95 us (94.5%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (72.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.759469394278408
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9484380997645683e-05,1.3886343858579864e-08,-6.71345948404485e-13)
sum a = (2.0346776719184295e-06,4.160463489343447e-06,-1.289944444913448e-10)
sum e = 0.009961801978913753
sum de = 0.0003295508873365948
Info: CFL hydro = 0.0012011719163728069 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012011719163728069 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3029e+04 | 12514 | 1 | 1.507e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.014888511314556 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23743969836449313, dt = 0.0012011719163728069 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.7%)
patch tree reduce : 1753.00 ns (0.5%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 321.29 us (94.4%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.760668051782003
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9481965532696613e-05,1.8842694154213883e-08,-8.331677935569283e-13)
sum a = (2.0196246028278534e-06,4.1017455655088805e-06,-1.2210523218257915e-10)
sum e = 0.009963544453012438
sum de = 0.00032952129657289877
Info: CFL hydro = 0.0011982444056763285 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0011982444056763285 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1637e+04 | 12514 | 1 | 1.533e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.20957943435079 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23864087028086595, dt = 0.0011982444056763285 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.00 us (1.5%)
patch tree reduce : 1252.00 ns (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1393.00 ns (0.4%)
LB compute : 327.06 us (95.0%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7630653667891956
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9479554569476398e-05,2.3722322671034184e-08,-9.753421409694847e-13)
sum a = (2.0782421140332265e-06,4.055251437198826e-06,-1.1951976046184938e-10)
sum e = 0.009965345842641787
sum de = 0.0003296720041578856
Info: CFL hydro = 0.0012031812497108876 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012031812497108876 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8263e+04 | 12514 | 1 | 2.148e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.083831592418168 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2398391146865423, dt = 0.0012031812497108876 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.5%)
patch tree reduce : 1673.00 ns (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 344.01 us (94.9%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7616269777848816
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9477018948480043e-05,2.8573669498789978e-08,-1.1175970622609827e-12)
sum a = (2.1638410196935033e-06,4.001279142379325e-06,-1.0877794584254745e-10)
sum e = 0.009967213815447578
sum de = 0.0003299634359641779
Info: CFL hydro = 0.001216432450631894 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001216432450631894 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.4207e+04 | 12514 | 1 | 1.686e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.685152654078898 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24104229593625318, dt = 0.001216432450631894 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.7%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.4%)
LB compute : 309.20 us (94.6%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7661818762985457
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9474335286546628e-05,3.340848606494131e-08,-1.243455910654835e-12)
sum a = (2.275239069182505e-06,3.926475519003007e-06,-1.0369796681586555e-10)
sum e = 0.009969160722201035
sum de = 0.0003302708695795589
Info: CFL hydro = 0.0012205966359656974 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012205966359656974 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2979e+04 | 12514 | 1 | 1.508e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.037851438500276 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24225872838688506, dt = 0.0012205966359656974 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.78 us (1.6%)
patch tree reduce : 1572.00 ns (0.5%)
gen split merge : 1102.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 282.85 us (94.2%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (71.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.767620265302861
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9471490383291595e-05,3.815563209728807e-08,-1.3669395746193125e-12)
sum a = (2.400568637184628e-06,3.830009796210144e-06,-9.939372968724907e-11)
sum e = 0.009971156020584212
sum de = 0.00033040723710961716
Info: CFL hydro = 0.0011921376678997492 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0011921376678997492 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.2377e+04 | 12514 | 1 | 1.729e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.414258655956182 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24347932502285075, dt = 0.0011921376678997492 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.5%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 340.83 us (95.1%)
LB move op cnt : 0
LB apply : 3.30 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (71.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.771455969314367
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.946855208657011e-05,4.2662658175255345e-08,-1.4828037147297684e-12)
sum a = (2.500775897953635e-06,3.698030684833679e-06,-8.252394606279984e-11)
sum e = 0.009973122310498062
sum de = 0.00033035095003102394
Info: CFL hydro = 0.0011903865215638072 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0011903865215638072 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4240e+04 | 12514 | 1 | 1.486e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.89007184423771 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2446714626907505, dt = 0.0011903865215638072 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.6%)
patch tree reduce : 1282.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 315.54 us (94.6%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (72.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7714559693143674
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9465515466222736e-05,4.6986075423782696e-08,-1.5709835556523938e-12)
sum a = (2.5208787376287713e-06,3.500509613045547e-06,-8.582105998861344e-11)
sum e = 0.009975151617625523
sum de = 0.0003303505140831566
Info: CFL hydro = 0.001196420005837873 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001196420005837873 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.9420e+04 | 12514 | 1 | 1.803e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.77279564771639 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2458618492123143, dt = 0.001196420005837873 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.7%)
patch tree reduce : 1713.00 ns (0.6%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 294.05 us (94.5%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7714559693143674
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.946248747139395e-05,5.1056591944955743e-08,-1.6756240088350624e-12)
sum a = (2.482574591519284e-06,3.249577352277702e-06,-7.571801144131123e-11)
sum e = 0.009977239953015754
sum de = 0.0003303024386638547
Info: CFL hydro = 0.0011367618353850136 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0011367618353850136 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4688e+04 | 12514 | 1 | 1.478e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.148167869863048 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24705826921815216, dt = 0.0011367618353850136 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.7%)
patch tree reduce : 1343.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.4%)
LB compute : 301.26 us (94.5%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (72.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7714559693143674
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.945968828926819e-05,5.460047727155963e-08,-1.7556536098219421e-12)
sum a = (2.447602620371327e-06,2.9866256501316564e-06,-5.4476663729633356e-11)
sum e = 0.009979206373058797
sum de = 0.00032981447231762907
Info: CFL hydro = 0.001156184061573556 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001156184061573556 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4284e+04 | 12514 | 1 | 1.485e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.56250152853031 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24819503105353719, dt = 0.001156184061573556 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.6%)
patch tree reduce : 1152.00 ns (0.3%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 313.12 us (91.5%)
LB move op cnt : 0
LB apply : 7.97 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7733738213201202
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9456878287530494e-05,5.7904109516216506e-08,-1.8065654835502666e-12)
sum a = (2.3589258056054133e-06,2.7096845238969075e-06,-3.997802156892877e-11)
sum e = 0.009981307308699661
sum de = 0.0003294759548258185
Info: CFL hydro = 0.0011832216732717102 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0011832216732717102 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.4302e+04 | 12514 | 1 | 1.684e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.713481804634636 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24935121511511074, dt = 0.0006487848848892308 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (1.5%)
patch tree reduce : 1723.00 ns (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 311.77 us (94.6%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7752916733258735
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9455399115483334e-05,5.9502014420189325e-08,-1.8241210700505332e-12)
sum a = (2.268352670848195e-06,2.549264301982664e-06,-3.5332329065789683e-11)
sum e = 0.009982164753375622
sum de = 0.0003276973878108629
Info: CFL hydro = 0.0012041665457089125 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012041665457089125 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4099e+04 | 12514 | 1 | 1.488e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.6962939477554 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 171 [SPH][rank=0]
Info: time since start : 72.616284463 (s) [SPH][rank=0]
Info: dump to orztang_00010.vtk [VTK Dump][rank=0]
- took 2.47 ms, bandwidth = 271.22 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 837.87 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 832.42 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000010.npy
Saving metadata to plots/rho_slice_0000010.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 837.58 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000010.npy
Saving metadata to plots/vy_slice_0000010.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005496549000000001 s
Info: compute_slice took 837.38 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000010.npy
Saving metadata to plots/By_slice_0000010.json
---------------- t = 0.24999999999999997, dt = 0.0012041665457089125 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.48 us (2.3%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 422.84 us (94.6%)
LB move op cnt : 0
LB apply : 4.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.777928719833785
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9452697022323526e-05,6.25197141011336e-08,-1.865160051203676e-12)
sum a = (2.0413550425424e-06,2.276888792652223e-06,-3.9557495989121514e-11)
sum e = 0.009984755147100396
sum de = 0.0003291334234882293
Info: CFL hydro = 0.001207059671236539 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001207059671236539 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7657e+04 | 12514 | 1 | 1.850e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.437034632501828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2512041665457089, dt = 0.001207059671236539 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.60 us (1.4%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1071.00 ns (0.3%)
LB compute : 322.26 us (95.0%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7796068403388206
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9450369656451823e-05,6.510406200070505e-08,-1.915452211437673e-12)
sum a = (1.74109793951891e-06,2.0306407397688596e-06,-6.142544157578494e-11)
sum e = 0.009987029724446667
sum de = 0.0003284297951257395
Info: CFL hydro = 0.001172304433640577 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001172304433640577 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7104e+04 | 12514 | 1 | 1.865e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.301579519597325 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2524112262169454, dt = 0.001172304433640577 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.36 us (1.4%)
patch tree reduce : 1513.00 ns (0.5%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1303.00 ns (0.4%)
LB compute : 286.88 us (95.0%)
LB move op cnt : 0
LB apply : 2.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7822438868467305
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9448509773738116e-05,6.733597309617776e-08,-2.0006594866549253e-12)
sum a = (1.4129130182724664e-06,1.7979535296473043e-06,-3.824141417904021e-11)
sum e = 0.00998923397455915
sum de = 0.00032778703096592867
Info: CFL hydro = 0.0011816914869368562 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0011816914869368562 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5772e+04 | 12514 | 1 | 1.903e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.181419477581148 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.253583530650586, dt = 0.0011816914869368562 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.99 us (1.7%)
patch tree reduce : 1292.00 ns (0.4%)
gen split merge : 712.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 281.74 us (94.6%)
LB move op cnt : 0
LB apply : 2.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.783202812849608
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9447032512771747e-05,6.932420935222122e-08,-2.032259671169555e-12)
sum a = (1.1557453065697269e-06,1.5680734518064105e-06,-4.6190475109520685e-11)
sum e = 0.009991522913089697
sum de = 0.0003273734462970374
Info: CFL hydro = 0.0011412192874830696 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0011412192874830696 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5240e+04 | 12514 | 1 | 1.918e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.178193343158974 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.25476522213752284, dt = 0.0011412192874830696 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (1.4%)
patch tree reduce : 1513.00 ns (0.5%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.3%)
LB compute : 285.60 us (94.7%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7846412018539217
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.944586550038423e-05,7.097790135396801e-08,-2.089669801151766e-12)
sum a = (1.0638913642573715e-06,1.32887280915273e-06,-2.905395021541816e-11)
sum e = 0.00999371955975892
sum de = 0.0003268773853466058
Info: CFL hydro = 0.0011559325312204929 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0011559325312204929 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4274e+04 | 12514 | 1 | 1.485e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.667336229097838 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2559064414250059, dt = 0.0011559325312204929 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (1.4%)
patch tree reduce : 1103.00 ns (0.4%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 276.36 us (95.1%)
LB move op cnt : 0
LB apply : 2.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7860795908582383
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.944468812649204e-05,7.237749847024009e-08,-2.1134759409115954e-12)
sum a = (1.1121229875675817e-06,1.1170281476729207e-06,-1.867393237798145e-11)
sum e = 0.009996015343722863
sum de = 0.0003266943304433765
Info: CFL hydro = 0.0011781891212016549 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0011781891212016549 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4145e+04 | 12514 | 1 | 1.487e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.981207067099216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2570623739562264, dt = 0.0011781891212016549 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.6%)
patch tree reduce : 1162.00 ns (0.4%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.3%)
LB compute : 297.24 us (95.0%)
LB move op cnt : 0
LB apply : 2.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7906344893719037
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9443349959035306e-05,7.357112981423796e-08,-2.129478064467805e-12)
sum a = (1.243363002863249e-06,9.511101830791301e-07,-3.2150531045052854e-11)
sum e = 0.009998387259296504
sum de = 0.0003264624490951488
Info: CFL hydro = 0.0011740380124894592 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0011740380124894592 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4081e+04 | 12514 | 1 | 1.488e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.498150597230325 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.25824056307742804, dt = 0.0011740380124894592 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.11 us (1.2%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 322.65 us (95.5%)
LB move op cnt : 0
LB apply : 3.11 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.792552341377656
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9441812890827688e-05,7.459002795230187e-08,-2.175163001106769e-12)
sum a = (1.3623256322665582e-06,8.896119598015686e-07,-6.300646188269649e-11)
sum e = 0.010000752953736756
sum de = 0.0003259437902737985
Info: CFL hydro = 0.0011152185244646276 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0011152185244646276 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7026e+04 | 12514 | 1 | 2.194e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.26028353105838 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2594146010899175, dt = 0.0011152185244646276 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.70 us (1.3%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 662.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 341.06 us (95.5%)
LB move op cnt : 0
LB apply : 3.27 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7939907303819718
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.944022376672175e-05,7.554603906368582e-08,-2.263541992386997e-12)
sum a = (1.4443480548570226e-06,9.052042022139498e-07,-9.524163944119081e-11)
sum e = 0.01000297622034931
sum de = 0.0003251389403121238
Info: CFL hydro = 0.0011221494856989119 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0011221494856989119 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.7202e+04 | 12514 | 1 | 1.621e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.768102950814864 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2605298196143821, dt = 0.0011221494856989119 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.5%)
patch tree reduce : 1282.00 ns (0.4%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 296.09 us (94.9%)
LB move op cnt : 0
LB apply : 3.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7966277768898826
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9438557255831912e-05,7.657050787264854e-08,-2.3883919827634067e-12)
sum a = (1.4673139632959468e-06,9.802651427215793e-07,-1.2092690101878765e-10)
sum e = 0.010005285266207573
sum de = 0.00032460292148795555
Info: CFL hydro = 0.0011351866001136355 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0011351866001136355 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.5686e+04 | 12514 | 1 | 1.653e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.43287440370446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.261651969100081, dt = 0.0011351866001136355 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.8%)
patch tree reduce : 1433.00 ns (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.4%)
LB compute : 297.31 us (94.4%)
LB move op cnt : 0
LB apply : 2.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7995045548985127
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.943687869509166e-05,7.772540652483614e-08,-2.5400779317768725e-12)
sum a = (1.3556029284435706e-06,1.1175934695757095e-06,-1.3583835474180426e-10)
sum e = 0.010007645248533422
sum de = 0.0003240764181158546
Info: CFL hydro = 0.001155904674145445 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001155904674145445 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3838e+04 | 12514 | 1 | 1.493e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.378898022986892 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2627871557001946, dt = 0.001155904674145445 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.8%)
patch tree reduce : 1363.00 ns (0.4%)
gen split merge : 1193.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.4%)
LB compute : 293.80 us (94.0%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7990250918970756
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9435375153765386e-05,7.90951846786142e-08,-2.70555776198581e-12)
sum a = (1.0988291613080568e-06,1.2627226124417928e-06,-1.3928572117980246e-10)
sum e = 0.010010072706409977
sum de = 0.0003234466272321863
Info: CFL hydro = 0.0011852945358426117 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0011852945358426117 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3174e+04 | 12514 | 1 | 1.981e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.00727544388244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.26394306037434007, dt = 0.0011852945358426117 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.6%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.4%)
LB compute : 326.31 us (94.7%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7968675083906027
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.943422112056336e-05,8.067576061869415e-08,-2.872644779942817e-12)
sum a = (7.18545219637285e-07,1.370267881147228e-06,-1.4360554039581703e-10)
sum e = 0.010012586956037905
sum de = 0.00032276513168682483
Info: CFL hydro = 0.0012251388469018654 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012251388469018654 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3976e+04 | 12514 | 1 | 1.956e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.81457148926328 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.26512835491018266, dt = 0.0012251388469018654 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.6%)
patch tree reduce : 1253.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.3%)
LB compute : 310.20 us (94.5%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (71.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7995045548985122
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9433566177140468e-05,8.24182654404768e-08,-3.051141635257782e-12)
sum a = (3.735997707318495e-07,1.3625581220212601e-06,-3.4518474165618677e-10)
sum e = 0.010015212474577971
sum de = 0.00032215334712597476
Info: CFL hydro = 0.001142714031282996 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001142714031282996 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2481e+04 | 12514 | 1 | 2.003e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.0211414690987 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2663534937570845, dt = 0.001142714031282996 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (1.6%)
patch tree reduce : 1493.00 ns (0.5%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.4%)
LB compute : 273.83 us (94.1%)
LB move op cnt : 0
LB apply : 3.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.799264823397795
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9433350562475392e-05,8.397055696208285e-08,-3.569070337916573e-12)
sum a = (2.0679035773911112e-07,1.2092335181088696e-06,-3.737882528360317e-10)
sum e = 0.01001757694367578
sum de = 0.0003211481501765396
Info: CFL hydro = 0.001164606915285857 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001164606915285857 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1265e+04 | 12514 | 1 | 1.540e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.714409156186726 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2674962077883675, dt = 0.001164606915285857 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.64 us (1.6%)
patch tree reduce : 1283.00 ns (0.4%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 282.60 us (94.7%)
LB move op cnt : 0
LB apply : 3.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (67.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.801182675403548
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.943320504072304e-05,8.529123559108632e-08,-4.020729538779831e-12)
sum a = (1.939267133131186e-07,9.108081088312971e-07,-3.8717848878544853e-10)
sum e = 0.01002008609013088
sum de = 0.00032075802035991843
Info: CFL hydro = 0.0011643745800086669 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0011643745800086669 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8845e+04 | 12514 | 1 | 2.127e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.71479156836568 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2686608147036534, dt = 0.0011643745800086669 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.5%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 327.99 us (95.1%)
LB move op cnt : 0
LB apply : 3.24 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.8026210644078633
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.943298672793235e-05,8.617798325267674e-08,-4.479347509813421e-12)
sum a = (4.395778251548045e-07,4.895441396136556e-07,-4.183961552403075e-10)
sum e = 0.010022590866716438
sum de = 0.00032038114982872056
Info: CFL hydro = 0.0011909612581130031 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0011909612581130031 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.3162e+04 | 12514 | 1 | 1.710e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.506651064124572 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.26982518928366206, dt = 0.0011909612581130031 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (1.2%)
patch tree reduce : 1142.00 ns (0.3%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 341.88 us (95.4%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.805737573917212
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9432320192817504e-05,8.651575682846705e-08,-4.995815649814371e-12)
sum a = (9.533324625056639e-07,-1.9087180819315027e-08,-3.9023118222931207e-10)
sum e = 0.010025186762350985
sum de = 0.00032015287925488194
Info: CFL hydro = 0.0012267087455853712 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012267087455853712 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1026e+04 | 12514 | 1 | 2.051e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.908312716483184 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2710161505417751, dt = 0.0012267087455853712 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.7%)
patch tree reduce : 1823.00 ns (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 340.72 us (94.8%)
LB move op cnt : 0
LB apply : 3.19 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (72.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.805737573917212
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.943084480061375e-05,8.618946231848915e-08,-5.457743958171902e-12)
sum a = (1.5239648410919969e-06,-5.886275411994578e-07,-3.4357553997429976e-10)
sum e = 0.010027880294396715
sum de = 0.0003199216445094997
Info: CFL hydro = 0.001217953914651436 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001217953914651436 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1005e+04 | 12514 | 1 | 2.051e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.528483466681298 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2722428592873605, dt = 0.001217953914651436 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (1.3%)
patch tree reduce : 1343.00 ns (0.4%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 331.14 us (95.4%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (72.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.805258110915775
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9428638681805045e-05,8.51232110295253e-08,-5.847586689881459e-12)
sum a = (2.0775396288768216e-06,-1.1426879247635656e-06,-2.333737976558182e-10)
sum e = 0.010030528617355837
sum de = 0.0003195930459422628
Info: CFL hydro = 0.0012333651227995092 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012333651227995092 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3840e+04 | 12514 | 1 | 1.960e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.36831628670211 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.27346081320201193, dt = 0.0012333651227995092 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (2.1%)
patch tree reduce : 1513.00 ns (0.5%)
gen split merge : 761.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.4%)
LB compute : 271.39 us (93.5%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (73.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.8090938149272806
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9425739202595644e-05,8.337644959043228e-08,-6.068311470858718e-12)
sum a = (2.503762428194313e-06,-1.6107054667768864e-06,-2.8143920238440846e-10)
sum e = 0.010033239838625722
sum de = 0.00031944699286723724
Info: CFL hydro = 0.0012370002485079029 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012370002485079029 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1957e+04 | 12514 | 1 | 2.020e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.983052216925174 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.27469417832481147, dt = 0.0003058216751885001 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 1663.00 ns (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.4%)
LB compute : 311.84 us (94.2%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.8088540834265614
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9424710653607933e-05,8.259524269006382e-08,-6.184022775998796e-12)
sum a = (2.5454424170124914e-06,-1.69530764103939e-06,-2.8413074092321827e-10)
sum e = 0.010033421005827305
sum de = 0.0003168998794791023
Info: CFL hydro = 0.0012452666597638283 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012452666597638283 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.5538e+04 | 12514 | 1 | 1.463e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.525462825087012 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 193 [SPH][rank=0]
Info: time since start : 80.13983503600001 (s) [SPH][rank=0]
Info: dump to orztang_00011.vtk [VTK Dump][rank=0]
- took 2.41 ms, bandwidth = 277.75 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 843.69 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 850.65 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000011.npy
Saving metadata to plots/rho_slice_0000011.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 844.83 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000011.npy
Saving metadata to plots/vy_slice_0000011.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005658225 s
Info: compute_slice took 844.48 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000011.npy
Saving metadata to plots/By_slice_0000011.json
---------------- t = 0.27499999999999997, dt = 0.0012452666597638283 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.65 us (2.4%)
patch tree reduce : 1683.00 ns (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 384.26 us (94.3%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.8093335464279994
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.94215345257098e-05,8.047119601709977e-08,-6.538252880163732e-12)
sum a = (2.7086850726281356e-06,-1.9783607199892526e-06,-2.8399122510200636e-10)
sum e = 0.010036647471729917
sum de = 0.0003196459110066172
Info: CFL hydro = 0.0012659534996751053 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012659534996751053 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3525e+04 | 12514 | 1 | 1.498e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.921665109874837 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2762452666597638, dt = 0.0012659534996751053 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.94 us (1.4%)
patch tree reduce : 1303.00 ns (0.4%)
gen split merge : 8.64 us (2.4%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 327.17 us (92.8%)
LB move op cnt : 0
LB apply : 3.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.808374620425124
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.941800381604414e-05,7.779044505888125e-08,-6.8976856982246565e-12)
sum a = (2.612674050575471e-06,-2.0380910900953006e-06,-3.053576532884187e-10)
sum e = 0.010039456981472404
sum de = 0.0003194479007453509
Info: CFL hydro = 0.0012704733076565407 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012704733076565407 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2743e+04 | 12514 | 1 | 1.512e-01 | 0.0% | 1.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.1339633920678 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2775112201594389, dt = 0.0012704733076565407 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.8%)
patch tree reduce : 1733.00 ns (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 307.39 us (94.3%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.8105322039315954
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9414745256145872e-05,7.516329679497793e-08,-7.299158898245371e-12)
sum a = (2.255487894798879e-06,-1.9292502777605384e-06,-2.874805302327433e-10)
sum e = 0.010042262185324287
sum de = 0.00031970703124863467
Info: CFL hydro = 0.0012848501627949636 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012848501627949636 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2276e+04 | 12514 | 1 | 1.521e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.070677027223876 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.27878169346709547, dt = 0.0012848501627949636 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.6%)
patch tree reduce : 1382.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.4%)
LB compute : 312.32 us (94.8%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.812450055937349
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9412074189895628e-05,7.275363893481484e-08,-7.65717210043447e-12)
sum a = (1.8233754850510876e-06,-1.7238823361799903e-06,-2.552487558112823e-10)
sum e = 0.010045111238019067
sum de = 0.00032031697043672166
Info: CFL hydro = 0.0013097684159370203 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013097684159370203 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3296e+04 | 12514 | 1 | 1.502e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.788094718164782 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2800665436298904, dt = 0.0013097684159370203 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.4%)
patch tree reduce : 1403.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 345.91 us (95.5%)
LB move op cnt : 0
LB apply : 2.77 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.8105322039315968
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.940996359012485e-05,7.062768581461146e-08,-7.970782358676235e-12)
sum a = (1.4116197661464235e-06,-1.5583055259218929e-06,-2.15639267125369e-10)
sum e = 0.01004802597539414
sum de = 0.00032117593647435476
Info: CFL hydro = 0.0012793861784181802 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012793861784181802 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2668e+04 | 12514 | 1 | 1.514e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.148453700772986 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2813763120458274, dt = 0.0012793861784181802 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.5%)
patch tree reduce : 1532.00 ns (0.5%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 311.19 us (94.5%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.8110116669330343
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.940842723562489e-05,6.874244490145581e-08,-8.220728627979527e-12)
sum a = (1.1499897830882938e-06,-1.5789314655019417e-06,-2.2967861196807647e-10)
sum e = 0.010050824263362386
sum de = 0.0003217779797044043
Info: CFL hydro = 0.0012788971492164985 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012788971492164985 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4014e+04 | 12514 | 1 | 1.490e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.921440899939558 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2826556982242456, dt = 0.0012788971492164985 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.91 us (1.5%)
patch tree reduce : 1623.00 ns (0.5%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 307.82 us (94.7%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.8131692504395063
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9407123879861622e-05,6.670995968032077e-08,-8.523444821907197e-12)
sum a = (1.0814355075963439e-06,-1.7477091203898053e-06,-2.151209293656589e-10)
sum e = 0.010053643028630897
sum de = 0.00032259657126322046
Info: CFL hydro = 0.0012922818516986944 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012922818516986944 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7143e+04 | 12514 | 1 | 2.190e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.023658025192585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.28393459537346205, dt = 0.0012922818516986944 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.4%)
patch tree reduce : 1362.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 354.73 us (94.9%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (73.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.811251398433753
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9405770197315106e-05,6.434350227107684e-08,-8.792132805644176e-12)
sum a = (1.3203814599926475e-06,-2.046640467193538e-06,-2.971120912703534e-10)
sum e = 0.010056497303160179
sum de = 0.00032355612353115765
Info: CFL hydro = 0.0012594534078021503 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012594534078021503 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3308e+04 | 12514 | 1 | 1.502e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.970638919732313 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.28522687722516077, dt = 0.0012594534078021503 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.94 us (1.6%)
patch tree reduce : 1633.00 ns (0.5%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 300.45 us (94.6%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.811011666933035
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.940395284562704e-05,6.157270218282263e-08,-9.219309486723246e-12)
sum a = (1.7507415597663744e-06,-2.385415424018303e-06,-2.8741317597239597e-10)
sum e = 0.010059232273291975
sum de = 0.00032435073120605214
Info: CFL hydro = 0.0012718499054057229 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012718499054057229 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.8011e+04 | 12514 | 1 | 1.604e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.26456182222802 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2864863306329629, dt = 0.0012718499054057229 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.50 us (1.6%)
patch tree reduce : 1302.00 ns (0.5%)
gen split merge : 752.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.3%)
LB compute : 270.74 us (94.6%)
LB move op cnt : 0
LB apply : 2.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.8122103244366294
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9401455155892495e-05,5.8325476164542755e-08,-9.578748241272238e-12)
sum a = (2.1984066979197016e-06,-2.673752399280736e-06,-2.712282256848777e-10)
sum e = 0.010062022331465926
sum de = 0.00032537978310428627
Info: CFL hydro = 0.0012882556495738065 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012882556495738065 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8594e+04 | 12514 | 1 | 2.136e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.43859899200099 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.28775818053836866, dt = 0.0012882556495738065 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.6%)
patch tree reduce : 1272.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 311.87 us (95.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.808614351925842
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9398338364612147e-05,5.469763885350648e-08,-9.917867121549769e-12)
sum a = (2.6141470615123372e-06,-2.870863640780232e-06,-3.188385250074382e-10)
sum e = 0.01006484005529846
sum de = 0.0003263585136325513
Info: CFL hydro = 0.001309068011826024 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001309068011826024 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3813e+04 | 12514 | 1 | 1.493e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.06148829269734 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.28904643618794246, dt = 0.001309068011826024 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.93 us (1.5%)
patch tree reduce : 1553.00 ns (0.5%)
gen split merge : 802.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.4%)
LB compute : 301.52 us (94.5%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.810292472430877
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9394648478379536e-05,5.081251825953081e-08,-1.0365915554307283e-11)
sum a = (2.968454526511933e-06,-2.9925858603918255e-06,-2.8856443872052506e-10)
sum e = 0.010067692303395447
sum de = 0.0003273747168151196
Info: CFL hydro = 0.0012800683345814022 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012800683345814022 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5591e+04 | 12514 | 1 | 1.908e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.700756933062344 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.29035550419976847, dt = 0.0012800683345814022 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.91 us (1.7%)
patch tree reduce : 1392.00 ns (0.5%)
gen split merge : 762.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 268.89 us (94.4%)
LB move op cnt : 0
LB apply : 2.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.8095732779287204
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9390616747453217e-05,4.690213252927635e-08,-1.0715482335624402e-11)
sum a = (3.13337674646212e-06,-2.9833002095712595e-06,-4.204034835912825e-10)
sum e = 0.010070422819283298
sum de = 0.00032798458415695455
Info: CFL hydro = 0.0012918600967751635 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012918600967751635 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5917e+04 | 12514 | 1 | 2.238e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.591405999592894 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.29163557253434985, dt = 0.0012918600967751635 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.77 us (1.3%)
patch tree reduce : 1413.00 ns (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 354.92 us (95.6%)
LB move op cnt : 0
LB apply : 2.94 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (71.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.809093814927282
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9386463307210668e-05,4.305406916561212e-08,-1.1342966313949947e-11)
sum a = (3.0553820160037083e-06,-2.843570176504909e-06,-5.467309933783687e-10)
sum e = 0.010073193636867837
sum de = 0.0003286587363168113
Info: CFL hydro = 0.0013035600527474874 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013035600527474874 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6204e+04 | 12514 | 1 | 1.890e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.604081328609947 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.29292743263112503, dt = 0.0013035600527474874 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.7%)
patch tree reduce : 1393.00 ns (0.5%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 279.84 us (94.5%)
LB move op cnt : 0
LB apply : 2.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.8050183794150554
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9382530812408763e-05,3.943756050329135e-08,-1.2137261730920207e-11)
sum a = (2.84194334574317e-06,-2.645506243138238e-06,-5.148011436448049e-10)
sum e = 0.010075968139979082
sum de = 0.00032918558995285313
Info: CFL hydro = 0.001279279429557057 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001279279429557057 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4409e+04 | 12514 | 1 | 1.483e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.65363978025183 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.29423099268387254, dt = 0.001279279429557057 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (1.5%)
patch tree reduce : 1212.00 ns (0.4%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 274.21 us (94.7%)
LB move op cnt : 0
LB apply : 2.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.801422406904267
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9379034287808516e-05,3.618231290137554e-08,-1.277502500593397e-11)
sum a = (2.6668674284199037e-06,-2.4772388933033476e-06,-5.978857393548906e-10)
sum e = 0.010078637130818233
sum de = 0.00032941112923972623
Info: CFL hydro = 0.0012821004463841375 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012821004463841375 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4456e+04 | 12514 | 1 | 1.482e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.081461686120512 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2955102721134296, dt = 0.0012821004463841375 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (1.2%)
patch tree reduce : 1293.00 ns (0.4%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 347.36 us (95.6%)
LB move op cnt : 0
LB apply : 2.94 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.8031005274093026
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.937572708139769e-05,3.3113874290345564e-08,-1.3594718786469723e-11)
sum a = (2.5703141059495896e-06,-2.457549413734141e-06,-5.445035141495712e-10)
sum e = 0.010081308292049129
sum de = 0.0003294098394100688
Info: CFL hydro = 0.0012942969350090933 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012942969350090933 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3015e+04 | 12514 | 1 | 1.507e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.618639424821293 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2967923725598138, dt = 0.0012942969350090933 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.96 us (1.3%)
patch tree reduce : 1863.00 ns (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 353.41 us (95.0%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (72.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.804778647914337
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.93724622272576e-05,2.994569756170599e-08,-1.4265247328449083e-11)
sum a = (2.570992091623167e-06,-2.633111170308228e-06,-6.653578995429602e-10)
sum e = 0.010083984135844135
sum de = 0.0003291480342741916
Info: CFL hydro = 0.0013089684746168484 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013089684746168484 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5810e+04 | 12514 | 1 | 2.242e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.780269073041282 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2980866694948229, dt = 0.0013089684746168484 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.3%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 394.28 us (95.4%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (74.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.802621064407864
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.936909644090386e-05,2.6385423527697867e-08,-1.5214390573669613e-11)
sum a = (2.6297903310001368e-06,-3.0418326907748963e-06,-6.402547380932035e-10)
sum e = 0.010086660338771347
sum de = 0.000328700744582437
Info: CFL hydro = 0.0013296751182340905 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013296751182340905 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1796e+04 | 12514 | 1 | 2.025e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.26992817491225 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.29939563796943974, dt = 0.000604362030560246 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.5%)
patch tree reduce : 1522.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 342.87 us (94.9%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.801662138404987
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.936746861295852e-05,2.4279553553798366e-08,-1.5584906603787377e-11)
sum a = (2.6750851583684536e-06,-3.2814687835503205e-06,-6.270684181535772e-10)
sum e = 0.010087447405525963
sum de = 0.00032624437249266383
Info: CFL hydro = 0.001329089324849358 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001329089324849358 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0831e+04 | 12514 | 1 | 1.548e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.05332561408302 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 213 [SPH][rank=0]
Info: time since start : 87.146158924 (s) [SPH][rank=0]
Info: dump to orztang_00012.vtk [VTK Dump][rank=0]
- took 2.47 ms, bandwidth = 270.33 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 884.14 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 864.16 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000012.npy
Saving metadata to plots/rho_slice_0000012.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 865.99 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000012.npy
Saving metadata to plots/vy_slice_0000012.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005613023 s
Info: compute_slice took 874.51 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000012.npy
Saving metadata to plots/By_slice_0000012.json
---------------- t = 0.3, dt = 0.001329089324849358 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.27 us (2.4%)
patch tree reduce : 1744.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.3%)
LB compute : 397.10 us (94.2%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7999840178999538
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.936389949859451e-05,1.984577494563092e-08,-1.641435188865802e-11)
sum a = (2.7916565064977838e-06,-3.8121493840593786e-06,-9.813588978763516e-10)
sum e = 0.01009054051414192
sum de = 0.0003281140572505844
Info: CFL hydro = 0.0013355004740159423 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013355004740159423 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0160e+04 | 12514 | 1 | 2.080e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.002069385891687 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.30132908932484936, dt = 0.0013355004740159423 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.2%)
patch tree reduce : 1463.00 ns (0.3%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1273.00 ns (0.3%)
LB compute : 475.02 us (96.0%)
LB move op cnt : 0
LB apply : 4.09 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7973469713920407
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9360093773139706e-05,1.4401986675666081e-08,-1.7960399009375643e-11)
sum a = (2.908170740278338e-06,-4.340482401790392e-06,-9.306554706230853e-10)
sum e = 0.010093174326210472
sum de = 0.00032716240314730144
Info: CFL hydro = 0.0013698869932331332 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013698869932331332 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4573e+04 | 12514 | 1 | 2.293e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.966560569477153 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3026645897988653, dt = 0.0013698869932331332 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.5%)
patch tree reduce : 1422.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 393.85 us (95.4%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.793271535879814
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.93560321054612e-05,8.103221791643516e-09,-1.920143460799928e-11)
sum a = (3.0186930017808025e-06,-4.813445198835892e-06,-1.0489432611103683e-09)
sum e = 0.01009584882492135
sum de = 0.00032640658664382846
Info: CFL hydro = 0.0013818222574976202 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013818222574976202 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8183e+04 | 12514 | 1 | 1.835e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.87011573436943 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.30403447679209844, dt = 0.0013818222574976202 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.6%)
patch tree reduce : 1413.00 ns (0.4%)
gen split merge : 1011.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 323.17 us (94.7%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (62.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7903947578711854
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9351785106778676e-05,1.127943288302645e-09,-2.0731908205889263e-11)
sum a = (3.0958804881590696e-06,-5.184520349667639e-06,-8.998767418074095e-10)
sum e = 0.010098478179569059
sum de = 0.0003252756723323036
Info: CFL hydro = 0.001308378052423974 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001308378052423974 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7948e+04 | 12514 | 1 | 1.842e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.010764206439216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.30541629904959605, dt = 0.001308378052423974 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.5%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 362.05 us (95.1%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (73.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.787278248361835
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9347681195001424e-05,-5.911749300750766e-09,-2.1806295467786463e-11)
sum a = (3.055479700767506e-06,-5.4479329341500275e-06,-7.798817737018836e-10)
sum e = 0.010100846759365534
sum de = 0.0003237909282404344
Info: CFL hydro = 0.0013344210534419081 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013344210534419081 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1663e+04 | 12514 | 1 | 1.532e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.73737705878119 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.30672467710202, dt = 0.0013344210534419081 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.7%)
patch tree reduce : 1323.00 ns (0.4%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 315.80 us (94.5%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7827233498481707
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9343630328312597e-05,-1.3353907327948565e-08,-2.2768486734393806e-11)
sum a = (2.942579749207114e-06,-5.578464585616612e-06,-6.123170633024427e-10)
sum e = 0.010103293573698581
sum de = 0.0003227870402276829
Info: CFL hydro = 0.0013383572697932213 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013383572697932213 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.3728e+04 | 12514 | 1 | 1.697e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.302971132854637 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3080590981554619, dt = 0.0013383572697932213 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.91 us (1.4%)
patch tree reduce : 1704.00 ns (0.5%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 344.31 us (95.0%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (74.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7793671088381013
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9339767433348975e-05,-2.0906978052176246e-08,-2.3476184788933313e-11)
sum a = (2.868755116689442e-06,-5.694651945496013e-06,-4.168924938091288e-10)
sum e = 0.010105675156997288
sum de = 0.0003215683034424924
Info: CFL hydro = 0.0013502894282905558 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013502894282905558 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.9468e+04 | 12514 | 1 | 1.801e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.746195101241625 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3093974554252551, dt = 0.0013502894282905558 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.9%)
patch tree reduce : 1422.00 ns (0.5%)
gen split merge : 772.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.4%)
LB compute : 274.44 us (93.9%)
LB move op cnt : 0
LB apply : 3.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7781684513345057
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9335943185509326e-05,-2.8674156470995836e-08,-2.3908336369255323e-11)
sum a = (2.8919501392752354e-06,-5.849878063559844e-06,-6.826152009370429e-11)
sum e = 0.0101080252201033
sum de = 0.0003204626665308782
Info: CFL hydro = 0.0013342768475946066 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013342768475946066 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5750e+04 | 12514 | 1 | 1.903e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.540541331258837 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.31074774485354567, dt = 0.0013342768475946066 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.9%)
patch tree reduce : 1652.00 ns (0.5%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 286.21 us (94.0%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.772175163816527
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.933206886339715e-05,-3.658431342571314e-08,-2.3764039776030373e-11)
sum a = (3.046235580789368e-06,-6.101896614816359e-06,1.562084372301133e-10)
sum e = 0.010110263674235032
sum de = 0.0003194740759545125
Info: CFL hydro = 0.0013460827733990798 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013460827733990798 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.5233e+04 | 12514 | 1 | 1.663e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.877428770205338 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3120820217011403, dt = 0.0013460827733990798 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.97 us (1.6%)
patch tree reduce : 1543.00 ns (0.5%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 299.93 us (94.6%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7690586543071753
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9327865448412008e-05,-4.496610260295103e-08,-2.340401775605601e-11)
sum a = (3.3469357679480996e-06,-6.459282760987349e-06,3.706860406454033e-10)
sum e = 0.010112480019970182
sum de = 0.0003188352478480923
Info: CFL hydro = 0.0013607766535210896 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013607766535210896 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3123e+04 | 12514 | 1 | 1.505e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.18820947393665 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3134281044745394, dt = 0.0013607766535210896 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.6%)
patch tree reduce : 1844.00 ns (0.6%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 292.47 us (94.2%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.760428320281284
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9323108632687e-05,-5.3996279450035694e-08,-2.275524454248001e-11)
sum a = (3.695433155908663e-06,-6.831542065306295e-06,5.71338255141054e-10)
sum e = 0.010114654545910786
sum de = 0.0003185080063445189
Info: CFL hydro = 0.0013689319575803764 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013689319575803764 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.3404e+04 | 12514 | 1 | 1.705e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.7352032332534 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.31478888112806047, dt = 0.0013689319575803764 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.6%)
patch tree reduce : 1382.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1353.00 ns (0.4%)
LB compute : 301.39 us (94.3%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (66.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.757072079271215
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.931781272258831e-05,-6.360147658779929e-08,-2.1836599921966532e-11)
sum a = (4.0604182092440645e-06,-7.158948396423095e-06,5.208680749880807e-10)
sum e = 0.01011676444427889
sum de = 0.00031852491198899034
Info: CFL hydro = 0.0013550271708209624 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013550271708209624 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6209e+04 | 12514 | 1 | 1.890e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.074019915751897 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.31615781308564084, dt = 0.0013550271708209624 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.58 us (1.3%)
patch tree reduce : 1442.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 325.78 us (95.2%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7501198657503605
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9312060925738203e-05,-7.35261446743412e-08,-2.1165354649328237e-11)
sum a = (4.383153562270938e-06,-7.346911184292949e-06,3.876728206456789e-10)
sum e = 0.010118761146312697
sum de = 0.0003189033867316617
Info: CFL hydro = 0.0013741627629671866 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013741627629671866 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4021e+04 | 12514 | 1 | 1.489e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.75246927352561 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3175128402564618, dt = 0.0013741627629671866 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.94 us (1.7%)
patch tree reduce : 1172.00 ns (0.4%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 279.24 us (94.6%)
LB move op cnt : 0
LB apply : 3.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7438868467316593
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9305819101742368e-05,-8.374934378881242e-08,-2.0722870689348974e-11)
sum a = (4.605423046232208e-06,-7.398850356148135e-06,-1.0808389569269183e-10)
sum e = 0.010120734305542453
sum de = 0.00031982300251650144
Info: CFL hydro = 0.001367011458212184 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001367011458212184 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4103e+04 | 12514 | 1 | 1.488e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.24730306568675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.318887003019429, dt = 0.001367011458212184 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.82 us (1.5%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 306.55 us (94.7%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7366949017100843
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9299370718444027e-05,-9.389934344141959e-08,-2.1211247822850758e-11)
sum a = (4.6506795530437645e-06,-7.304795106289298e-06,-3.7867305373605263e-10)
sum e = 0.010122595194406234
sum de = 0.00032084001788351365
Info: CFL hydro = 0.0013428576562894616 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013428576562894616 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.5440e+04 | 12514 | 1 | 1.659e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.667609984687914 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3202540144776412, dt = 0.0013428576562894616 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.5%)
patch tree reduce : 1323.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 317.03 us (94.8%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7297426881892277
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.929309458471744e-05,-1.0364435617549286e-07,-2.1904701072027404e-11)
sum a = (4.530145313557419e-06,-7.112061787995695e-06,-5.970605776601278e-10)
sum e = 0.01012432661396792
sum de = 0.0003219110933947581
Info: CFL hydro = 0.0013633300291432892 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013633300291432892 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3546e+04 | 12514 | 1 | 1.498e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.27453041794067 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3215968721339306, dt = 0.0013633300291432892 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.8%)
patch tree reduce : 1302.00 ns (0.4%)
gen split merge : 772.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 283.89 us (94.3%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7218315486654943
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9286999431738532e-05,-1.1321103687398367e-07,-2.286532336586046e-11)
sum a = (4.341687747212845e-06,-6.7828752839042315e-06,-1.0657378890426172e-09)
sum e = 0.01012603249377432
sum de = 0.00032325951693385835
Info: CFL hydro = 0.0013400010804738628 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013400010804738628 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3368e+04 | 12514 | 1 | 1.501e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.697017528560764 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3229602021630739, dt = 0.0013400010804738628 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.6%)
patch tree reduce : 1372.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 305.68 us (94.7%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7136806776410425
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.928131003039595e-05,-1.2207570216010158e-07,-2.4612894214866297e-11)
sum a = (4.168407297145397e-06,-6.408838845998196e-06,-1.3615733482348854e-09)
sum e = 0.010127585163302765
sum de = 0.00032445775909706526
Info: CFL hydro = 0.0013624720393857052 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013624720393857052 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.2482e+04 | 12514 | 1 | 1.726e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.94114139427646 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3243002032435478, dt = 0.000699796756452209 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.7%)
patch tree reduce : 1673.00 ns (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 297.15 us (94.5%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.711283362633851
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9278509090484962e-05,-1.263099821816376e-07,-2.5763928745127374e-11)
sum a = (4.102073714578246e-06,-6.1873014616747695e-06,-1.7233210891408787e-09)
sum e = 0.01012797694964195
sum de = 0.00032310049942733786
Info: CFL hydro = 0.0013806615208814073 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013806615208814073 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4222e+04 | 12514 | 1 | 1.486e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.955317463711 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 232 [SPH][rank=0]
Info: time since start : 94.09122341300001 (s) [SPH][rank=0]
Info: dump to orztang_00013.vtk [VTK Dump][rank=0]
- took 2.34 ms, bandwidth = 285.57 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 873.22 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 871.42 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000013.npy
Saving metadata to plots/rho_slice_0000013.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 873.72 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000013.npy
Saving metadata to plots/vy_slice_0000013.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.006733014000000001 s
Info: compute_slice took 879.45 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000013.npy
Saving metadata to plots/By_slice_0000013.json
---------------- t = 0.325, dt = 0.0013806615208814073 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.00 us (2.4%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 386.52 us (94.3%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.7084065846252203
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9272868725164495e-05,-1.3477503565646592e-07,-2.8269826808878427e-11)
sum a = (3.906753472532011e-06,-5.720146051787816e-06,-2.3536586913892325e-09)
sum e = 0.010129861355524815
sum de = 0.0003270174854575464
Info: CFL hydro = 0.0013627610087032177 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013627610087032177 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3187e+04 | 12514 | 1 | 1.504e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.04063115480731 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3263806615208814, dt = 0.0013627610087032177 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.6%)
patch tree reduce : 1412.00 ns (0.4%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 300.44 us (94.5%)
LB move op cnt : 0
LB apply : 3.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.70529007511587
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9267679589432645e-05,-1.4224773591049584e-07,-3.1912442537489965e-11)
sum a = (3.939658550765451e-06,-5.3178477096498245e-06,-2.8466610353696144e-09)
sum e = 0.010131197718291398
sum de = 0.00032819692105537536
Info: CFL hydro = 0.0013854555134086854 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013854555134086854 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1966e+04 | 12514 | 1 | 1.527e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.13367258331919 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3277434225295846, dt = 0.0013854555134086854 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.87 us (1.4%)
patch tree reduce : 1352.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.4%)
LB compute : 323.63 us (94.9%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (71.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.700974908102925
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.926219894689363e-05,-1.493412590921582e-07,-3.619228694961914e-11)
sum a = (4.073676282483564e-06,-4.989014943846408e-06,-3.268873650990136e-09)
sum e = 0.01013247180742834
sum de = 0.0003298897534655225
Info: CFL hydro = 0.0013975199652706874 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013975199652706874 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2436e+04 | 12514 | 1 | 1.518e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.85593758306608 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3291288780429933, dt = 0.0013975199652706874 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.6%)
patch tree reduce : 1352.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.4%)
LB compute : 317.97 us (94.5%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (72.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.699057056097171
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9256413065154143e-05,-1.560857154988126e-07,-4.105308153892833e-11)
sum a = (4.3192837142625145e-06,-4.732588333638727e-06,-3.5589284534234373e-09)
sum e = 0.010133630745515994
sum de = 0.00033163572991784496
Info: CFL hydro = 0.0013706728837819973 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013706728837819973 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3936e+04 | 12514 | 1 | 1.491e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.7453313251502 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.330526398008264, dt = 0.0013706728837819973 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.89 us (1.5%)
patch tree reduce : 1664.00 ns (0.5%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 309.47 us (94.6%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.695461083586383
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9250321119444834e-05,-1.6239336534430343e-07,-4.613388695407279e-11)
sum a = (4.5684469249200105e-06,-4.5477088169946245e-06,-3.8437580598836116e-09)
sum e = 0.010134613903431244
sum de = 0.00033321517501263696
Info: CFL hydro = 0.00138008438021277 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00138008438021277 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.9248e+04 | 12514 | 1 | 1.807e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.305162821070645 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.331897070892046, dt = 0.00138008438021277 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.5%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 338.69 us (95.0%)
LB move op cnt : 0
LB apply : 3.23 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6928240370784726
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9243845516573384e-05,-1.6854288257818768e-07,-5.1633801522815083e-11)
sum a = (4.735687843154415e-06,-4.4394890524000885e-06,-4.1213544451172536e-09)
sum e = 0.010135510097741631
sum de = 0.00033504447335561474
Info: CFL hydro = 0.0013915805598117275 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013915805598117275 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3330e+04 | 12514 | 1 | 2.347e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.172944203267832 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.33327715527225876, dt = 0.0013915805598117275 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.4%)
patch tree reduce : 1363.00 ns (0.3%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1083.00 ns (0.3%)
LB compute : 377.17 us (95.4%)
LB move op cnt : 0
LB apply : 3.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6906664535719993
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9237140022144428e-05,-1.746461130357788e-07,-5.756055146635779e-11)
sum a = (4.730776486746688e-06,-4.408424876824162e-06,-4.3413235883309726e-09)
sum e = 0.010136286035376052
sum de = 0.0003370345370738383
Info: CFL hydro = 0.0013719345789418823 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013719345789418823 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.6669e+04 | 12514 | 1 | 1.632e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.69270463965061 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.33466873583207046, dt = 0.0013719345789418823 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.5%)
patch tree reduce : 1623.00 ns (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 320.28 us (94.6%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6839539715518623
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.923065312357112e-05,-1.806725694114077e-07,-6.366961580728916e-11)
sum a = (4.662000796764271e-06,-4.4030421028082326e-06,-4.526831131963085e-09)
sum e = 0.010136892519420602
sum de = 0.0003390272362974607
Info: CFL hydro = 0.0013885138086313657 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013885138086313657 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4829e+04 | 12514 | 1 | 1.930e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.58643602757926 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3360406704110123, dt = 0.0013885138086313657 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.8%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.4%)
LB compute : 316.92 us (94.5%)
LB move op cnt : 0
LB apply : 3.17 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.679399073038198
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9224227048962596e-05,-1.8678256176438816e-07,-7.008243545017673e-11)
sum a = (4.3640444544782684e-06,-4.367342031738978e-06,-4.554370130377454e-09)
sum e = 0.01013740155853016
sum de = 0.000341406879858935
Info: CFL hydro = 0.0014125619213313505 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014125619213313505 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8446e+04 | 12514 | 1 | 2.141e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.346067683778312 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3374291842196437, dt = 0.0014125619213313505 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.5%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 350.38 us (94.9%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (71.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.674364711523094
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9218269424190607e-05,-1.929269177950243e-07,-7.653488441190611e-11)
sum a = (4.026989830340981e-06,-4.3058080376726794e-06,-4.45002264703338e-09)
sum e = 0.010137783055217469
sum de = 0.00034410663424310395
Info: CFL hydro = 0.0014029734902027834 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014029734902027834 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.9099e+04 | 12514 | 1 | 1.582e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.142752142881754 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.338841746140975, dt = 0.0014029734902027834 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.6%)
patch tree reduce : 1342.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 331.90 us (94.9%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6736455170209363
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9212857719477452e-05,-1.989243920373799e-07,-8.27044495757156e-11)
sum a = (3.6947732041437952e-06,-4.2877821726145435e-06,-4.2183126410966255e-09)
sum e = 0.01013798559934283
sum de = 0.0003467711744249114
Info: CFL hydro = 0.0013975000883493377 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013975000883493377 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2466e+04 | 12514 | 1 | 1.517e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.28380799217413 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3402447196311778, dt = 0.0013975000883493377 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.90 us (1.6%)
patch tree reduce : 1783.00 ns (0.6%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1073.00 ns (0.4%)
LB compute : 284.67 us (94.3%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6690906185072714
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9207927319157915e-05,-2.049039230969093e-07,-8.843700036663683e-11)
sum a = (3.387326534597046e-06,-4.305490104302379e-06,-3.826175941047504e-09)
sum e = 0.01013804308310209
sum de = 0.00034949606623591473
Info: CFL hydro = 0.0013849626155900752 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013849626155900752 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2791e+04 | 12514 | 1 | 1.512e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.28448731848289 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.34164221971952713, dt = 0.0013849626155900752 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.7%)
patch tree reduce : 1342.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 318.67 us (94.7%)
LB move op cnt : 0
LB apply : 3.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6686111555058334
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.920345082691484e-05,-2.1087923935120332e-07,-9.346210546908849e-11)
sum a = (3.249348615540365e-06,-4.414045082916614e-06,-3.2882385444395755e-09)
sum e = 0.010137946431990678
sum de = 0.0003521863199947042
Info: CFL hydro = 0.0013913400154697943 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013913400154697943 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6837e+04 | 12514 | 1 | 2.202e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.645208398106707 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3430271823351172, dt = 0.0013913400154697943 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.5%)
patch tree reduce : 1764.00 ns (0.5%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 349.90 us (95.0%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.668850887006553
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9199025425291626e-05,-2.1709584919874358e-07,-9.766465174454175e-11)
sum a = (3.1925157065803323e-06,-4.529318982239756e-06,-2.7382158206933234e-09)
sum e = 0.010137717159819093
sum de = 0.0003549127252791324
Info: CFL hydro = 0.0014069950866944935 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014069950866944935 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.8614e+04 | 12514 | 1 | 1.592e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.46579977546902 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.344418522350587, dt = 0.0014069950866944935 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.8%)
patch tree reduce : 1663.00 ns (0.6%)
gen split merge : 761.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.4%)
LB compute : 280.36 us (94.2%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6714879335144626
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9194573108328372e-05,-2.2354877134729945e-07,-1.0113467363812925e-10)
sum a = (3.0818881639347458e-06,-4.653600870082487e-06,-2.106070430271333e-09)
sum e = 0.010137341393242393
sum de = 0.0003575355756393021
Info: CFL hydro = 0.0013590242675825775 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013590242675825775 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3268e+04 | 12514 | 1 | 1.503e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.70363486374517 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3458255174372815, dt = 0.0013590242675825775 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.7%)
patch tree reduce : 1342.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.4%)
LB compute : 283.44 us (94.2%)
LB move op cnt : 0
LB apply : 3.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (72.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6714879335144635
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9190462573727983e-05,-2.2996055986413435e-07,-1.0355216173267576e-10)
sum a = (2.9969493183071786e-06,-4.798542019979507e-06,-1.4504764233977003e-09)
sum e = 0.01013677583163467
sum de = 0.0003595212561981551
Info: CFL hydro = 0.0013339177853311547 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013339177853311547 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.7176e+04 | 12514 | 1 | 1.621e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.172929745127473 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.34718454170486407, dt = 0.0013339177853311547 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.6%)
patch tree reduce : 1432.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 361.36 us (95.2%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (74.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.670529007511587
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9186522606706756e-05,-2.3645990967828943e-07,-1.0504149394856419e-10)
sum a = (2.788867650889485e-06,-4.86210816552775e-06,-8.075369668163414e-10)
sum e = 0.010136101823590626
sum de = 0.0003612646312094282
Info: CFL hydro = 0.0013764373417586666 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013764373417586666 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0761e+04 | 12514 | 1 | 2.060e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.31622475087531 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3485184594901952, dt = 0.0013764373417586666 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.5%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 361.58 us (95.2%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.668371424005115
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9182822687049385e-05,-2.4319469292285227e-07,-1.0572420379671463e-10)
sum a = (2.509438387841932e-06,-4.816299722669109e-06,-1.9519997822652836e-10)
sum e = 0.01013532728447671
sum de = 0.00036300842943713413
Info: CFL hydro = 0.0014056766589650978 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014056766589650978 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5493e+04 | 12514 | 1 | 2.255e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.97358385871941 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3498948968319539, dt = 0.00010510316804612785 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.5%)
patch tree reduce : 1422.00 ns (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 367.97 us (95.4%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6669330350008003
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.918275124556081e-05,-2.4366937505646107e-07,-1.0532329818447847e-10)
sum a = (2.493701168474261e-06,-4.796370050983987e-06,-2.15842279971677e-10)
sum e = 0.010134634294995346
sum de = 0.00036015504718003074
Info: CFL hydro = 0.001411178396563375 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001411178396563375 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4408e+04 | 12514 | 1 | 1.483e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.552150533909637 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 251 [SPH][rank=0]
Info: time since start : 101.109286974 (s) [SPH][rank=0]
Info: dump to orztang_00014.vtk [VTK Dump][rank=0]
- took 2.32 ms, bandwidth = 288.33 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 901.09 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 881.11 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000014.npy
Saving metadata to plots/rho_slice_0000014.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 881.10 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000014.npy
Saving metadata to plots/vy_slice_0000014.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005731822 s
Info: compute_slice took 882.14 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000014.npy
Saving metadata to plots/By_slice_0000014.json
---------------- t = 0.35000000000000003, dt = 0.001411178396563375 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.05 us (2.3%)
patch tree reduce : 2.08 us (0.5%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 416.76 us (94.5%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6678919610036766
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9179233015360063e-05,-2.504368615184406e-07,-1.0562897493279899e-10)
sum a = (2.108641181542228e-06,-4.630414427469366e-06,3.4024358120631986e-10)
sum e = 0.010134299170046235
sum de = 0.0003648851896195103
Info: CFL hydro = 0.0013890529881186479 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013890529881186479 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2374e+04 | 12514 | 1 | 1.519e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.440890660315375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3514111783965634, dt = 0.0013890529881186479 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.6%)
patch tree reduce : 1783.00 ns (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.3%)
LB compute : 295.79 us (94.5%)
LB move op cnt : 0
LB apply : 2.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.671008470513026
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.917657569519359e-05,-2.5675165601961696e-07,-1.0476399039276576e-10)
sum a = (1.8064376333896998e-06,-4.400522563513127e-06,7.205783617072356e-10)
sum e = 0.01013317873227817
sum de = 0.00036565236117684256
Info: CFL hydro = 0.0014171791428849159 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014171791428849159 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2342e+04 | 12514 | 1 | 1.520e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.903809432827074 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.35280023138468203, dt = 0.0014171791428849159 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.8%)
patch tree reduce : 1452.00 ns (0.4%)
gen split merge : 832.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 312.74 us (94.5%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6690906185072705
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.917422553782747e-05,-2.6282831882431417e-07,-1.0347864918596095e-10)
sum a = (1.5811965184246855e-06,-4.175711760165729e-06,6.400296026520404e-10)
sum e = 0.010131946032622612
sum de = 0.00036684378172560287
Info: CFL hydro = 0.0013754892120292884 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013754892120292884 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.8612e+04 | 12514 | 1 | 1.592e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.04944203495453 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.35421741052756694, dt = 0.0013754892120292884 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 1914.00 ns (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 330.98 us (94.8%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.671008470513025
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.917221022257933e-05,-2.684126667123083e-07,-1.0265537138266297e-10)
sum a = (1.495831160582984e-06,-4.013120245865449e-06,2.1572912056566557e-10)
sum e = 0.010130570526538193
sum de = 0.0003677015504049098
Info: CFL hydro = 0.0013960015812877918 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013960015812877918 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6003e+04 | 12514 | 1 | 1.896e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.11733035701717 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.35559289973959624, dt = 0.0013960015812877918 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (1.8%)
patch tree reduce : 1883.00 ns (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 329.69 us (94.6%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.671727665015184
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9170180749478313e-05,-2.7390316748437085e-07,-1.026460235573141e-10)
sum a = (1.525030416490017e-06,-3.888216582399004e-06,9.370769417260759e-11)
sum e = 0.010129125341618936
sum de = 0.0003689145346534333
Info: CFL hydro = 0.0014253260620404504 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014253260620404504 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.1354e+04 | 12514 | 1 | 1.754e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.655651165214174 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.356988901320884, dt = 0.0014253260620404504 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.8%)
patch tree reduce : 1542.00 ns (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 315.17 us (94.5%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6734057855202185
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9167986702776574e-05,-2.7935796105825813e-07,-1.025976305905171e-10)
sum a = (1.6291900334064925e-06,-3.836493737142489e-06,-4.6057160823006456e-10)
sum e = 0.01012755917378482
sum de = 0.00037018730069147244
Info: CFL hydro = 0.0014494635064733526 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014494635064733526 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8086e+04 | 12514 | 1 | 1.838e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.917813955165375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.35841422738292444, dt = 0.0014494635064733526 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.8%)
patch tree reduce : 1834.00 ns (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 276.64 us (93.9%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6738852485216555
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9165551020569623e-05,-2.848819577633386e-07,-1.0366022669647524e-10)
sum a = (1.8936524252779611e-06,-3.879500624542687e-06,-6.747216672814675e-10)
sum e = 0.010125871927439674
sum de = 0.00037145928042008145
Info: CFL hydro = 0.001375407020861946 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001375407020861946 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.9624e+04 | 12514 | 1 | 1.572e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.201657363860676 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3598636908893978, dt = 0.001375407020861946 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.7%)
patch tree reduce : 1422.00 ns (0.5%)
gen split merge : 792.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.4%)
LB compute : 276.96 us (94.2%)
LB move op cnt : 0
LB apply : 3.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (67.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6731660540194992
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9162754813435856e-05,-2.9024901861674235e-07,-1.0474344496249044e-10)
sum a = (2.232997424249785e-06,-4.037434507097432e-06,-7.77025555664714e-10)
sum e = 0.010124112279825685
sum de = 0.0003722345298224469
Info: CFL hydro = 0.0013989450135562377 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013989450135562377 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.5778e+04 | 12514 | 1 | 1.651e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.98339384353257 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3612390979102597, dt = 0.0013989450135562377 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 27.61 us (8.5%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 284.77 us (87.8%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.66980981300943
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9159397604076956e-05,-2.9600577917351094e-07,-1.059008157322196e-10)
sum a = (2.5052132708969243e-06,-4.260878705369527e-06,-1.0064703670795199e-09)
sum e = 0.010122352699593344
sum de = 0.0003733947887937836
Info: CFL hydro = 0.001432363896345937 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001432363896345937 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.6015e+04 | 12514 | 1 | 1.646e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.591799950401818 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.36263804292381596, dt = 0.001432363896345937 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.6%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 302.99 us (94.7%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6681316925043963
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9155618819534483e-05,-3.022652010713267e-07,-1.0750293788618587e-10)
sum a = (2.760333040984154e-06,-4.43568680958789e-06,-1.4294155708739551e-09)
sum e = 0.010120511661290814
sum de = 0.00037434528606208086
Info: CFL hydro = 0.0013582671108289446 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013582671108289446 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2918e+04 | 12514 | 1 | 1.509e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.166957278024306 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3640704068201619, dt = 0.0013582671108289446 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.7%)
patch tree reduce : 1382.00 ns (0.5%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1483.00 ns (0.5%)
LB compute : 287.52 us (94.2%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6669330350007985
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.915168683777602e-05,-3.0841524298716317e-07,-1.0974737176371394e-10)
sum a = (2.921812965867061e-06,-4.460519884711872e-06,-1.4911431447034962e-09)
sum e = 0.010118640144690584
sum de = 0.00037449279390626737
Info: CFL hydro = 0.0013918460688592297 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013918460688592297 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2524e+04 | 12514 | 1 | 1.516e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.24552679312005 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3654286739309908, dt = 0.0013918460688592297 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.86 us (1.5%)
patch tree reduce : 1342.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 304.75 us (94.7%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.668850887006554
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9147510457450267e-05,-3.146404650285228e-07,-1.1186473475465346e-10)
sum a = (3.041594197421165e-06,-4.387040614162833e-06,-1.5779418876430884e-09)
sum e = 0.010116788950914406
sum de = 0.00037475875086266793
Info: CFL hydro = 0.0014102071768229147 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014102071768229147 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1273e+04 | 12514 | 1 | 1.540e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.54203120772907 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.36682051999985005, dt = 0.0014102071768229147 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.6%)
patch tree reduce : 1613.00 ns (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 336.02 us (94.7%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (71.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.668371424005114
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.914313782096572e-05,-3.2077596527086617e-07,-1.1415036497378761e-10)
sum a = (3.1309232271775754e-06,-4.298901222711899e-06,-2.004493964713767e-09)
sum e = 0.010114883838939426
sum de = 0.00037457911127420615
Info: CFL hydro = 0.0014376716149380466 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014376716149380466 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1984e+04 | 12514 | 1 | 1.526e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.259558994182505 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.368230727176673, dt = 0.0014376716149380466 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.7%)
patch tree reduce : 1573.00 ns (0.5%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 308.68 us (94.6%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6683714240051155
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.91385735952941e-05,-3.268942261328334e-07,-1.1733293244938454e-10)
sum a = (3.2807368962089213e-06,-4.1559403848159395e-06,-2.134045660264311e-09)
sum e = 0.010112939191750582
sum de = 0.0003740063505716409
Info: CFL hydro = 0.001475213194846207 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001475213194846207 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1856e+04 | 12514 | 1 | 1.529e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.85442769025304 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.36966839879161106, dt = 0.001475213194846207 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.6%)
patch tree reduce : 1853.00 ns (0.5%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 329.80 us (94.9%)
LB move op cnt : 0
LB apply : 3.17 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6678919610036753
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.913362611750613e-05,-3.329223588561338e-07,-1.205742311635291e-10)
sum a = (3.5056553171179487e-06,-3.989380100562487e-06,-2.2406223203535507e-09)
sum e = 0.010110949641429109
sum de = 0.0003730560797440437
Info: CFL hydro = 0.0014124731088836677 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014124731088836677 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1734e+04 | 12514 | 1 | 1.531e-01 | 0.0% | 0.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.68657797007483 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3711436119864573, dt = 0.0014124731088836677 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.8%)
patch tree reduce : 1664.00 ns (0.6%)
gen split merge : 762.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 283.44 us (94.2%)
LB move op cnt : 0
LB apply : 3.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.66405625699217
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9128508572330476e-05,-3.3843439500483603e-07,-1.238176615857007e-10)
sum a = (3.832336396994772e-06,-3.7994750989337885e-06,-2.52373989355393e-09)
sum e = 0.0101089663626826
sum de = 0.00037147689171986085
Info: CFL hydro = 0.0014643592624084738 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014643592624084738 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3153e+04 | 12514 | 1 | 1.505e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.788100983607315 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.37255608509534094, dt = 0.0014643592624084738 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.7%)
patch tree reduce : 1543.00 ns (0.5%)
gen split merge : 751.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1293.00 ns (0.4%)
LB compute : 273.89 us (94.0%)
LB move op cnt : 0
LB apply : 3.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.663816525491449
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9122665940910757e-05,-3.438640737039995e-07,-1.2771327145408579e-10)
sum a = (4.112173489902007e-06,-3.620652320020293e-06,-2.437748601525214e-09)
sum e = 0.010107015871117859
sum de = 0.00037002260427851505
Info: CFL hydro = 0.0014794918156170653 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014794918156170653 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.5229e+04 | 12514 | 1 | 1.663e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.691342422964535 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3740204443577494, dt = 0.0009795556422506624 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.7%)
patch tree reduce : 1813.00 ns (0.6%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 284.98 us (94.3%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.660460284481382
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9118432947147326e-05,-3.4727977371662687e-07,-1.3003822077858257e-10)
sum a = (4.278270400629679e-06,-3.5172937052884483e-06,-2.6369201454080467e-09)
sum e = 0.010105356325739256
sum de = 0.0003672932864238138
Info: CFL hydro = 0.0014766139204386536 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014766139204386536 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9918e+04 | 12514 | 1 | 2.089e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.88458804827521 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 269 [SPH][rank=0]
Info: time since start : 107.78786364400001 (s) [SPH][rank=0]
Info: dump to orztang_00015.vtk [VTK Dump][rank=0]
- took 2.71 ms, bandwidth = 246.25 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 891.49 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 894.64 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000015.npy
Saving metadata to plots/rho_slice_0000015.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 891.34 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000015.npy
Saving metadata to plots/vy_slice_0000015.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005643297 s
Info: compute_slice took 894.32 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000015.npy
Saving metadata to plots/By_slice_0000015.json
---------------- t = 0.37500000000000006, dt = 0.0014766139204386536 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.77 us (3.0%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 359.59 us (93.0%)
LB move op cnt : 0
LB apply : 4.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.657583506472751
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.911203424293513e-05,-3.5242283580688405e-07,-1.3402948357713619e-10)
sum a = (4.498732442629192e-06,-3.347190668237152e-06,-2.862067894035152e-09)
sum e = 0.010103712984607782
sum de = 0.0003669476938717734
Info: CFL hydro = 0.0014649908493129388 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014649908493129388 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.9101e+04 | 12514 | 1 | 1.582e-01 | 0.0% | 1.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.60129902344002 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3764766139204387, dt = 0.0014649908493129388 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 1382.00 ns (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 311.36 us (94.2%)
LB move op cnt : 0
LB apply : 4.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.66093974748282
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.91052808724131e-05,-3.572008512506528e-07,-1.3838861500178607e-10)
sum a = (4.705418141059837e-06,-3.2005137160090873e-06,-3.5419871349567288e-09)
sum e = 0.010101760854404196
sum de = 0.0003645774924855929
Info: CFL hydro = 0.0013984973366044388 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013984973366044388 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1611e+04 | 12514 | 1 | 1.533e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.39463571237014 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.37794160476975164, dt = 0.0013984973366044388 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.4%)
patch tree reduce : 1472.00 ns (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1453.00 ns (0.4%)
LB compute : 347.20 us (95.0%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6633370624900103
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9098548961346852e-05,-3.6156932096179373e-07,-1.4384011230928103e-10)
sum a = (4.9387467500108626e-06,-3.128431411958226e-06,-4.002694129203239e-09)
sum e = 0.010099868818448977
sum de = 0.0003621539932833431
Info: CFL hydro = 0.0014357919307960792 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014357919307960792 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1609e+04 | 12514 | 1 | 1.533e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.83253746119693 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3793401021063561, dt = 0.0014357919307960792 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.7%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 315.25 us (94.4%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6645357199936073
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9091294793896028e-05,-3.6601069408413913e-07,-1.4990929699384048e-10)
sum a = (5.1834135153622195e-06,-3.109635292624739e-06,-4.279230414578415e-09)
sum e = 0.010098030003383114
sum de = 0.0003599556419205188
Info: CFL hydro = 0.001409493725587354 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001409493725587354 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.3686e+04 | 12514 | 1 | 1.698e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.435521141988072 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3807758940371522, dt = 0.001409493725587354 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.8%)
patch tree reduce : 1804.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1293.00 ns (0.4%)
LB compute : 317.47 us (94.3%)
LB move op cnt : 0
LB apply : 3.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6599808214799414
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9083813159785143e-05,-3.7038021185957e-07,-1.5613936969706601e-10)
sum a = (5.4469148421135614e-06,-3.098424413084644e-06,-4.804999688405174e-09)
sum e = 0.010096197138147913
sum de = 0.00035742132714721754
Info: CFL hydro = 0.0014558029021150911 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014558029021150911 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.4863e+04 | 12514 | 1 | 1.672e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.355570604408918 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3821853877627395, dt = 0.0014558029021150911 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.4%)
patch tree reduce : 1704.00 ns (0.5%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1073.00 ns (0.3%)
LB compute : 336.63 us (94.9%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6559053859677153
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9075697823617053e-05,-3.7488300627979603e-07,-1.6350503643454436e-10)
sum a = (5.703733693700756e-06,-3.1249946559031297e-06,-5.432452953486221e-09)
sum e = 0.010094380289671202
sum de = 0.00035500081206233205
Info: CFL hydro = 0.0014857301939901282 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014857301939901282 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2474e+04 | 12514 | 1 | 1.517e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.54010531185416 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.38364119066485464, dt = 0.0014857301939901282 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.8%)
patch tree reduce : 1513.00 ns (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 285.16 us (94.2%)
LB move op cnt : 0
LB apply : 3.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.65470672846412
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9067036675435203e-05,-3.795452457144255e-07,-1.7203291995692496e-10)
sum a = (5.949233365320005e-06,-3.1780792461689695e-06,-5.917041914944197e-09)
sum e = 0.01009253299239783
sum de = 0.0003523727684815556
Info: CFL hydro = 0.0014707570684407878 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014707570684407878 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2010e+04 | 12514 | 1 | 1.526e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.05199581965913 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.38512692085884476, dt = 0.0014707570684407878 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (2.0%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1021.00 ns (0.3%)
LB compute : 294.79 us (93.7%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6561451174684363
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9058104425273942e-05,-3.842588629191608e-07,-1.810954354035359e-10)
sum a = (6.206687824242067e-06,-3.2429531667583247e-06,-6.379773504181899e-09)
sum e = 0.010090684940778756
sum de = 0.00034965442905964407
Info: CFL hydro = 0.001468101049384724 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001468101049384724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2239e+04 | 12514 | 1 | 1.522e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.795841106254386 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.38659767792728555, dt = 0.001468101049384724 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.7%)
patch tree reduce : 1423.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.3%)
LB compute : 305.70 us (94.6%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1913.00 ns (66.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6566245804698756
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9048803053883264e-05,-3.8906755275529323e-07,-1.9080187045774237e-10)
sum a = (6.450467288187887e-06,-3.3604128717153285e-06,-6.860072837651504e-09)
sum e = 0.010088862662219592
sum de = 0.00034703776165503724
Info: CFL hydro = 0.0014771100346276478 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014771100346276478 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1811e+04 | 12514 | 1 | 1.530e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.552000599421085 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3880657789766703, dt = 0.0014771100346276478 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.7%)
patch tree reduce : 1593.00 ns (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 319.60 us (94.6%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6561451174684345
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9039096057480392e-05,-3.9411747368636655e-07,-2.012875168621305e-10)
sum a = (6.662448688848767e-06,-3.5221194423903303e-06,-6.903316898838403e-09)
sum e = 0.010087048515926416
sum de = 0.00034442763219741444
Info: CFL hydro = 0.0014813385712962566 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014813385712962566 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1618e+04 | 12514 | 1 | 1.533e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.68190168265609 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3895428890112979, dt = 0.0014813385712962566 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.7%)
patch tree reduce : 1513.00 ns (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 315.74 us (94.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.653747802461244
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9029070155331367e-05,-3.9945435426830257e-07,-2.1154560457254325e-10)
sum a = (6.780065130035914e-06,-3.7157509901312536e-06,-7.21849739097165e-09)
sum e = 0.01008523180597914
sum de = 0.00034160923117644093
Info: CFL hydro = 0.0015026847815591828 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015026847815591828 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4838e+04 | 12514 | 1 | 2.282e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.369149586500658 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.39102422758259414, dt = 0.0015026847815591828 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.5%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 355.35 us (95.2%)
LB move op cnt : 0
LB apply : 3.30 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6535080709605254
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9018794739757067e-05,-4.051813736735091e-07,-2.2262617525756875e-10)
sum a = (6.753768125135453e-06,-3.90220684490017e-06,-7.299413950837595e-09)
sum e = 0.010083404581413848
sum de = 0.00033852273835246934
Info: CFL hydro = 0.0015024858572648939 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015024858572648939 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2175e+04 | 12514 | 1 | 1.523e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.5233450600442 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3925269123641533, dt = 0.0015024858572648939 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.8%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 298.79 us (93.7%)
LB move op cnt : 0
LB apply : 3.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.649672366949019
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.900866705672023e-05,-4.1118447645773617e-07,-2.336542375267544e-10)
sum a = (6.6499529189467376e-06,-4.027362517415329e-06,-7.485079109494282e-09)
sum e = 0.010081558904741075
sum de = 0.0003350642069086448
Info: CFL hydro = 0.001497961178471333 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001497961178471333 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.4188e+04 | 12514 | 1 | 1.687e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.06620850557765 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3940293982214182, dt = 0.001497961178471333 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.7%)
patch tree reduce : 1634.00 ns (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 323.10 us (94.5%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6508710244526137
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8998783675848705e-05,-4.1731133147432504e-07,-2.450060750880671e-10)
sum a = (6.460894625895623e-06,-4.116208386881015e-06,-7.472648695993618e-09)
sum e = 0.010079707985485388
sum de = 0.00033149483436384423
Info: CFL hydro = 0.001446850626007078 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001446850626007078 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2057e+04 | 12514 | 1 | 1.525e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.36102270715302 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.39552735939988953, dt = 0.001446850626007078 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.99 us (1.5%)
patch tree reduce : 1923.00 ns (0.6%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 309.86 us (94.5%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6491929039475792
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.898957732740635e-05,-4.2333341398725085e-07,-2.558085713934104e-10)
sum a = (6.287443913964482e-06,-4.180367131590207e-06,-7.375250141093601e-09)
sum e = 0.010077872390100518
sum de = 0.00032784144850204447
Info: CFL hydro = 0.0014490826264844609 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014490826264844609 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1777e+04 | 12514 | 1 | 1.530e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.0377695113874 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3969742100258966, dt = 0.0014490826264844609 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 1572.00 ns (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 303.14 us (94.4%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1943.00 ns (66.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6530286079590844
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8980591780301098e-05,-4.294375254300955e-07,-2.6642545765850855e-10)
sum a = (6.131616796944232e-06,-4.255572609542323e-06,-6.986140408565671e-09)
sum e = 0.010076055743307444
sum de = 0.00032440731765264017
Info: CFL hydro = 0.0014622588327545354 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014622588327545354 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2241e+04 | 12514 | 1 | 1.522e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.28385869407265 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3984232926523811, dt = 0.0014622588327545354 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.5%)
patch tree reduce : 1794.00 ns (0.5%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 328.41 us (95.0%)
LB move op cnt : 0
LB apply : 3.18 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6525491449576477
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8971738672664714e-05,-4.357147635423778e-07,-2.7635907710119543e-10)
sum a = (5.948154244572244e-06,-4.385386709335166e-06,-6.610336796718971e-09)
sum e = 0.010074207265054059
sum de = 0.0003210538919110385
Info: CFL hydro = 0.0014873259120090896 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014873259120090896 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1780e+04 | 12514 | 1 | 1.530e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.40131739315048 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3998855514851356, dt = 0.0001144485148644736 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (2.0%)
patch tree reduce : 1613.00 ns (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 285.62 us (94.0%)
LB move op cnt : 0
LB apply : 3.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6532683394598062
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8971192050113898e-05,-4.3631157544547153e-07,-2.76840859254949e-10)
sum a = (5.946813843430328e-06,-4.422709525750402e-06,-6.585292311264236e-09)
sum e = 0.010073523851223565
sum de = 0.00031847373660648035
Info: CFL hydro = 0.0014948876226655954 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014948876226655954 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.5527e+04 | 12514 | 1 | 1.463e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8159122740027476 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 287 [SPH][rank=0]
Info: time since start : 114.42643495600001 (s) [SPH][rank=0]
Info: dump to orztang_00016.vtk [VTK Dump][rank=0]
- took 2.30 ms, bandwidth = 290.73 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 920.22 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 907.07 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000016.npy
Saving metadata to plots/rho_slice_0000016.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 918.01 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000016.npy
Saving metadata to plots/vy_slice_0000016.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.006622553000000001 s
Info: compute_slice took 914.37 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000016.npy
Saving metadata to plots/By_slice_0000016.json
---------------- t = 0.4000000000000001, dt = 0.0014948876226655954 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.15 us (2.5%)
patch tree reduce : 1744.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 424.88 us (94.3%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.653987533961963
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8962302308408655e-05,-4.4292516494472956e-07,-2.8668369807082123e-10)
sum a = (5.693871905529118e-06,-4.577109115680606e-06,-6.226614150369554e-09)
sum e = 0.010072143942326502
sum de = 0.00031791511699951597
Info: CFL hydro = 0.001488413594465288 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001488413594465288 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1605e+04 | 12514 | 1 | 1.533e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.093929465616434 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.40149488762266566, dt = 0.001488413594465288 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.8%)
patch tree reduce : 1472.00 ns (0.5%)
gen split merge : 821.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 298.23 us (94.2%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.652788876458366
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8954016531945573e-05,-4.4985320139380164e-07,-2.956833834478638e-10)
sum a = (5.4549418472952206e-06,-4.7599353352755135e-06,-5.674922723845463e-09)
sum e = 0.010070182659358815
sum de = 0.00031467866061748984
Info: CFL hydro = 0.0015199361923019326 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015199361923019326 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2342e+04 | 12514 | 1 | 1.520e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.25741105180639 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.40298330121713094, dt = 0.0015199361923019326 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.9%)
patch tree reduce : 1523.00 ns (0.5%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.4%)
LB compute : 299.92 us (94.1%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6527888764583656
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8945903181778203e-05,-4.5722405989822415e-07,-3.03898331374822e-10)
sum a = (5.1855282065121565e-06,-4.980293789500627e-06,-5.245535605089259e-09)
sum e = 0.010068155211768813
sum de = 0.00031201251980224917
Info: CFL hydro = 0.001437414690501528 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001437414690501528 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.9257e+04 | 12514 | 1 | 1.579e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.65516167670685 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4045032374094329, dt = 0.001437414690501528 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.6%)
patch tree reduce : 1994.00 ns (0.6%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 331.92 us (94.7%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.652788876458366
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8938654173127988e-05,-4.6455027274904034e-07,-3.111120208019198e-10)
sum a = (4.940287065787311e-06,-5.24685916728735e-06,-5.2797612978823796e-09)
sum e = 0.010066107845439123
sum de = 0.0003094318407750547
Info: CFL hydro = 0.0014741483498019506 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014741483498019506 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1300e+04 | 12514 | 1 | 1.539e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.61861882324109 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4059406520999344, dt = 0.0014741483498019506 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.6%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 337.54 us (94.8%)
LB move op cnt : 0
LB apply : 3.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.653268339459804
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.893154771371161e-05,-4.7247650402738143e-07,-3.1891977046351927e-10)
sum a = (4.687541815062941e-06,-5.543865227797517e-06,-5.140672927462429e-09)
sum e = 0.0100640409226832
sum de = 0.00030742298854218215
Info: CFL hydro = 0.0015156376368532954 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015156376368532954 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6688e+04 | 12514 | 1 | 2.208e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.040085877159758 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4074148004497364, dt = 0.0015156376368532954 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.6%)
patch tree reduce : 1713.00 ns (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 320.34 us (94.5%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6523094134569285
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.892462939090948e-05,-4.810979103171761e-07,-3.2660864938526347e-10)
sum a = (4.37058107157951e-06,-5.830156147503514e-06,-4.868132429040001e-09)
sum e = 0.010061858276002675
sum de = 0.0003055320607260564
Info: CFL hydro = 0.001558463816552954 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001558463816552954 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1521e+04 | 12514 | 1 | 1.535e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.54426949607439 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4089304380865897, dt = 0.001558463816552954 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.6%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 304.94 us (94.5%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6530286079590852
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.89180581972681e-05,-4.904009543644037e-07,-3.3398892131149124e-10)
sum a = (4.046533916118912e-06,-6.10989440774842e-06,-4.677250683226962e-09)
sum e = 0.010059544629279065
sum de = 0.0003038535900019999
Info: CFL hydro = 0.0014480736172409428 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014480736172409428 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.5014e+04 | 12514 | 1 | 1.668e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.63146059820788 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41048890190314263, dt = 0.0014480736172409428 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.4%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 341.37 us (95.1%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (72.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6499120984497364
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.891245102614616e-05,-4.994665122386811e-07,-3.406131834801132e-10)
sum a = (3.7161127993190217e-06,-6.321334086882474e-06,-4.593366696505391e-09)
sum e = 0.010057217762505406
sum de = 0.0003022187910121842
Info: CFL hydro = 0.0014815315450070964 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014815315450070964 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.8974e+04 | 12514 | 1 | 1.585e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.89879459933481 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41193697552038355, dt = 0.0014815315450070964 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (0.9%)
patch tree reduce : 1402.00 ns (0.2%)
gen split merge : 771.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 632.89 us (97.1%)
LB move op cnt : 0
LB apply : 3.27 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6472750519418264
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.890718472486017e-05,-5.089848582053363e-07,-3.473576660447987e-10)
sum a = (3.3759440044644473e-06,-6.466182063810012e-06,-4.292042738527993e-09)
sum e = 0.01005487242492698
sum de = 0.0003014347821597088
Info: CFL hydro = 0.0015257204303230434 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015257204303230434 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2174e+04 | 12514 | 1 | 1.523e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.022913319317944 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41341850706539063, dt = 0.0015257204303230434 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.6%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 333.45 us (94.9%)
LB move op cnt : 0
LB apply : 3.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.647514783442545
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8902285963521085e-05,-5.189577427099363e-07,-3.536829128641523e-10)
sum a = (3.0783855444719194e-06,-6.529837611112852e-06,-4.443755108757144e-09)
sum e = 0.010052393433770202
sum de = 0.00030093359221011057
Info: CFL hydro = 0.0015522857784048632 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015522857784048632 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1310e+04 | 12514 | 1 | 1.539e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.68826321454397 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4149442274957137, dt = 0.0015522857784048632 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.8%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 305.61 us (94.6%)
LB move op cnt : 0
LB apply : 3.07 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.643918810931756
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.889773442493078e-05,-5.291424770534448e-07,-3.606966260535968e-10)
sum a = (2.826512675411091e-06,-6.521681368644778e-06,-4.539899335190585e-09)
sum e = 0.0100497835108308
sum de = 0.00030063449074249865
Info: CFL hydro = 0.001544360675774086 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001544360675774086 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6800e+04 | 12514 | 1 | 1.873e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.82991883939969 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4164965132741186, dt = 0.001544360675774086 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.7%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1143.00 ns (0.3%)
LB compute : 322.19 us (94.6%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.640802301422407
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8893564759241838e-05,-5.392079748895364e-07,-3.677824897165373e-10)
sum a = (2.633419892478833e-06,-6.4378623125518e-06,-4.953780958412575e-09)
sum e = 0.010047088871335881
sum de = 0.00030028438959353154
Info: CFL hydro = 0.0015197635499943573 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015197635499943573 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8312e+04 | 12514 | 1 | 1.832e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.349588594671445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41804087394989264, dt = 0.0015197635499943573 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.5%)
patch tree reduce : 1743.00 ns (0.5%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 313.72 us (94.6%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6412817644238458
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8889711686127468e-05,-5.489272799450673e-07,-3.7563065670351193e-10)
sum a = (2.4643943271235494e-06,-6.36261033351302e-06,-5.606967024537789e-09)
sum e = 0.010044357289112476
sum de = 0.00029979973115407414
Info: CFL hydro = 0.0015603193518760764 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015603193518760764 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1493e+04 | 12514 | 1 | 1.536e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.62875624136472 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.419560637499887, dt = 0.0015603193518760764 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.7%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 304.83 us (94.4%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1944.00 ns (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6403228384209685
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8885994883414878e-05,-5.587978013694458e-07,-3.848756600446015e-10)
sum a = (2.347365784006783e-06,-6.248602545541592e-06,-5.763270637444807e-09)
sum e = 0.010041536916139232
sum de = 0.0002992286492657213
Info: CFL hydro = 0.0015634468230873559 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015634468230873559 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.5332e+04 | 12514 | 1 | 1.661e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.81434019200877 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.42112095685176304, dt = 0.0015634468230873559 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 1583.00 ns (0.5%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 325.45 us (94.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.642480421927442
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8882416202787614e-05,-5.684782148889728e-07,-3.940081689891693e-10)
sum a = (2.3117234478389225e-06,-6.096953747325969e-06,-5.958251650515155e-09)
sum e = 0.010038626712286154
sum de = 0.0002982050182717889
Info: CFL hydro = 0.0015780311733989074 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015780311733989074 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.1403e+04 | 12514 | 1 | 1.753e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.11471439732215 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4226844036748504, dt = 0.0015780311733989074 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.8%)
patch tree reduce : 1543.00 ns (0.5%)
gen split merge : 801.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 298.23 us (94.4%)
LB move op cnt : 0
LB apply : 3.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.641761227425284
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.887879609357112e-05,-5.779808505491536e-07,-4.0356289705537924e-10)
sum a = (2.2831192452806716e-06,-5.938713645857539e-06,-6.441607492842723e-09)
sum e = 0.010035645774586214
sum de = 0.0002968842871794548
Info: CFL hydro = 0.0015947905770161076 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015947905770161076 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.1423e+04 | 12514 | 1 | 1.752e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.42368522727917 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.42426243484824927, dt = 0.0007375651517508297 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 1363.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 303.09 us (94.6%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.643918810931757
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8877134713540154e-05,-5.822361848741615e-07,-4.086953775569763e-10)
sum a = (2.2660075866284537e-06,-5.8887625647281235e-06,-6.661173115564306e-09)
sum e = 0.010033773526391733
sum de = 0.00029434449268041056
Info: CFL hydro = 0.001598665798491838 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001598665798491838 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4278e+04 | 12514 | 1 | 2.306e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.51666969754439 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 304 [SPH][rank=0]
Info: time since start : 121.17744034500001 (s) [SPH][rank=0]
Info: dump to orztang_00017.vtk [VTK Dump][rank=0]
- took 2.24 ms, bandwidth = 298.23 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 914.71 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 917.78 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000017.npy
Saving metadata to plots/rho_slice_0000017.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 916.77 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000017.npy
Saving metadata to plots/vy_slice_0000017.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005605212 s
Info: compute_slice took 918.46 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000017.npy
Saving metadata to plots/By_slice_0000017.json
---------------- t = 0.4250000000000001, dt = 0.001598665798491838 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.71 us (2.2%)
patch tree reduce : 1873.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 426.80 us (94.9%)
LB move op cnt : 0
LB apply : 3.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6424804219274414
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8873518435193874e-05,-5.916319270933847e-07,-4.194253391705217e-10)
sum a = (2.325312842623822e-06,-5.747123791919741e-06,-6.772804842130282e-09)
sum e = 0.010031143179120443
sum de = 0.0002947447817153925
Info: CFL hydro = 0.0016008577874534063 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016008577874534063 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2554e+04 | 12514 | 1 | 1.516e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.96667219800464 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4265986657984919, dt = 0.0016008577874534063 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.7%)
patch tree reduce : 1553.00 ns (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 314.44 us (94.5%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (71.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6379255234137755
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.886974853537927e-05,-6.00719038440246e-07,-4.3035686745650437e-10)
sum a = (2.380985826498875e-06,-5.500698279757217e-06,-7.103635970009462e-09)
sum e = 0.010028022809160235
sum de = 0.0002923151962946373
Info: CFL hydro = 0.0016151684201304397 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016151684201304397 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.0487e+04 | 12514 | 1 | 1.775e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.461317097975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4281995235859453, dt = 0.0016151684201304397 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 1774.00 ns (0.5%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.4%)
LB compute : 319.98 us (94.4%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (71.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6352884769058655
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.886585827999869e-05,-6.094063464903859e-07,-4.4209524273708134e-10)
sum a = (2.4878041402259553e-06,-5.214582362385484e-06,-7.4040135875349886e-09)
sum e = 0.010024851993069024
sum de = 0.00028983642973878814
Info: CFL hydro = 0.0015125567405687107 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015125567405687107 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2900e+04 | 12514 | 1 | 1.510e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.5194640302526 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.42981469200607575, dt = 0.0015125567405687107 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.6%)
patch tree reduce : 1323.00 ns (0.4%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.4%)
LB compute : 297.81 us (94.5%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.633610356400831
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.886200907029367e-05,-6.170626354944625e-07,-4.535368136171841e-10)
sum a = (2.659517485395241e-06,-5.056750345867416e-06,-7.692279466160145e-09)
sum e = 0.010021785597267317
sum de = 0.00028690577341356144
Info: CFL hydro = 0.001519963272043716 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001519963272043716 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.7452e+04 | 12514 | 1 | 1.616e-01 | 0.0% | 1.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.7015940704561 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.43132724874664446, dt = 0.001519963272043716 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.7%)
patch tree reduce : 1883.00 ns (0.6%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 319.11 us (94.5%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6348090139044276
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.885783683830564e-05,-6.246293453560623e-07,-4.6544680513264267e-10)
sum a = (2.8328598505623493e-06,-4.94874249032217e-06,-7.81485746270032e-09)
sum e = 0.01001877476847778
sum de = 0.00028412064667862207
Info: CFL hydro = 0.001538182802649892 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001538182802649892 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.1587e+04 | 12514 | 1 | 1.748e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.302017181489326 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4328472120186882, dt = 0.001538182802649892 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.9%)
patch tree reduce : 1152.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 314.32 us (94.3%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.634809013904428
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.885334764498704e-05,-6.32159331962683e-07,-4.775606415134399e-10)
sum a = (2.9803412491352835e-06,-4.803955552787659e-06,-7.539505696604714e-09)
sum e = 0.010015735461119434
sum de = 0.0002810733797539941
Info: CFL hydro = 0.0015693932393084176 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015693932393084176 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1471e+04 | 12514 | 1 | 1.536e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.05117422372127 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4343853948213381, dt = 0.0015693932393084176 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.7%)
patch tree reduce : 1382.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1193.00 ns (0.4%)
LB compute : 308.19 us (94.4%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.635767939907304
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8848556890904135e-05,-6.395872729403509e-07,-4.891813201057235e-10)
sum a = (3.104189559600837e-06,-4.646489425605976e-06,-7.20552981304852e-09)
sum e = 0.010012647506951446
sum de = 0.0002779254088969396
Info: CFL hydro = 0.0015997732375335593 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015997732375335593 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2934e+04 | 12514 | 1 | 1.509e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.442865618070314 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4359547880606465, dt = 0.0015997732375335593 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.7%)
patch tree reduce : 1393.00 ns (0.5%)
gen split merge : 1202.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.4%)
LB compute : 289.76 us (94.2%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6331308933993927
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.884349370817191e-05,-6.468970392343476e-07,-5.00446464115778e-10)
sum a = (3.227663105205728e-06,-4.4615673299953215e-06,-6.591083393894062e-09)
sum e = 0.010009508385293228
sum de = 0.00027476881203323964
Info: CFL hydro = 0.0016036741184477733 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016036741184477733 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2166e+04 | 12514 | 1 | 1.523e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.81460046747975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4375545612981801, dt = 0.0016036741184477733 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.7%)
patch tree reduce : 1273.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.4%)
LB compute : 297.08 us (94.4%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6319322358957966
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8838218823550153e-05,-6.53904022579351e-07,-5.105249264984986e-10)
sum a = (3.30761087188399e-06,-4.299857702222534e-06,-5.638328006359917e-09)
sum e = 0.010006356388805863
sum de = 0.0002716208692816904
Info: CFL hydro = 0.0015827847337492775 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015827847337492775 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.3224e+04 | 12514 | 1 | 1.709e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.78110404113903 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.43915823541662785, dt = 0.0015827847337492775 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.6%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 334.95 us (94.8%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (71.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6295349208886036
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.883291948247498e-05,-6.605801069354486e-07,-5.1868523141244e-10)
sum a = (3.383822472756366e-06,-4.148330759334786e-06,-4.6838135536267495e-09)
sum e = 0.010003244477854913
sum de = 0.000268567417867126
Info: CFL hydro = 0.0015851739171326806 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015851739171326806 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6009e+04 | 12514 | 1 | 1.896e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.056040879756807 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.44074102015037714, dt = 0.0015851739171326806 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.7%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1573.00 ns (0.5%)
LB compute : 329.74 us (94.6%)
LB move op cnt : 0
LB apply : 3.16 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (75.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6273773373821316
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8827495222071675e-05,-6.670360153885158e-07,-5.253544950383326e-10)
sum a = (3.4851755997741384e-06,-4.000651143618271e-06,-4.181678220936818e-09)
sum e = 0.010000163033948158
sum de = 0.00026565845638295074
Info: CFL hydro = 0.001600776861272193 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001600776861272193 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8857e+04 | 12514 | 1 | 1.817e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.399987001620616 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.44232619406750984, dt = 0.001600776861272193 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.5%)
patch tree reduce : 1352.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 346.04 us (94.9%)
LB move op cnt : 0
LB apply : 3.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (73.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.627377337382131
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8821835902447275e-05,-6.733231162319392e-07,-5.316504428595511e-10)
sum a = (3.6068113960965573e-06,-3.8506860885658965e-06,-3.024817056278807e-09)
sum e = 0.009997082182874498
sum de = 0.000262734618135364
Info: CFL hydro = 0.0015736630416200961 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015736630416200961 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1430e+04 | 12514 | 1 | 1.537e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.49901239083107 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.443926970928782, dt = 0.0015736630416200961 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.6%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.3%)
LB compute : 350.07 us (94.9%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.626178679878536
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.881606264077108e-05,-6.792627683194769e-07,-5.354845473766055e-10)
sum a = (3.830204403390116e-06,-3.692165087315454e-06,-1.9482216023112806e-09)
sum e = 0.009994046762775316
sum de = 0.00025974133906841567
Info: CFL hydro = 0.0015914405825121734 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015914405825121734 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1400e+04 | 12514 | 1 | 1.537e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.85061328411042 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4455006339704021, dt = 0.0015914405825121734 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.6%)
patch tree reduce : 1873.00 ns (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 331.88 us (94.6%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6268978743806937
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.880979132538454e-05,-6.850139003560788e-07,-5.377379270596136e-10)
sum a = (4.16954193905214e-06,-3.5558095700881428e-06,-8.088138674753242e-10)
sum e = 0.009991031383345941
sum de = 0.0002569215275432775
Info: CFL hydro = 0.0015715060207161713 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015715060207161713 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.9239e+04 | 12514 | 1 | 1.807e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.6993557081123 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4470920745529143, dt = 0.0015715060207161713 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.5%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 351.98 us (95.2%)
LB move op cnt : 0
LB apply : 3.16 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.624500559373501
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.880296884736091e-05,-6.904933756520272e-07,-5.381023330674287e-10)
sum a = (4.487442353834278e-06,-3.516409091980656e-06,1.4183993943280597e-10)
sum e = 0.009988053609568956
sum de = 0.0002541105559581333
Info: CFL hydro = 0.0016133806328158414 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016133806328158414 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1427e+04 | 12514 | 1 | 1.537e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.81228438010092 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4486635805736304, dt = 0.001336419426369695 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.6%)
patch tree reduce : 1623.00 ns (0.5%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.4%)
LB compute : 318.01 us (94.6%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6254594853763793
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8796721951016667e-05,-6.951618140294263e-07,-5.37165796326343e-10)
sum a = (4.757453817912701e-06,-3.4867733758984422e-06,1.0052303387416491e-09)
sum e = 0.009985405293758588
sum de = 0.00025129596382677356
Info: CFL hydro = 0.0016494985153961412 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016494985153961412 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.9523e+04 | 12514 | 1 | 1.574e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.573300758637117 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 320 [SPH][rank=0]
Info: time since start : 127.65147594800001 (s) [SPH][rank=0]
Info: dump to orztang_00018.vtk [VTK Dump][rank=0]
- took 2.45 ms, bandwidth = 272.63 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 929.81 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 934.72 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000018.npy
Saving metadata to plots/rho_slice_0000018.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 925.71 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000018.npy
Saving metadata to plots/vy_slice_0000018.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005768296 s
Info: compute_slice took 931.32 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000018.npy
Saving metadata to plots/By_slice_0000018.json
---------------- t = 0.4500000000000001, dt = 0.0016494985153961412 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.48 us (2.6%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 1253.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 375.49 us (93.9%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.624260827872782
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.878869411372405e-05,-7.008934386632404e-07,-5.34930744523776e-10)
sum a = (5.01148952310984e-06,-3.5022799477719317e-06,1.5349942584064118e-09)
sum e = 0.009982538813457053
sum de = 0.00024953782033574213
Info: CFL hydro = 0.0015914305720091477 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015914305720091477 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2877e+04 | 12514 | 1 | 1.510e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.32707588911318 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.45164949851539626, dt = 0.0015914305720091477 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.70 us (1.5%)
patch tree reduce : 1011.00 ns (0.3%)
gen split merge : 1011.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1472.00 ns (0.5%)
LB compute : 301.19 us (94.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.624260827872782
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8780509160326297e-05,-7.064798630775086e-07,-5.320509853332576e-10)
sum a = (5.191774975767569e-06,-3.6164127372684965e-06,1.2551392645937203e-09)
sum e = 0.009979574425629011
sum de = 0.0002467133016407086
Info: CFL hydro = 0.001597912789376665 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001597912789376665 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0561e+04 | 12514 | 1 | 1.553e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.88256403002016 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.45324092908740543, dt = 0.001597912789376665 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.6%)
patch tree reduce : 1182.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 305.79 us (95.0%)
LB move op cnt : 0
LB apply : 2.67 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6249800223749404
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8772069700802475e-05,-7.123493924470232e-07,-5.302680671465837e-10)
sum a = (5.280844489538058e-06,-3.869668766591394e-06,2.3502146578395965e-09)
sum e = 0.009976663089378538
sum de = 0.000244264545094401
Info: CFL hydro = 0.0016175475074374016 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016175475074374016 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1714e+04 | 12514 | 1 | 2.028e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.369053004812972 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4548388418767821, dt = 0.0016175475074374016 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.6%)
patch tree reduce : 1502.00 ns (0.5%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 311.26 us (94.7%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.624740290874219
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.876345652130361e-05,-7.18811106039364e-07,-5.255915657967876e-10)
sum a = (5.347764053178215e-06,-4.236287783992513e-06,3.2048374213913475e-09)
sum e = 0.009973751522708844
sum de = 0.0002418094767480225
Info: CFL hydro = 0.0016511936451010245 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016511936451010245 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2263e+04 | 12514 | 1 | 1.521e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.27970790669647 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4564563893842195, dt = 0.0016511936451010245 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.95 us (1.6%)
patch tree reduce : 1463.00 ns (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.4%)
LB compute : 300.86 us (94.6%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.619466197858399
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8754572204496886e-05,-7.261025493457589e-07,-5.196085621526042e-10)
sum a = (5.429512431761547e-06,-4.750422534214143e-06,3.873941663855114e-09)
sum e = 0.009970815354625929
sum de = 0.00023933054730531695
Info: CFL hydro = 0.0016624971911912815 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016624971911912815 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.9459e+04 | 12514 | 1 | 1.802e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.993866996279245 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.45810758302932053, dt = 0.0016624971911912815 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.5%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 333.46 us (95.0%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6158702253476123
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8745478164127957e-05,-7.344245814821299e-07,-5.126157346811685e-10)
sum a = (5.560675025115072e-06,-5.4171106571978815e-06,4.536899816714093e-09)
sum e = 0.009967870139893113
sum de = 0.00023676079246888574
Info: CFL hydro = 0.0015672324982499552 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015672324982499552 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3670e+04 | 12514 | 1 | 1.965e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.450985650914774 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4597700802205118, dt = 0.0015672324982499552 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (1.3%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 337.08 us (95.1%)
LB move op cnt : 0
LB apply : 3.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.611315326833946
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.873665426479482e-05,-7.434686369168369e-07,-5.049542748136576e-10)
sum a = (5.7616352473887285e-06,-6.162000155932949e-06,4.806677513493782e-09)
sum e = 0.009965045655187948
sum de = 0.00023409980411779244
Info: CFL hydro = 0.0015937605476666842 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015937605476666842 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2581e+04 | 12514 | 1 | 1.515e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.23229592971739 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.46133731271876177, dt = 0.0015937605476666842 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 27.97 us (8.2%)
patch tree reduce : 1342.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.4%)
LB compute : 301.25 us (88.1%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6096372063289133
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8727314122151984e-05,-7.538730971750122e-07,-4.970821796403906e-10)
sum a = (6.020933261406154e-06,-7.043811267282006e-06,5.126405901891379e-09)
sum e = 0.009962275316755661
sum de = 0.00023181558337696283
Info: CFL hydro = 0.0016329898226056236 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016329898226056236 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2189e+04 | 12514 | 1 | 1.523e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.68286946383817 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.46293107326642846, dt = 0.0016329898226056236 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.6%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 330.20 us (94.7%)
LB move op cnt : 0
LB apply : 3.25 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6065206968195636
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8717275369940945e-05,-7.66078267166697e-07,-4.88456025730333e-10)
sum a = (6.306516563090112e-06,-8.074463261985245e-06,4.6271282843096e-09)
sum e = 0.009959468404596742
sum de = 0.0002295475645253152
Info: CFL hydro = 0.0015937425336438702 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015937425336438702 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1892e+04 | 12514 | 1 | 1.528e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.47096301015739 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4645640630890341, dt = 0.0015937425336438702 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (2.0%)
patch tree reduce : 1663.00 ns (0.5%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.4%)
LB compute : 285.57 us (93.8%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6050823078152465
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8706991228942693e-05,-7.797884048125953e-07,-4.814892322090503e-10)
sum a = (6.588812814516425e-06,-9.19905236876204e-06,4.447347311288254e-09)
sum e = 0.009956699306599348
sum de = 0.0002272906769823042
Info: CFL hydro = 0.0016229925307084077 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016229925307084077 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8114e+04 | 12514 | 1 | 1.837e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.22937709703083 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.46615780562267795, dt = 0.0016229925307084077 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.6%)
patch tree reduce : 1583.00 ns (0.5%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 319.33 us (94.5%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (71.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.607479622822439
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8696072681187083e-05,-7.956145508430338e-07,-4.744144830331405e-10)
sum a = (6.894720754306746e-06,-1.0336107449151899e-05,5.067520550461603e-09)
sum e = 0.009953944496759161
sum de = 0.00022531422937514125
Info: CFL hydro = 0.001664557691552942 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001664557691552942 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2711e+04 | 12514 | 1 | 1.513e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.61765496000395 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.46778079815338636, dt = 0.001664557691552942 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.8%)
patch tree reduce : 1593.00 ns (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 305.12 us (94.4%)
LB move op cnt : 0
LB apply : 3.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.608918011826752
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.868434777757361e-05,-8.13742313949205e-07,-4.6547603445639613e-10)
sum a = (7.221433259274957e-06,-1.148052692680923e-05,4.793981393110094e-09)
sum e = 0.009951149757924055
sum de = 0.00022338064415776456
Info: CFL hydro = 0.0017202094614297747 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017202094614297747 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1361e+04 | 12514 | 1 | 1.538e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.96007960728643 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4694453558449393, dt = 0.0017202094614297747 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.5%)
patch tree reduce : 1703.00 ns (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 351.88 us (95.0%)
LB move op cnt : 0
LB apply : 4.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6079590858238766
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.867165348384943e-05,-8.344437011130125e-07,-4.5745704316028674e-10)
sum a = (7.63178345809389e-06,-1.2630525605365125e-05,4.162292949524557e-09)
sum e = 0.009948294000233181
sum de = 0.0002214552688583802
Info: CFL hydro = 0.0017515211640536882 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017515211640536882 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.7387e+04 | 12514 | 1 | 1.617e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.29630670633853 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.47116556530636905, dt = 0.0017515211640536882 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 1964.00 ns (0.6%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 320.29 us (94.3%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6070001598209993
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8657933309455867e-05,-8.575554533276483e-07,-4.50710017187084e-10)
sum a = (8.091904115856688e-06,-1.3775724658083344e-05,2.9924781767154504e-09)
sum e = 0.00994539456335295
sum de = 0.0002194306072223159
Info: CFL hydro = 0.0016996706873750572 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016996706873750572 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8932e+04 | 12514 | 1 | 1.815e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.73318670329864 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.47291708647042274, dt = 0.0016996706873750572 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.7%)
patch tree reduce : 1683.00 ns (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 319.78 us (94.6%)
LB move op cnt : 0
LB apply : 3.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6050823078152456
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.864377678169014e-05,-8.819725689152582e-07,-4.466482674137328e-10)
sum a = (8.62481084675142e-06,-1.4873117516984973e-05,1.7000420205540902e-09)
sum e = 0.009942550222231412
sum de = 0.00021738120309405253
Info: CFL hydro = 0.0017358395059787098 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017358395059787098 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8523e+04 | 12514 | 1 | 1.826e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.50499377012291 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4746167571577978, dt = 0.00038324284220236926 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 1302.00 ns (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 314.83 us (94.8%)
LB move op cnt : 0
LB apply : 3.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6029247243087728
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8640018501692922e-05,-8.886051879823282e-07,-4.4709509640321307e-10)
sum a = (8.758824789756536e-06,-1.5096315622548353e-05,1.1128638038311656e-09)
sum e = 0.00994140545710763
sum de = 0.00021527542929928431
Info: CFL hydro = 0.0017423854936311797 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017423854936311797 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1920e+04 | 12514 | 1 | 1.528e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.031704637413158 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 336 [SPH][rank=0]
Info: time since start : 134.230705226 (s) [SPH][rank=0]
Info: dump to orztang_00019.vtk [VTK Dump][rank=0]
- took 2.48 ms, bandwidth = 269.34 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 940.80 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 931.22 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000019.npy
Saving metadata to plots/rho_slice_0000019.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 926.33 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000019.npy
Saving metadata to plots/vy_slice_0000019.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005430659 s
Info: compute_slice took 933.64 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000019.npy
Saving metadata to plots/By_slice_0000019.json
---------------- t = 0.47500000000000014, dt = 0.0017423854936311797 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.96 us (2.6%)
patch tree reduce : 1784.00 ns (0.4%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 396.89 us (94.2%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6012466038037383
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.862473157249576e-05,-9.14951558868318e-07,-4.4526857457927316e-10)
sum a = (9.31040677327127e-06,-1.6192340661258978e-05,-1.1242264472407296e-09)
sum e = 0.009939087114467868
sum de = 0.0002159466596649183
Info: CFL hydro = 0.0017425660505736267 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017425660505736267 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.7029e+04 | 12514 | 1 | 1.625e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.61045438087226 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.47674238549363135, dt = 0.0017425660505736267 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.7%)
patch tree reduce : 1663.00 ns (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 311.15 us (94.3%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (67.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.597890362793671
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8608027039512328e-05,-9.441226310483104e-07,-4.491765502200825e-10)
sum a = (9.87483293700264e-06,-1.7179443597146896e-05,-3.25823203338671e-09)
sum e = 0.009936265560513068
sum de = 0.00021384874381105972
Info: CFL hydro = 0.001731994125455547 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001731994125455547 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6384e+04 | 12514 | 1 | 1.885e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.27823552351129 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.47848495154420495, dt = 0.001731994125455547 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.6%)
patch tree reduce : 1293.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 325.14 us (94.9%)
LB move op cnt : 0
LB apply : 3.11 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.593095732779286
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.859043211194e-05,-9.747373724692463e-07,-4.566791118041613e-10)
sum a = (1.04191974305712e-05,-1.8066441907758002e-05,-5.0597450469770016e-09)
sum e = 0.00993347096043692
sum de = 0.00021237061737368595
Info: CFL hydro = 0.001724880488904103 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001724880488904103 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5345e+04 | 12514 | 1 | 2.261e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.576220096486974 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4802169456696605, dt = 0.001724880488904103 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.5%)
patch tree reduce : 1793.00 ns (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 344.68 us (94.8%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5899792232699363
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8571988823529506e-05,-1.0066679635516134e-06,-4.669666722927191e-10)
sum a = (1.0882001905601855e-05,-1.887838720407313e-05,-6.4804472435904995e-09)
sum e = 0.009930714517269975
sum de = 0.00021102340522206683
Info: CFL hydro = 0.0017145362722677461 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017145362722677461 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.9523e+04 | 12514 | 1 | 1.574e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.460293969658316 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4819418261585646, dt = 0.0017145362722677461 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.6%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 332.49 us (94.8%)
LB move op cnt : 0
LB apply : 3.26 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.58638325075915
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8552932095342968e-05,-1.0397358974747085e-06,-4.793029049020496e-10)
sum a = (1.1253760773244654e-05,-1.9608216246299238e-05,-7.748515167968481e-09)
sum e = 0.00992799644211583
sum de = 0.00020979363305498794
Info: CFL hydro = 0.001738490629866708 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001738490629866708 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.3081e+04 | 12514 | 1 | 1.712e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.04612128775502 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4836563624308324, dt = 0.001738490629866708 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.7%)
patch tree reduce : 1362.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.4%)
LB compute : 313.12 us (94.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.587342176762027
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8533048840656343e-05,-1.0744502568700407e-06,-4.938607001429821e-10)
sum a = (1.1509634401120172e-05,-2.024652803872887e-05,-9.623025516920387e-09)
sum e = 0.00992528505754999
sum de = 0.00020873524208163044
Info: CFL hydro = 0.0017642822997329265 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017642822997329265 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.3568e+04 | 12514 | 1 | 2.336e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.790462968072976 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.48539485306069907, dt = 0.0017642822997329265 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 28.76 us (6.6%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1093.00 ns (0.3%)
LB compute : 391.99 us (90.3%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (71.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5883011027649028
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8512520179453817e-05,-1.1107256974547304e-06,-5.124678430711979e-10)
sum a = (1.1663039886804539e-05,-2.075348447610792e-05,-1.0998784434759912e-08)
sum e = 0.009922559656568276
sum de = 0.0002077205591627583
Info: CFL hydro = 0.0017463357391540445 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017463357391540445 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.8677e+04 | 12514 | 1 | 1.591e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.93197887086389 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.487159135360432, dt = 0.0017463357391540445 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.6%)
patch tree reduce : 1673.00 ns (0.5%)
gen split merge : 1072.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 304.61 us (94.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (66.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.584944861754834
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8492017270780663e-05,-1.1474154562419892e-06,-5.328890269707236e-10)
sum a = (1.164988597954746e-05,-2.110922363866254e-05,-1.1765268529430368e-08)
sum e = 0.009919861410494512
sum de = 0.00020682038052862811
Info: CFL hydro = 0.0017686790933585561 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017686790933585561 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.9851e+04 | 12514 | 1 | 1.567e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.115945444549695 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.48890547109958604, dt = 0.0017686790933585561 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.5%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1402.00 ns (0.4%)
LB compute : 351.04 us (94.7%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.584705130254115
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8471423846577888e-05,-1.1850615187754517e-06,-5.543672807304523e-10)
sum a = (1.1477800915784117e-05,-2.1322123953681585e-05,-1.3100853937639485e-08)
sum e = 0.009917177980074736
sum de = 0.00020621017459264207
Info: CFL hydro = 0.0017770043317740937 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017770043317740937 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0890e+04 | 12514 | 1 | 1.547e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.15747258651051 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4906741501929446, dt = 0.0017770043317740937 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.7%)
patch tree reduce : 1673.00 ns (0.5%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1303.00 ns (0.4%)
LB compute : 331.75 us (94.7%)
LB move op cnt : 0
LB apply : 3.27 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5859037877577107
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8451179926258578e-05,-1.2231393015717258e-06,-5.788286659218617e-10)
sum a = (1.1164121888143325e-05,-2.140891642375225e-05,-1.3990841860029592e-08)
sum e = 0.009914500363646439
sum de = 0.00020570927734797701
Info: CFL hydro = 0.0017177139522745264 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017177139522745264 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1226e+04 | 12514 | 1 | 1.541e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.5232323995151 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.49245115452471866, dt = 0.0017177139522745264 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.7%)
patch tree reduce : 1593.00 ns (0.5%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 334.40 us (94.7%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (75.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.584705130254114
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.843228186282173e-05,-1.2599908113137084e-06,-6.036516863856938e-10)
sum a = (1.0754869337323181e-05,-2.137775673154947e-05,-1.341862247548191e-08)
sum e = 0.009911899560225663
sum de = 0.00020522347575528555
Info: CFL hydro = 0.0017545385482825827 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017545385482825827 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.0612e+04 | 12514 | 1 | 1.772e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.89301577185277 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4941688684769932, dt = 0.0017545385482825827 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.5%)
patch tree reduce : 1583.00 ns (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 328.23 us (94.7%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.584705130254114
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8413763519396163e-05,-1.2974721478558655e-06,-6.267037221733371e-10)
sum a = (1.0272608183673491e-05,-2.1261412169507128e-05,-1.3401597918398498e-08)
sum e = 0.009909321927169801
sum de = 0.00020491589561216634
Info: CFL hydro = 0.0017340305211563458 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017340305211563458 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0815e+04 | 12514 | 1 | 2.058e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.695959651155427 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.49592340702527576, dt = 0.0017340305211563458 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.3%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1423.00 ns (0.4%)
LB compute : 382.08 us (95.3%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5825475467476435
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.839637357616593e-05,-1.3342380199712849e-06,-6.499275668751158e-10)
sum a = (9.755571015107735e-06,-2.1086287591837773e-05,-1.3293065966163131e-08)
sum e = 0.009906769040791458
sum de = 0.00020429024963437368
Info: CFL hydro = 0.0017683785869889168 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017683785869889168 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5238e+04 | 12514 | 1 | 2.265e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.55490678337807 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4976574375464321, dt = 0.0017683785869889168 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.6%)
patch tree reduce : 1693.00 ns (0.5%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 354.21 us (94.8%)
LB move op cnt : 0
LB apply : 3.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.58038996324117
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8379570312394337e-05,-1.371374723746417e-06,-6.733406412263448e-10)
sum a = (9.195186695067621e-06,-2.0848304865419e-05,-1.3406826072854574e-08)
sum e = 0.009904220012237626
sum de = 0.00020356407900876691
Info: CFL hydro = 0.0018169072976163623 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018169072976163623 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1509e+04 | 12514 | 1 | 1.535e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.46571056949156 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.499425816133421, dt = 0.0005741838665790922 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (1.9%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 320.98 us (94.5%)
LB move op cnt : 0
LB apply : 3.22 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5791913057375733
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.837478607035996e-05,-1.3831350622671077e-06,-6.811392099278486e-10)
sum a = (9.012047561224474e-06,-2.0754978439532864e-05,-1.3439875371670225e-08)
sum e = 0.009902971712113654
sum de = 0.0002020123261179616
Info: CFL hydro = 0.0018207011272069035 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018207011272069035 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2315e+04 | 12514 | 1 | 1.520e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.596735405750948 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 351 [SPH][rank=0]
Info: time since start : 140.836816631 (s) [SPH][rank=0]
Info: dump to orztang_00020.vtk [VTK Dump][rank=0]
- took 2.40 ms, bandwidth = 278.05 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 961.24 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 931.11 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000020.npy
Saving metadata to plots/rho_slice_0000020.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 929.26 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000020.npy
Saving metadata to plots/vy_slice_0000020.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005758269000000001 s
Info: compute_slice took 933.78 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000020.npy
Saving metadata to plots/By_slice_0000020.json
---------------- t = 0.5000000000000001, dt = 0.0018207011272069035 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.83 us (2.4%)
patch tree reduce : 1974.00 ns (0.5%)
gen split merge : 1132.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 381.71 us (94.1%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5760747962282253
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.835843040297476e-05,-1.4208968816428373e-06,-7.056186943537156e-10)
sum a = (8.423279203929085e-06,-2.044706267050452e-05,-1.4006219383692199e-08)
sum e = 0.009900803228974624
sum de = 0.00020267942875459372
Info: CFL hydro = 0.0018135930657633731 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018135930657633731 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9280e+04 | 12514 | 1 | 2.111e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.0492966134167 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.501820701127207, dt = 0.0018135930657633731 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.5%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 350.67 us (95.2%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5743966757231904
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.834368998782539e-05,-1.4576992214235688e-06,-7.315358482960294e-10)
sum a = (7.817291754101865e-06,-2.0104300331132016e-05,-1.5569997856783066e-08)
sum e = 0.009898231786630168
sum de = 0.00020047738873867223
Info: CFL hydro = 0.001795425493479044 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001795425493479044 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4292e+04 | 12514 | 1 | 2.305e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.325671660020802 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5036342941929703, dt = 0.001795425493479044 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.6%)
patch tree reduce : 1653.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 354.00 us (94.8%)
LB move op cnt : 0
LB apply : 3.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.572239092216717
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8330204130238543e-05,-1.4934841790656703e-06,-7.609086482792623e-10)
sum a = (7.198085848811897e-06,-1.9780488478631486e-05,-1.7686769345983125e-08)
sum e = 0.009895697332461774
sum de = 0.000198424199006286
Info: CFL hydro = 0.0018119703359947808 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018119703359947808 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0488e+04 | 12514 | 1 | 1.555e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.57212825606817 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5054297196864493, dt = 0.0018119703359947808 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.5%)
patch tree reduce : 1633.00 ns (0.5%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1073.00 ns (0.3%)
LB compute : 324.00 us (95.0%)
LB move op cnt : 0
LB apply : 3.15 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.568882851206649
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.831771728123879e-05,-1.5290351473927192e-06,-7.948568024213535e-10)
sum a = (6.576369120756967e-06,-1.943562283892254e-05,-2.062037363178086e-08)
sum e = 0.009893181446437672
sum de = 0.00019588423526126033
Info: CFL hydro = 0.0017911884425443221 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017911884425443221 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8498e+04 | 12514 | 1 | 1.827e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.70533211465041 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5072416900224441, dt = 0.0017911884425443221 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.7%)
patch tree reduce : 1533.00 ns (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 322.15 us (94.7%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.566485536199456
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8306501031009813e-05,-1.5635355672410633e-06,-8.344495793232934e-10)
sum a = (5.943273236380963e-06,-1.911860886396577e-05,-2.2181130370612176e-08)
sum e = 0.009890698173341185
sum de = 0.00019272743313165284
Info: CFL hydro = 0.0018367376998159035 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018367376998159035 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.7192e+04 | 12514 | 1 | 1.621e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.77584437661886 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5090328784649885, dt = 0.0018367376998159035 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.9%)
patch tree reduce : 1613.00 ns (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 298.48 us (94.1%)
LB move op cnt : 0
LB apply : 3.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.568643119705928
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.829615179401198e-05,-1.5983675210254892e-06,-8.765883024154424e-10)
sum a = (5.263580382653689e-06,-1.8798546728250832e-05,-2.439259287926572e-08)
sum e = 0.009888208444113603
sum de = 0.0001889924077816749
Info: CFL hydro = 0.001892197870099673 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001892197870099673 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4353e+04 | 12514 | 1 | 2.302e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.719375184282057 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5108696161648043, dt = 0.001892197870099673 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.3%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 403.81 us (95.6%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.570081508710244
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8286816267167103e-05,-1.6336441560102258e-06,-9.247748529886109e-10)
sum a = (4.5543935540699404e-06,-1.8443934285784618e-05,-2.6899512360864516e-08)
sum e = 0.009885674289589986
sum de = 0.00018447978934051353
Info: CFL hydro = 0.0018399219939925146 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018399219939925146 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4845e+04 | 12514 | 1 | 2.282e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.854642058236813 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.512761814034904, dt = 0.0018399219939925146 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.3%)
patch tree reduce : 1894.00 ns (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 401.14 us (95.5%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.567923925203771
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.827910749920107e-05,-1.6672440579041767e-06,-9.766396512607702e-10)
sum a = (3.846258104471176e-06,-1.8098906113740828e-05,-2.9465903552704764e-08)
sum e = 0.009883182415934649
sum de = 0.00017935339238877497
Info: CFL hydro = 0.0018916690498601986 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018916690498601986 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0618e+04 | 12514 | 1 | 1.552e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.671279275173966 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5146017360288965, dt = 0.0018916690498601986 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.7%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 316.86 us (94.6%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (65.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5643279526929827
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.827248310878125e-05,-1.7011637859747364e-06,-1.0347403688371397e-09)
sum a = (3.1425267607822884e-06,-1.778754909018249e-05,-3.2105941878426385e-08)
sum e = 0.009880702540585217
sum de = 0.000173769449460517
Info: CFL hydro = 0.0019217034246859926 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019217034246859926 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1959e+04 | 12514 | 1 | 1.527e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.60128359121115 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5164934050787566, dt = 0.0019217034246859926 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.8%)
patch tree reduce : 1934.00 ns (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 309.26 us (94.1%)
LB move op cnt : 0
LB apply : 3.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.564088221192264
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.826710971774412e-05,-1.735051687755533e-06,-1.0989355066934108e-09)
sum a = (2.486263290519339e-06,-1.7553092800340416e-05,-3.402680814031393e-08)
sum e = 0.009878207118031298
sum de = 0.0001673886679114141
Info: CFL hydro = 0.0018566086079759784 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018566086079759784 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.2442e+04 | 12514 | 1 | 1.727e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.0481333050866 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5184151085034426, dt = 0.0018566086079759784 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.7%)
patch tree reduce : 1993.00 ns (0.6%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 338.22 us (94.6%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (71.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.559773054179319
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8263124271796204e-05,-1.7674156332177991e-06,-1.1639556392256646e-09)
sum a = (1.8899536443229816e-06,-1.742653752698829e-05,-3.640033008630994e-08)
sum e = 0.009875785227565171
sum de = 0.00016067765168842652
Info: CFL hydro = 0.0018889455126460414 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018889455126460414 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2100e+04 | 12514 | 1 | 1.524e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.84988372275217 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5202717171114186, dt = 0.0018889455126460414 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.6%)
patch tree reduce : 1883.00 ns (0.6%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 317.06 us (94.3%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5609717116829147
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.82601078091518e-05,-1.80021593127538e-06,-1.2349172300391205e-09)
sum a = (1.272177497559547e-06,-1.7403308068023232e-05,-3.8088285458079e-08)
sum e = 0.009873410697966838
sum de = 0.00015373778282347597
Info: CFL hydro = 0.0019375647833327788 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019375647833327788 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1698e+04 | 12514 | 1 | 1.532e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.39541495761357 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5221606626240647, dt = 0.0019375647833327788 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.6%)
patch tree reduce : 1502.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 324.26 us (94.5%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.562649832187949
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.825822635557441e-05,-1.833914028510332e-06,-1.3103099784627238e-09)
sum a = (6.757277971591846e-07,-1.752266067476279e-05,-4.076270265303466e-08)
sum e = 0.009871032977295729
sum de = 0.00014620977146295513
Info: CFL hydro = 0.002004393697030797 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002004393697030797 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.4984e+04 | 12514 | 1 | 1.669e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.795619888779335 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5240982274073974, dt = 0.000901772592602712 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.6%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 339.76 us (94.8%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5619306376857924
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.825819483273417e-05,-1.8498311103601786e-06,-1.3496595948019606e-09)
sum a = (4.4477980730172735e-07,-1.7631021784437126e-05,-4.188216841463327e-08)
sum e = 0.00986955767981173
sum de = 0.0001416944406513296
Info: CFL hydro = 0.002045422747190031 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002045422747190031 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1575e+04 | 12514 | 1 | 2.032e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.973911070711095 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 365 [SPH][rank=0]
Info: time since start : 147.345062678 (s) [SPH][rank=0]
Info: dump to orztang_00021.vtk [VTK Dump][rank=0]
- took 2.23 ms, bandwidth = 299.48 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 956.19 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 933.55 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000021.npy
Saving metadata to plots/rho_slice_0000021.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 927.91 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000021.npy
Saving metadata to plots/vy_slice_0000021.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005385321 s
Info: compute_slice took 937.08 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000021.npy
Saving metadata to plots/By_slice_0000021.json
---------------- t = 0.5250000000000001, dt = 0.002045422747190031 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.63 us (3.0%)
patch tree reduce : 1813.00 ns (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 356.47 us (93.3%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.55929359117788
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8257389201282627e-05,-1.885942861913713e-06,-1.4358310865497743e-09)
sum a = (-5.015361909440866e-08,-1.7956866023239533e-05,-4.4436883482835225e-08)
sum e = 0.009867536042347849
sum de = 0.00013494410471726265
Info: CFL hydro = 0.0020637188923054335 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020637188923054335 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.3266e+04 | 12514 | 1 | 1.708e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.11151516173712 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5270454227471901, dt = 0.0020637188923054335 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.03 us (1.4%)
patch tree reduce : 1814.00 ns (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 329.78 us (94.8%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.554498961163497
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8257998878298297e-05,-1.9233340301814097e-06,-1.530149058665036e-09)
sum a = (-3.990762953884542e-07,-1.836119229338395e-05,-4.787578753046789e-08)
sum e = 0.009865160258390609
sum de = 0.00012538842884423856
Info: CFL hydro = 0.0020459139279036223 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020459139279036223 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2240e+04 | 12514 | 1 | 1.522e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.824463496357055 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5291091416394955, dt = 0.0020459139279036223 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 1623.00 ns (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 306.66 us (94.4%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (65.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.551861914655586
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8259175393208948e-05,-1.9613166571083503e-06,-1.6316472648090457e-09)
sum a = (-6.248683470905578e-07,-1.878050064831542e-05,-4.930612231550196e-08)
sum e = 0.009862861036323537
sum de = 0.00011641787494259942
Info: CFL hydro = 0.0019801435189311075 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019801435189311075 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0211e+04 | 12514 | 1 | 1.560e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.209359515006106 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5311550555673992, dt = 0.0019801435189311075 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.8%)
patch tree reduce : 1854.00 ns (0.6%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 297.48 us (94.0%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.550663257151989
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8260643697768273e-05,-1.9989336781512496e-06,-1.730743634284979e-09)
sum a = (-7.095818176447655e-07,-1.9210851266417685e-05,-5.0865092806068424e-08)
sum e = 0.009860697770203476
sum de = 0.00010760734623046101
Info: CFL hydro = 0.0019933113143791093 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019933113143791093 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.7406e+04 | 12514 | 1 | 1.617e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.094037725306876 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5331351990863302, dt = 0.0019933113143791093 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.9%)
patch tree reduce : 1683.00 ns (0.6%)
gen split merge : 1042.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 275.06 us (93.7%)
LB move op cnt : 0
LB apply : 3.71 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5540194981620576
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.826214198764863e-05,-2.037652963332949e-06,-1.833677091938641e-09)
sum a = (-6.895639573574948e-07,-1.9658296241871237e-05,-5.194376310412793e-08)
sum e = 0.009858650193168925
sum de = 9.883084021450079e-05
Info: CFL hydro = 0.0019926317457768464 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019926317457768464 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2524e+04 | 12514 | 1 | 1.516e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.32204099160656 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5351285104007093, dt = 0.0019926317457768464 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.9%)
patch tree reduce : 1453.00 ns (0.5%)
gen split merge : 762.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.4%)
LB compute : 273.79 us (94.0%)
LB move op cnt : 0
LB apply : 3.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.555937350167813
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8263496083767003e-05,-2.0772706570585763e-06,-1.9382569461500873e-09)
sum a = (-5.438397355846496e-07,-2.014032827084223e-05,-5.057318204380182e-08)
sum e = 0.009856696734783328
sum de = 8.990556864208783e-05
Info: CFL hydro = 0.0020082580400279213 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020082580400279213 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2371e+04 | 12514 | 1 | 1.519e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.21817338595595 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5371211421464861, dt = 0.0020082580400279213 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.6%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 326.43 us (94.4%)
LB move op cnt : 0
LB apply : 4.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (73.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5554578871663742
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8264443066933403e-05,-2.1181978893990022e-06,-2.038455413933817e-09)
sum a = (-3.076817576168869e-07,-2.0694540390806053e-05,-5.063163413333641e-08)
sum e = 0.009854842541106166
sum de = 8.081110848561029e-05
Info: CFL hydro = 0.0020081445369598975 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020081445369598975 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.0177e+04 | 12514 | 1 | 1.783e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.54324002823506 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.539129400186514, dt = 0.0020081445369598975 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.4%)
patch tree reduce : 1764.00 ns (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 349.32 us (95.3%)
LB move op cnt : 0
LB apply : 3.21 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.554019498162058
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8264823803294827e-05,-2.160312018102638e-06,-2.1401897468556464e-09)
sum a = (2.264824207696629e-08,-2.1294378471190473e-05,-5.096012897658169e-08)
sum e = 0.009853095157064024
sum de = 7.152741713964789e-05
Info: CFL hydro = 0.0020449059553807446 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020449059553807446 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0848e+04 | 12514 | 1 | 1.548e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.70583908277667 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5411375447234739, dt = 0.0020449059553807446 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.8%)
patch tree reduce : 1422.00 ns (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 281.24 us (94.2%)
LB move op cnt : 0
LB apply : 3.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (65.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5521016461563044
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8264445814577756e-05,-2.2044593002364696e-06,-2.2447282506492923e-09)
sum a = (4.56567380120064e-07,-2.1922043102598166e-05,-5.0717021283312265e-08)
sum e = 0.00985145627688644
sum de = 6.197633094232258e-05
Info: CFL hydro = 0.0020930336876526993 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020930336876526993 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0586e+04 | 12514 | 1 | 1.553e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.406759275588826 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5431824506788546, dt = 0.0020930336876526993 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.8%)
patch tree reduce : 1713.00 ns (0.5%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.3%)
LB compute : 298.95 us (94.3%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1984.00 ns (64.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.550902988652708
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.826304654175567e-05,-2.250984632523877e-06,-2.35063211854791e-09)
sum a = (1.0525280661321785e-06,-2.254967794075668e-05,-4.953187588617018e-08)
sum e = 0.009849918550816163
sum de = 5.2044940410850746e-05
Info: CFL hydro = 0.0020622916350910517 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020622916350910517 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.3581e+04 | 12514 | 1 | 1.701e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.30477991977568 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5452754843665073, dt = 0.0020622916350910517 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.6%)
patch tree reduce : 1403.00 ns (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 324.47 us (94.6%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5523413776570227
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8260252239033098e-05,-2.298145475145044e-06,-2.4515410172378785e-09)
sum a = (1.8044595608756693e-06,-2.3170027275453685e-05,-4.848137624693108e-08)
sum e = 0.009848504414477611
sum de = 4.213100060291147e-05
Info: CFL hydro = 0.0020655089138804416 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020655089138804416 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0887e+04 | 12514 | 1 | 1.547e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.98842720416964 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5473377760015984, dt = 0.0020655089138804416 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.8%)
patch tree reduce : 1823.00 ns (0.6%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 272.37 us (93.8%)
LB move op cnt : 0
LB apply : 3.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5523413776570245
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8255749760709478e-05,-2.3466430436393228e-06,-2.5505965137236464e-09)
sum a = (2.7086515488727243e-06,-2.3813093059016067e-05,-4.810171944162875e-08)
sum e = 0.009847242565182247
sum de = 3.237594941812639e-05
Info: CFL hydro = 0.002037254799761477 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002037254799761477 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2129e+04 | 12514 | 1 | 2.014e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.91696875436073 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5494032849154789, dt = 0.0005967150845213043 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.4%)
patch tree reduce : 1403.00 ns (0.3%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 384.08 us (95.4%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.551142720153429
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.825319965916596e-05,-2.361516804530613e-06,-2.5789074430482428e-09)
sum a = (2.972953102892666e-06,-2.399602539995718e-05,-4.774594438079182e-08)
sum e = 0.009846476296867265
sum de = 2.8833382080267815e-05
Info: CFL hydro = 0.0020478304594163067 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020478304594163067 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3288e+04 | 12514 | 1 | 1.502e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.297350363375115 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 378 [SPH][rank=0]
Info: time since start : 153.40386438800002 (s) [SPH][rank=0]
Info: dump to orztang_00022.vtk [VTK Dump][rank=0]
- took 2.82 ms, bandwidth = 237.44 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 939.49 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 933.69 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000022.npy
Saving metadata to plots/rho_slice_0000022.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 934.60 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000022.npy
Saving metadata to plots/vy_slice_0000022.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.0057771720000000006 s
Info: compute_slice took 939.29 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000022.npy
Saving metadata to plots/By_slice_0000022.json
---------------- t = 0.5500000000000002, dt = 0.0020478304594163067 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.93 us (2.7%)
patch tree reduce : 1893.00 ns (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 374.42 us (93.5%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (73.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5480262106440783
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8247032698885557e-05,-2.4107111754932413e-06,-2.6765768940921935e-09)
sum a = (3.976134150295393e-06,-2.471328809014717e-05,-4.63478525631518e-08)
sum e = 0.009845814866309891
sum de = 2.086505699010908e-05
Info: CFL hydro = 0.0020504820788799882 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020504820788799882 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2394e+04 | 12514 | 1 | 1.519e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.53929135062617 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5520478304594164, dt = 0.0020504820788799882 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.6%)
patch tree reduce : 1572.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 331.98 us (94.9%)
LB move op cnt : 0
LB apply : 3.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5446699696340107
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.823785253471462e-05,-2.462119746024562e-06,-2.7701808076628923e-09)
sum a = (5.043724378960943e-06,-2.5446393692261856e-05,-4.353548976793411e-08)
sum e = 0.009844893320693148
sum de = 1.0921937543477395e-05
Info: CFL hydro = 0.002012676613636072 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002012676613636072 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.7388e+04 | 12514 | 1 | 1.617e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.649771996931456 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5540983125382964, dt = 0.002012676613636072 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.7%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 1091.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 316.81 us (94.4%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.543711043631132
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.822660661129551e-05,-2.5140867174600183e-06,-2.854920320026433e-09)
sum a = (6.179358671009555e-06,-2.616107677643268e-05,-4.0702597228105865e-08)
sum e = 0.00984410251333812
sum de = 2.0651686662557546e-06
Info: CFL hydro = 0.002060113997186065 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002060113997186065 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.1092e+04 | 12514 | 1 | 1.760e-01 | 0.0% | 1.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.16227618905412 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5561109891519325, dt = 0.002060113997186065 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.8%)
patch tree reduce : 1482.00 ns (0.4%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.4%)
LB compute : 315.94 us (94.4%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.545149432635448
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.821273359571316e-05,-2.568700730873447e-06,-2.9359214620158282e-09)
sum a = (7.349879909587398e-06,-2.6875614982120637e-05,-4.0236521164631753e-08)
sum e = 0.009843471887399523
sum de = -6.609142441536082e-06
Info: CFL hydro = 0.002114240846042125 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002114240846042125 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3053e+04 | 12514 | 1 | 1.985e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.36832790681871 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5581711031491186, dt = 0.002114240846042125 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.7%)
patch tree reduce : 1563.00 ns (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1213.00 ns (0.4%)
LB compute : 327.52 us (94.6%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.544909701134729
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8195988475801107e-05,-2.626258268910569e-06,-3.0205110736537882e-09)
sum a = (8.547338223933794e-06,-2.7525926868836925e-05,-4.044576802257674e-08)
sum e = 0.00984297486308165
sum de = -1.5090521365183522e-05
Info: CFL hydro = 0.002093998379898644 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002093998379898644 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2387e+04 | 12514 | 1 | 1.519e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.109393742848994 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5602853439951607, dt = 0.002093998379898644 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (2.0%)
patch tree reduce : 1894.00 ns (0.6%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 293.78 us (93.6%)
LB move op cnt : 0
LB apply : 3.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.541073997123221
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8176824505767778e-05,-2.684584973155968e-06,-3.1054256454940332e-09)
sum a = (9.667600087716007e-06,-2.809579822691177e-05,-4.0746107491000837e-08)
sum e = 0.009842592431848951
sum de = -2.301875333999248e-05
Info: CFL hydro = 0.002162054640638169 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002162054640638169 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2778e+04 | 12514 | 1 | 1.512e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.86516153039992 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5623793423750594, dt = 0.002162054640638169 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (2.0%)
patch tree reduce : 1453.00 ns (0.5%)
gen split merge : 762.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.4%)
LB compute : 282.74 us (93.8%)
LB move op cnt : 0
LB apply : 3.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5401150711203453
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.815474971287056e-05,-2.7459262789452046e-06,-3.1938354114629386e-09)
sum a = (1.0738432329219683e-05,-2.862067894010336e-05,-4.1389831844056835e-08)
sum e = 0.009842379317572324
sum de = -3.0571905623176415e-05
Info: CFL hydro = 0.0021195314902052883 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021195314902052883 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2987e+04 | 12514 | 1 | 1.508e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.61605392121498 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5645413970156975, dt = 0.0021195314902052883 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.7%)
patch tree reduce : 1563.00 ns (0.5%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 302.74 us (94.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.54179319162538
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8130831668484688e-05,-2.8071561196205916e-06,-3.282258347043202e-09)
sum a = (1.1648698991293387e-05,-2.904102962906651e-05,-4.1208253415873595e-08)
sum e = 0.009842257688317596
sum de = -3.76094730973916e-05
Info: CFL hydro = 0.0021057480040703957 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021057480040703957 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2615e+04 | 12514 | 1 | 1.515e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.37413415660854 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5666609285059028, dt = 0.0021057480040703957 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.8%)
patch tree reduce : 1553.00 ns (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1652.00 ns (0.5%)
LB compute : 305.27 us (94.2%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.53867668211603
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.810533777440652e-05,-2.8687546830591805e-06,-3.3688401138266235e-09)
sum a = (1.241465241899045e-05,-2.9374140391412414e-05,-4.217290345433532e-08)
sum e = 0.009842273755002556
sum de = -4.38821359388767e-05
Info: CFL hydro = 0.0020048889802525907 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020048889802525907 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.7753e+04 | 12514 | 1 | 1.609e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.1008050739994 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5687666765099731, dt = 0.0020048889802525907 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.5%)
patch tree reduce : 1904.00 ns (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 328.75 us (94.6%)
LB move op cnt : 0
LB apply : 3.27 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5357999041074
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8079641322126973e-05,-2.9279972970960535e-06,-3.454407758174e-09)
sum a = (1.3005452412736956e-05,-2.963566026758621e-05,-4.220287194644825e-08)
sum e = 0.009842362503526927
sum de = -4.9480679511339063e-05
Info: CFL hydro = 0.002004833890827056 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002004833890827056 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1197e+04 | 12514 | 1 | 1.541e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.83108876462322 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5707715654902258, dt = 0.002004833890827056 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.7%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.4%)
LB compute : 300.38 us (94.1%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5355601726066794
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8052975306165995e-05,-2.9876740323361772e-06,-3.539047547892434e-09)
sum a = (1.3431127819321044e-05,-2.9853717980575923e-05,-4.2574852506301346e-08)
sum e = 0.00984259499832294
sum de = -5.460905284436917e-05
Info: CFL hydro = 0.0020100700086091486 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020100700086091486 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5714e+04 | 12514 | 1 | 1.904e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.900365928878614 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5727763993810528, dt = 0.0020100700086091486 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.6%)
patch tree reduce : 1352.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 299.04 us (94.6%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5353204411059616
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8025551094713705e-05,-3.047900680241045e-06,-3.6249988616528955e-09)
sum a = (1.364909280906928e-05,-3.005880708358698e-05,-4.3412911757542965e-08)
sum e = 0.009842927012917687
sum de = -5.9555402826179634e-05
Info: CFL hydro = 0.0019890687414074776 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019890687414074776 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2711e+04 | 12514 | 1 | 1.513e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.82789462544646 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.574786469389662, dt = 0.0002135306103381307 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 1904.00 ns (0.6%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 318.62 us (94.4%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.535080709605242
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8022417533151108e-05,-3.054525277391224e-06,-3.6351111260802e-09)
sum a = (1.3646633787283671e-05,-3.0085332544079266e-05,-4.344955637058208e-08)
sum e = 0.009842562297264183
sum de = -6.066227224841561e-05
Info: CFL hydro = 0.0019880703460281026 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019880703460281026 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.5072e+04 | 12514 | 1 | 1.471e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.225804565178857 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 391 [SPH][rank=0]
Info: time since start : 159.44019692400002 (s) [SPH][rank=0]
Info: dump to orztang_00023.vtk [VTK Dump][rank=0]
- took 2.46 ms, bandwidth = 271.96 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 938.19 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 933.84 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000023.npy
Saving metadata to plots/rho_slice_0000023.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 939.54 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000023.npy
Saving metadata to plots/vy_slice_0000023.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005613918000000001 s
Info: compute_slice took 940.02 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000023.npy
Saving metadata to plots/By_slice_0000023.json
---------------- t = 0.5750000000000002, dt = 0.0019880703460281026 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.88 us (2.6%)
patch tree reduce : 1983.00 ns (0.5%)
gen split merge : 1113.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 393.63 us (93.9%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.533402589100208
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7995287327733695e-05,-3.1143398668713754e-06,-3.72149581302194e-09)
sum a = (1.3683278487960346e-05,-3.0324855476245398e-05,-4.5113102465445254e-08)
sum e = 0.00984337398062019
sum de = -6.410169845609515e-05
Info: CFL hydro = 0.002042692271882913 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002042692271882913 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0396e+04 | 12514 | 1 | 1.557e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.98038061052143 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5769880703460283, dt = 0.002042692271882913 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.8%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 1122.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 330.65 us (94.6%)
LB move op cnt : 0
LB apply : 3.17 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5334025891002074
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.796730017439089e-05,-3.1765223090179168e-06,-3.815301622118885e-09)
sum a = (1.354821884298738e-05,-3.062773890987492e-05,-4.787138762969503e-08)
sum e = 0.009843922115426904
sum de = -6.930748446350954e-05
Info: CFL hydro = 0.0020388420697028064 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020388420697028064 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2550e+04 | 12514 | 1 | 1.516e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.50929542891895 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5790307626179112, dt = 0.0020388420697028064 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.7%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 323.39 us (94.5%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.531484737094454
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7939815438490862e-05,-3.239276780431865e-06,-3.915720985047704e-09)
sum a = (1.3316800292762897e-05,-3.0908195004161774e-05,-5.219444996377952e-08)
sum e = 0.009844520580501023
sum de = -7.370003622594038e-05
Info: CFL hydro = 0.0020257545806079556 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020257545806079556 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.9645e+04 | 12514 | 1 | 1.571e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.71416089651919 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.581069604687614, dt = 0.0020257545806079556 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.2%)
patch tree reduce : 1592.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 404.31 us (95.4%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (71.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5334025891002088
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7913074782236877e-05,-3.302175100881714e-06,-4.02586115182252e-09)
sum a = (1.3037056223980193e-05,-3.115427643452091e-05,-5.5839173509468394e-08)
sum e = 0.009845187164147583
sum de = -7.778688650139751e-05
Info: CFL hydro = 0.0020268466344360424 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020268466344360424 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1493e+04 | 12514 | 1 | 1.536e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.49152670289101 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.583095359268222, dt = 0.0020268466344360424 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.5%)
patch tree reduce : 1713.00 ns (0.5%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 337.53 us (94.8%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.530765542592297
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7886934015120693e-05,-3.3655692915139615e-06,-4.142730250428697e-09)
sum a = (1.2699727254227498e-05,-3.139099152719011e-05,-5.7570973348503535e-08)
sum e = 0.009845932421462476
sum de = -8.149022993798748e-05
Info: CFL hydro = 0.0019655265595510943 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019655265595510943 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1691e+04 | 12514 | 1 | 1.532e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.632359585501 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5851222059026581, dt = 0.0019655265595510943 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.4%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1073.00 ns (0.3%)
LB compute : 356.79 us (95.2%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.53004634809014
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7862314220947133e-05,-3.4275090116852166e-06,-4.257642573941947e-09)
sum a = (1.2296364668851752e-05,-3.167541685159923e-05,-5.621037569375096e-08)
sum e = 0.009846698884387608
sum de = -8.474041516045832e-05
Info: CFL hydro = 0.00203439369509047 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00203439369509047 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4387e+04 | 12514 | 1 | 1.944e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.407076170458396 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5870877324622091, dt = 0.00203439369509047 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.7%)
patch tree reduce : 1713.00 ns (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 321.84 us (94.4%)
LB move op cnt : 0
LB apply : 3.17 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.523573597570722
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7837694984129415e-05,-3.492228802782345e-06,-4.3706594624382385e-09)
sum a = (1.1821915440319014e-05,-3.2039247438969314e-05,-5.315444133839901e-08)
sum e = 0.009847612083964235
sum de = -8.755945591803323e-05
Info: CFL hydro = 0.002040118127231435 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002040118127231435 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0739e+04 | 12514 | 1 | 1.550e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.25273739843057 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5891221261572996, dt = 0.002040118127231435 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.8%)
patch tree reduce : 1693.00 ns (0.6%)
gen split merge : 772.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 285.28 us (93.9%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.519977625059934
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7814059488400733e-05,-3.5579627395919105e-06,-4.475992314963042e-09)
sum a = (1.1274627321081819e-05,-3.24725235668164e-05,-4.9833590103780194e-08)
sum e = 0.00984857560479932
sum de = -9.002083411303459e-05
Info: CFL hydro = 0.0019907603996879297 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019907603996879297 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2959e+04 | 12514 | 1 | 1.508e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.68830829932972 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5911622442845311, dt = 0.0019907603996879297 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.7%)
patch tree reduce : 1653.00 ns (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 300.77 us (94.4%)
LB move op cnt : 0
LB apply : 3.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.517340578552022
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.779217267301497e-05,-3.623049720828011e-06,-4.5718115883151936e-09)
sum a = (1.0698786442490823e-05,-3.29373827645064e-05,-4.8774454601515964e-08)
sum e = 0.009849564067587894
sum de = -9.18729688950313e-05
Info: CFL hydro = 0.00200481042696059 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00200481042696059 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1858e+04 | 12514 | 1 | 1.529e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.88015796789099 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.593153004684219, dt = 0.00200481042696059 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.8%)
patch tree reduce : 1813.00 ns (0.6%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 305.99 us (94.2%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5135048745405135
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.777129681500815e-05,-3.6895456408721983e-06,-4.668540880961634e-09)
sum a = (1.0164123364098345e-05,-3.34091305423351e-05,-4.623609087196326e-08)
sum e = 0.009850653111764342
sum de = -9.312511075444076e-05
Info: CFL hydro = 0.0020321378474573238 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020321378474573238 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1195e+04 | 12514 | 1 | 1.541e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.828180405865496 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5951578151111796, dt = 0.0020321378474573238 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.5%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.4%)
LB compute : 335.48 us (94.9%)
LB move op cnt : 0
LB apply : 3.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.514224069042672
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.775117786429103e-05,-3.7579104819297354e-06,-4.7599545221049325e-09)
sum a = (9.697806581432043e-06,-3.3875845912114224e-05,-4.290308165630319e-08)
sum e = 0.009851834857089126
sum de = -9.380518420315645e-05
Info: CFL hydro = 0.0020714164515024235 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020714164515024235 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2302e+04 | 12514 | 1 | 1.520e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.11390654300049 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.597189952958637, dt = 0.0020714164515024235 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.9%)
patch tree reduce : 1493.00 ns (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 298.51 us (94.2%)
LB move op cnt : 0
LB apply : 3.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5130254115390755
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.773156347818629e-05,-3.828555681444251e-06,-4.845438104181207e-09)
sum a = (9.332964147857563e-06,-3.4248736046431786e-05,-3.942760826498362e-08)
sum e = 0.009853121602343388
sum de = -9.396948183365871e-05
Info: CFL hydro = 0.0020775012575399323 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020775012575399323 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1639e+04 | 12514 | 1 | 1.533e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.648617676492975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5992613694101394, dt = 0.0007386305898607892 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.9%)
patch tree reduce : 1833.00 ns (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 290.71 us (93.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5120664855361996
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7725047735681893e-05,-3.854239050931689e-06,-4.870960965350932e-09)
sum a = (9.244143943342341e-06,-3.434052090016842e-05,-3.794093579775474e-08)
sum e = 0.00985326668621252
sum de = -9.436288279661718e-05
Info: CFL hydro = 0.002077667536437992 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002077667536437992 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4232e+04 | 12514 | 1 | 1.486e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.898228212322913 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 404 [SPH][rank=0]
Info: time since start : 165.41843957100002 (s) [SPH][rank=0]
Info: dump to orztang_00024.vtk [VTK Dump][rank=0]
- took 2.39 ms, bandwidth = 279.25 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 935.79 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 935.71 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000024.npy
Saving metadata to plots/rho_slice_0000024.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 934.97 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000024.npy
Saving metadata to plots/vy_slice_0000024.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.0056777170000000005 s
Info: compute_slice took 942.71 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000024.npy
Saving metadata to plots/By_slice_0000024.json
---------------- t = 0.6000000000000002, dt = 0.002077667536437992 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.17 us (2.5%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1363.00 ns (0.3%)
LB compute : 387.19 us (94.1%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (72.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.515902189547706
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7705874280568925e-05,-3.925621133940726e-06,-4.949240565079322e-09)
sum a = (9.06077428256211e-06,-3.458096917959689e-05,-3.1985695349797547e-08)
sum e = 0.009854981586779915
sum de = -9.286494572144878e-05
Info: CFL hydro = 0.00206687395842724 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00206687395842724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1167e+04 | 12514 | 1 | 1.542e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.51358224506354 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6020776675364382, dt = 0.00206687395842724 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.9%)
patch tree reduce : 1663.00 ns (0.5%)
gen split merge : 792.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 285.52 us (94.1%)
LB move op cnt : 0
LB apply : 3.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.514463800543392
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.768733729275662e-05,-3.997345424386831e-06,-5.0091644609648314e-09)
sum a = (8.98790165657076e-06,-3.47301613616386e-05,-2.89586372682905e-08)
sum e = 0.009856451259760266
sum de = -9.253844609465858e-05
Info: CFL hydro = 0.0020796046972926608 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020796046972926608 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2004e+04 | 12514 | 1 | 1.526e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.7591417192651 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6041445414948654, dt = 0.0020796046972926608 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.8%)
patch tree reduce : 1613.00 ns (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 287.71 us (94.1%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5111075595333228
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7668721319519384e-05,-4.069724611810474e-06,-5.0662587052954236e-09)
sum a = (9.028424450209816e-06,-3.476458616420807e-05,-2.6788982011048215e-08)
sum e = 0.009858026893439733
sum de = -9.123439151983562e-05
Info: CFL hydro = 0.0020658906988045146 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020658906988045146 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2211e+04 | 12514 | 1 | 1.522e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.18352547090551 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.606224146192158, dt = 0.0020658906988045146 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.7%)
patch tree reduce : 1543.00 ns (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 303.29 us (94.4%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (9.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.504634809013905
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7650027445726642e-05,-4.14158024200557e-06,-5.119345801430291e-09)
sum a = (9.111003741013312e-06,-3.4732929850650984e-05,-2.6280209866225104e-08)
sum e = 0.009859680076625103
sum de = -8.97637738209637e-05
Info: CFL hydro = 0.0021422759249227195 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021422759249227195 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3256e+04 | 12514 | 1 | 1.503e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.479914248748145 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6082900368909625, dt = 0.0021422759249227195 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 14.09 us (4.2%)
patch tree reduce : 3.19 us (0.9%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 307.56 us (91.2%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5072718555218163
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7630423861866252e-05,-4.2159550621847165e-06,-5.175119728507576e-09)
sum a = (9.218012302004527e-06,-3.463829828294281e-05,-2.7394132470421e-08)
sum e = 0.009861532063622237
sum de = -8.795525540384962e-05
Info: CFL hydro = 0.0021139659590018738 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021139659590018738 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1696e+04 | 12514 | 1 | 1.532e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.34787426263814 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6104323128158852, dt = 0.0021139659590018738 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.7%)
patch tree reduce : 1593.00 ns (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.4%)
LB compute : 321.82 us (94.4%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.50918970752757
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7610822676718065e-05,-4.289077882167852e-06,-5.23422315681493e-09)
sum a = (9.334704319168432e-06,-3.4501200727457734e-05,-2.9318982018640625e-08)
sum e = 0.009863436623083529
sum de = -8.605819748849983e-05
Info: CFL hydro = 0.002078180613932908 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002078180613932908 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.0954e+04 | 12514 | 1 | 1.764e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.15015866180976 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6125462787748871, dt = 0.002078180613932908 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.8%)
patch tree reduce : 1684.00 ns (0.6%)
gen split merge : 761.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 276.74 us (94.0%)
LB move op cnt : 0
LB apply : 3.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5060731980182203
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.759130013368936e-05,-4.3606326988946955e-06,-5.297187830077147e-09)
sum a = (9.403828752162667e-06,-3.4372405241070256e-05,-3.269491301713062e-08)
sum e = 0.0098654196743337
sum de = -8.395073622923278e-05
Info: CFL hydro = 0.0021417971716791336 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021417971716791336 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.1404e+04 | 12514 | 1 | 1.753e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.68890241863909 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.61462445938882, dt = 0.0021417971716791336 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.7%)
patch tree reduce : 1903.00 ns (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 328.27 us (94.4%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (71.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5039156145117465
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7571087213336506e-05,-4.434117589082378e-06,-5.370721599482883e-09)
sum a = (9.40677639552024e-06,-3.4316871230908145e-05,-3.609651913349643e-08)
sum e = 0.00986762062187711
sum de = -8.15398195065917e-05
Info: CFL hydro = 0.00215480417723578 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00215480417723578 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3017e+04 | 12514 | 1 | 1.507e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.15091480254811 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6167662565604992, dt = 0.00215480417723578 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.9%)
patch tree reduce : 1483.00 ns (0.5%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 291.88 us (94.1%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.501758031005274
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7550814295638147e-05,-4.508004255267602e-06,-5.452145304875051e-09)
sum a = (9.421175089515377e-06,-3.4301899178841874e-05,-3.657438358807023e-08)
sum e = 0.009869950891879559
sum de = -7.897462547681869e-05
Info: CFL hydro = 0.002169692113761228 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002169692113761228 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2726e+04 | 12514 | 1 | 1.513e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.280933990983314 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.618921060737735, dt = 0.002169692113761228 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.8%)
patch tree reduce : 1743.00 ns (0.6%)
gen split merge : 802.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 298.09 us (94.1%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5036758830110264
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7530357733160928e-05,-4.582412684482738e-06,-5.532015308673155e-09)
sum a = (9.526817030806693e-06,-3.429984701033967e-05,-3.4390181048048685e-08)
sum e = 0.009872436477051766
sum de = -7.612104317063976e-05
Info: CFL hydro = 0.0022080167847858215 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022080167847858215 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1327e+04 | 12514 | 1 | 1.539e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.761762330263416 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6210907528514963, dt = 0.0022080167847858215 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.9%)
patch tree reduce : 1864.00 ns (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 286.31 us (93.8%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5036758830110264
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7509207756007897e-05,-4.658145096110044e-06,-5.6055798821459814e-09)
sum a = (9.717293495107768e-06,-3.428196004783012e-05,-3.144370955993318e-08)
sum e = 0.009875121545559268
sum de = -7.30820137842768e-05
Info: CFL hydro = 0.002161554257953797 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002161554257953797 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2797e+04 | 12514 | 1 | 1.511e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.592208733566686 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6232987696362821, dt = 0.0017012303637181647 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.7%)
patch tree reduce : 1793.00 ns (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 297.78 us (94.4%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5055937350167814
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7492466113645725e-05,-4.716446860114281e-06,-5.655819946346537e-09)
sum a = (9.871734612414569e-06,-3.424097299565494e-05,-2.8439150321426715e-08)
sum e = 0.00987714498410454
sum de = -7.099822806916392e-05
Info: CFL hydro = 0.0020742300229639075 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020742300229639075 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2813e+04 | 12514 | 1 | 1.511e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.529381638614254 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 416 [SPH][rank=0]
Info: time since start : 171.233969817 (s) [SPH][rank=0]
Info: dump to orztang_00025.vtk [VTK Dump][rank=0]
- took 2.85 ms, bandwidth = 234.87 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 940.45 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 938.62 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000025.npy
Saving metadata to plots/rho_slice_0000025.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 936.26 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000025.npy
Saving metadata to plots/vy_slice_0000025.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005922003 s
Info: compute_slice took 940.35 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000025.npy
Saving metadata to plots/By_slice_0000025.json
---------------- t = 0.6250000000000002, dt = 0.0020742300229639075 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.80 us (2.9%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 382.93 us (93.7%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5070321240210967
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7471858495374964e-05,-4.787435650108956e-06,-5.7122535620676295e-09)
sum a = (1.0049050120802899e-05,-3.4224628842897374e-05,-2.3202606650327706e-08)
sum e = 0.009880007591630501
sum de = -6.771621849395898e-05
Info: CFL hydro = 0.0021133120968476336 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021133120968476336 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2255e+04 | 12514 | 1 | 1.521e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.082191595419246 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6270742300229641, dt = 0.0021133120968476336 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.8%)
patch tree reduce : 1703.00 ns (0.5%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 299.04 us (94.2%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5087102445261307
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7450437819617214e-05,-4.85974602148608e-06,-5.7558570133307e-09)
sum a = (1.0151603351361243e-05,-3.4255487549487914e-05,-1.985838701662118e-08)
sum e = 0.00988298489803603
sum de = -6.511115093196663e-05
Info: CFL hydro = 0.0021665574315552234 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021665574315552234 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1216e+04 | 12514 | 1 | 1.541e-01 | 0.0% | 1.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.37567696256241 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6291875421198118, dt = 0.0021665574315552234 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.6%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 326.38 us (94.6%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.510867828032603
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.742833542444286e-05,-4.933995109647231e-06,-5.795347659396932e-09)
sum a = (1.0183143530514158e-05,-3.433384568381231e-05,-2.0247904330447034e-08)
sum e = 0.009886198823299419
sum de = -6.237513142568748e-05
Info: CFL hydro = 0.0022264327558186277 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022264327558186277 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0080e+04 | 12514 | 1 | 1.563e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.911717740833915 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.631354099551367, dt = 0.0022264327558186277 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.85 us (1.5%)
patch tree reduce : 1353.00 ns (0.4%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 300.51 us (94.7%)
LB move op cnt : 0
LB apply : 3.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.510628096531885
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.740562917332471e-05,-5.010521992009634e-06,-5.840850212650597e-09)
sum a = (1.0123030509922138e-05,-3.4460735334423735e-05,-2.0193298575620612e-08)
sum e = 0.009889677269502371
sum de = -5.956979664717962e-05
Info: CFL hydro = 0.0022252463287767573 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022252463287767573 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2152e+04 | 12514 | 1 | 1.523e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.61814471425378 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6335805323071856, dt = 0.0022252463287767573 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 1403.00 ns (0.4%)
gen split merge : 1192.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.4%)
LB compute : 296.61 us (93.9%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5103883650311656
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7383169855645214e-05,-5.087346872437295e-06,-5.885724488151376e-09)
sum a = (9.951936296309308e-06,-3.462998444933659e-05,-1.765878758085609e-08)
sum e = 0.009893319418846224
sum de = -5.675457389910335e-05
Info: CFL hydro = 0.0022197934814128266 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022197934814128266 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1891e+04 | 12514 | 1 | 1.528e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.42262799648012 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6358057786359623, dt = 0.0022197934814128266 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.5%)
patch tree reduce : 1352.00 ns (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 336.24 us (95.0%)
LB move op cnt : 0
LB apply : 3.27 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5154227265462685
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7361268975712592e-05,-5.164406596665145e-06,-5.922103394070024e-09)
sum a = (9.686674254615203e-06,-3.4813551361805774e-05,-1.5552289159226834e-08)
sum e = 0.009897141435880255
sum de = -5.37970189976639e-05
Info: CFL hydro = 0.002287375633229389 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002287375633229389 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2126e+04 | 12514 | 1 | 1.524e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.44469990628232 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6380255721173752, dt = 0.002287375633229389 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.5%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 334.43 us (94.9%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5173405785520213
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.733940632653112e-05,-5.244242006074274e-06,-5.955339325601177e-09)
sum a = (9.292223315219053e-06,-3.5003965467331906e-05,-1.2439849125166999e-08)
sum e = 0.009901308033174511
sum de = -5.0457272914855274e-05
Info: CFL hydro = 0.002256250116895039 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002256250116895039 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1391e+04 | 12514 | 1 | 1.538e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.55732199081158 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6403129477506045, dt = 0.002256250116895039 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (2.0%)
patch tree reduce : 1563.00 ns (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.4%)
LB compute : 295.61 us (94.0%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5168611155505842
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.731889187532357e-05,-5.323437481544215e-06,-5.97984707689729e-09)
sum a = (8.812276877029885e-06,-3.523991294565835e-05,-1.4497100779504798e-08)
sum e = 0.009905606261746558
sum de = -4.699174637674048e-05
Info: CFL hydro = 0.002288644554699801 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002288644554699801 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.2110e+04 | 12514 | 1 | 1.735e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.80439337690145 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6425691978674996, dt = 0.002288644554699801 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 1382.00 ns (0.4%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1103.00 ns (0.3%)
LB compute : 306.52 us (94.2%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5216557455649675
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7299265145438013e-05,-5.4043552946781525e-06,-6.015346624797972e-09)
sum a = (8.264879983158444e-06,-3.555361629205511e-05,-1.6515982082583457e-08)
sum e = 0.009910209923692887
sum de = -4.309899647966735e-05
Info: CFL hydro = 0.002323166100694014 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002323166100694014 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8813e+04 | 12514 | 1 | 2.128e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.722234548118024 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6448578424221993, dt = 0.002323166100694014 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.6%)
patch tree reduce : 1843.00 ns (0.6%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 312.26 us (94.7%)
LB move op cnt : 0
LB apply : 3.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5238133290714395
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.728069085489507e-05,-5.487311228532523e-06,-6.056026245342573e-09)
sum a = (7.686123327135795e-06,-3.594358675961303e-05,-1.7138768694399636e-08)
sum e = 0.00991512442552342
sum de = -3.8925494160878515e-05
Info: CFL hydro = 0.0023073082726748064 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023073082726748064 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2422e+04 | 12514 | 1 | 1.518e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.084367330150556 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6471810085228934, dt = 0.0023073082726748064 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.5%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 335.42 us (94.9%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (71.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.522614671567844
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7263628872879404e-05,-5.570697146698016e-06,-6.0962940865067584e-09)
sum a = (7.132107219470027e-06,-3.6419497444437745e-05,-1.4571777058124163e-08)
sum e = 0.009920236717466524
sum de = -3.464019964740135e-05
Info: CFL hydro = 0.0022924460570761395 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022924460570761395 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0822e+04 | 12514 | 1 | 1.548e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.64660972258034 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6494883167955682, dt = 0.0005116832044320674 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (2.0%)
patch tree reduce : 1733.00 ns (0.6%)
gen split merge : 832.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 271.24 us (93.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.522135208566406
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7260618636377393e-05,-5.589881428184041e-06,-6.100788799566942e-09)
sum a = (7.022950076886496e-06,-3.65227423775351e-05,-1.4458823815993587e-08)
sum e = 0.009921114339186828
sum de = -3.4203119957589066e-05
Info: CFL hydro = 0.0022832950783614166 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022832950783614166 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4758e+04 | 12514 | 1 | 1.476e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.476387310162139 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 428 [SPH][rank=0]
Info: time since start : 177.098599823 (s) [SPH][rank=0]
Info: dump to orztang_00026.vtk [VTK Dump][rank=0]
- took 2.40 ms, bandwidth = 278.36 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 936.58 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 941.07 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000026.npy
Saving metadata to plots/rho_slice_0000026.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 933.93 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000026.npy
Saving metadata to plots/vy_slice_0000026.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005620441 s
Info: compute_slice took 939.81 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000026.npy
Saving metadata to plots/By_slice_0000026.json
---------------- t = 0.6500000000000002, dt = 0.0022832950783614166 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.65 us (2.6%)
patch tree reduce : 1823.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.3%)
LB compute : 386.17 us (94.1%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.521655745564968
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7244611095969268e-05,-5.673300040451636e-06,-6.133773662686413e-09)
sum a = (6.5038370052279965e-06,-3.7074595899325284e-05,-1.2588560225276289e-08)
sum e = 0.009926749066571601
sum de = -2.8506522158465447e-05
Info: CFL hydro = 0.0022949718917987146 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022949718917987146 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.8792e+04 | 12514 | 1 | 1.588e-01 | 0.0% | 1.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.75452336509758 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6522832950783617, dt = 0.0022949718917987146 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.8%)
patch tree reduce : 1713.00 ns (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 291.64 us (94.0%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (67.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5259709125779137
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.723027761701432e-05,-5.759015218155781e-06,-6.16052887273585e-09)
sum a = (6.1204332610912984e-06,-3.764236103411684e-05,-1.3918423021920447e-08)
sum e = 0.009932387323915324
sum de = -2.4487501824587674e-05
Info: CFL hydro = 0.002322654066656006 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002322654066656006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1982e+04 | 12514 | 1 | 1.526e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.12561085057508 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6545782669701604, dt = 0.002322654066656006 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (2.0%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1292.00 ns (0.4%)
LB compute : 294.77 us (93.6%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5290874220872626
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.721650191821888e-05,-5.8470969036022775e-06,-6.194382553438188e-09)
sum a = (5.829535000856234e-06,-3.821291251075821e-05,-1.722620824600608e-08)
sum e = 0.009938333461293495
sum de = -1.968933840613949e-05
Info: CFL hydro = 0.0022858468465100494 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022858468465100494 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2291e+04 | 12514 | 1 | 1.521e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.98464231049765 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6569009210368164, dt = 0.0022858468465100494 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.6%)
patch tree reduce : 1653.00 ns (0.5%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 309.52 us (94.6%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5302860795908586
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7203514322034175e-05,-5.93510836601549e-06,-6.237600447635941e-09)
sum a = (5.61089739908852e-06,-3.8763257007755316e-05,-2.1254806000596968e-08)
sum e = 0.009944398577377125
sum de = -1.5091591315793132e-05
Info: CFL hydro = 0.0022457017390728473 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022457017390728473 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1819e+04 | 12514 | 1 | 1.529e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.8032739895437 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6591867678833264, dt = 0.0022457017390728473 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.7%)
patch tree reduce : 1573.00 ns (0.5%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 297.39 us (94.2%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5319642000958935
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7191163806023547e-05,-6.022788081306442e-06,-6.289936781171644e-09)
sum a = (5.40203984786096e-06,-3.9250387497579114e-05,-2.4563793023176397e-08)
sum e = 0.009950566537349922
sum de = -1.050235419594234e-05
Info: CFL hydro = 0.002191739439208688 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002191739439208688 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1323e+04 | 12514 | 1 | 1.539e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.537712139777156 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6614324696223992, dt = 0.002191739439208688 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 29.39 us (8.0%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 323.30 us (88.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5329231260987695
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.717955845811979e-05,-6.1093616784836994e-06,-6.347489714072603e-09)
sum a = (5.1843591625897236e-06,-3.9619058892574365e-05,-2.9407157049153173e-08)
sum e = 0.009956773178464448
sum de = -5.982450813648589e-06
Info: CFL hydro = 0.002163766924028072 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002163766924028072 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1727e+04 | 12514 | 1 | 1.531e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.52987363943463 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6636242090616079, dt = 0.002163766924028072 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.8%)
patch tree reduce : 1683.00 ns (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 291.68 us (94.1%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5377177561131523
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.716857926291297e-05,-6.195492103494261e-06,-6.416427643802159e-09)
sum a = (4.925086438636748e-06,-3.988859536495791e-05,-3.455872243296583e-08)
sum e = 0.009963080120477318
sum de = -1.4805403244628449e-06
Info: CFL hydro = 0.0021431002198392625 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021431002198392625 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2387e+04 | 12514 | 1 | 1.519e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.282948692836925 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.665787975985636, dt = 0.0021431002198392625 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (2.0%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 294.38 us (94.0%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5413137286239396
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.715830481195568e-05,-6.281268968042406e-06,-6.496063842837843e-09)
sum a = (4.641081967919085e-06,-4.00401137501284e-05,-4.1206179856776645e-08)
sum e = 0.009969486860565856
sum de = 2.991166466324895e-06
Info: CFL hydro = 0.0021844570108240403 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021844570108240403 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2196e+04 | 12514 | 1 | 1.522e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.67542624170939 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6679310762054752, dt = 0.0021844570108240403 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.7%)
patch tree reduce : 1863.00 ns (0.6%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 301.90 us (94.3%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5429918491289754
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.714847089293491e-05,-6.3688972347796905e-06,-6.593200055048346e-09)
sum a = (4.380390668792501e-06,-4.002189280106677e-05,-4.7739780919540144e-08)
sum e = 0.009976183661973637
sum de = 7.547639614406728e-06
Info: CFL hydro = 0.0022240691025876306 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022240691025876306 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2139e+04 | 12514 | 1 | 1.524e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.61797589717302 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6701155332162992, dt = 0.0022240691025876306 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.7%)
patch tree reduce : 1483.00 ns (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.4%)
LB compute : 309.73 us (94.3%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5470672846412015
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7139013335859272e-05,-6.457888788546069e-06,-6.706512812079452e-09)
sum a = (4.21043404596456e-06,-3.981639781341794e-05,-5.647357562802049e-08)
sum e = 0.009983146506698784
sum de = 1.2094974356353355e-05
Info: CFL hydro = 0.0022306923402395586 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022306923402395586 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.2147e+04 | 12514 | 1 | 1.735e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.160643696099704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6723396023188869, dt = 0.0022306923402395586 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.8%)
patch tree reduce : 1824.00 ns (0.6%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 310.25 us (94.1%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.547307016141922
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7129810150520693e-05,-6.5464784046378945e-06,-6.842200266138599e-09)
sum a = (4.183444697423979e-06,-3.9377520575347545e-05,-6.43266283689178e-08)
sum e = 0.009990254287561765
sum de = 1.657071479127699e-05
Info: CFL hydro = 0.0022577589219611154 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022577589219611154 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8233e+04 | 12514 | 1 | 1.834e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.78622798447678 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6745702946591264, dt = 0.0004297053408738316 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.96 us (1.4%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1143.00 ns (0.3%)
LB compute : 327.61 us (94.8%)
LB move op cnt : 0
LB apply : 4.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5470672846412024
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7128042604457376e-05,-6.562909635492931e-06,-6.878600634207553e-09)
sum a = (4.230996559284183e-06,-3.921700322295066e-05,-6.52012593887219e-08)
sum e = 0.009991340480855067
sum de = 1.697591482361845e-05
Info: CFL hydro = 0.002262952578015616 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002262952578015616 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2686e+04 | 12514 | 1 | 1.513e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.221408415726454 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 440 [SPH][rank=0]
Info: time since start : 182.92977188400002 (s) [SPH][rank=0]
Info: dump to orztang_00027.vtk [VTK Dump][rank=0]
- took 2.28 ms, bandwidth = 293.26 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 951.79 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 950.28 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000027.npy
Saving metadata to plots/rho_slice_0000027.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 939.33 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000027.npy
Saving metadata to plots/vy_slice_0000027.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.006151911 s
Info: compute_slice took 950.07 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000027.npy
Saving metadata to plots/By_slice_0000027.json
---------------- t = 0.6750000000000003, dt = 0.002262952578015616 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.97 us (2.5%)
patch tree reduce : 1944.00 ns (0.5%)
gen split merge : 1232.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 993.00 ns (0.2%)
LB compute : 375.21 us (93.9%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.551861914655586
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.71184578432415e-05,-6.651621366456349e-06,-7.02633590904151e-09)
sum a = (4.369850387214813e-06,-3.853986896931037e-05,-6.771583701147296e-08)
sum e = 0.009998986676512372
sum de = 2.255730357102252e-05
Info: CFL hydro = 0.002254859731537895 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002254859731537895 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1845e+04 | 12514 | 1 | 1.529e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.28121691894872 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6772629525780158, dt = 0.002254859731537895 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.5%)
patch tree reduce : 1353.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1483.00 ns (0.4%)
LB compute : 337.26 us (94.9%)
LB move op cnt : 0
LB apply : 3.23 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5528208406584634
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.71084473337565e-05,-6.737757203701618e-06,-7.181870808062931e-09)
sum a = (4.723294418450729e-06,-3.7604634646002974e-05,-6.822679898561021e-08)
sum e = 0.010006428225268166
sum de = 2.6284105464357754e-05
Info: CFL hydro = 0.002240209766733393 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002240209766733393 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1867e+04 | 12514 | 1 | 1.529e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.10465566126279 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6795178123095538, dt = 0.002240209766733393 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.05 us (1.6%)
patch tree reduce : 1583.00 ns (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 292.64 us (94.5%)
LB move op cnt : 0
LB apply : 3.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5561770816685305
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7097467680112488e-05,-6.820945062402466e-06,-7.335289223293481e-09)
sum a = (5.20972363262538e-06,-3.652893642618848e-05,-6.425366855236097e-08)
sum e = 0.01001390480084691
sum de = 3.048031500216768e-05
Info: CFL hydro = 0.0021376285870154483 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021376285870154483 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1288e+04 | 12514 | 1 | 1.539e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.38700642132334 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6817580220762872, dt = 0.0021376285870154483 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.6%)
patch tree reduce : 1513.00 ns (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.4%)
LB compute : 308.96 us (94.2%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.554259229662778
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.708578637420682e-05,-6.897825466331526e-06,-7.468189379211178e-09)
sum a = (5.824459218439872e-06,-3.530702724785286e-05,-5.949723878058107e-08)
sum e = 0.010021090499850322
sum de = 3.414128310661145e-05
Info: CFL hydro = 0.002147457353496525 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002147457353496525 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2241e+04 | 12514 | 1 | 1.522e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.57372730249061 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6838956506633027, dt = 0.002147457353496525 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.9%)
patch tree reduce : 1363.00 ns (0.4%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 290.23 us (94.0%)
LB move op cnt : 0
LB apply : 3.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5583346651750034
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7072621558247168e-05,-6.972339807629748e-06,-7.590873422016918e-09)
sum a = (6.551121122967269e-06,-3.393407594096537e-05,-5.524417781531041e-08)
sum e = 0.01002840529991686
sum de = 3.760719819108242e-05
Info: CFL hydro = 0.0021207132207295503 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021207132207295503 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3983e+04 | 12514 | 1 | 1.956e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.52744925300247 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6860431080167992, dt = 0.0021207132207295503 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.6%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 334.89 us (94.6%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (72.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5609717116829156
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7057948271345964e-05,-7.042830073920748e-06,-7.703463846755648e-09)
sum a = (7.358391926109332e-06,-3.2466046394468966e-05,-5.111378437088891e-08)
sum e = 0.010035675735890984
sum de = 4.0545683933656155e-05
Info: CFL hydro = 0.0021101613395432114 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021101613395432114 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.6200e+04 | 12514 | 1 | 1.642e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.48811674288439 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6881638212375288, dt = 0.0021101613395432114 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.9%)
patch tree reduce : 1894.00 ns (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.3%)
LB compute : 279.97 us (93.8%)
LB move op cnt : 0
LB apply : 3.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5638484896915443
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7041564882249715e-05,-7.1097820350364345e-06,-7.806942488460506e-09)
sum a = (8.256213766945284e-06,-3.091693259782804e-05,-4.629650845002615e-08)
sum e = 0.010042962414854511
sum de = 4.301127494125459e-05
Info: CFL hydro = 0.0021144608780328663 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021144608780328663 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1574e+04 | 12514 | 1 | 1.534e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.518966943555526 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6902739825770721, dt = 0.0021144608780328663 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.8%)
patch tree reduce : 1664.00 ns (0.5%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.4%)
LB compute : 297.04 us (94.1%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.568882851206647
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7023160166769668e-05,-7.173520239461403e-06,-7.899752029662945e-09)
sum a = (9.205469112555573e-06,-2.937055654263173e-05,-3.714931336770153e-08)
sum e = 0.010050310380633866
sum de = 4.487105741386748e-05
Info: CFL hydro = 0.0020968532035859945 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020968532035859945 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1476e+04 | 12514 | 1 | 1.536e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.560528495241925 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.692388443455105, dt = 0.0020968532035859945 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.3%)
LB compute : 312.34 us (94.3%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (71.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5722390922167166
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.700285406772467e-05,-7.233471109203252e-06,-7.967977993336462e-09)
sum a = (1.0181162808472475e-05,-2.7856124330997126e-05,-2.3172645719566825e-08)
sum e = 0.010057626800366426
sum de = 4.6065397904252245e-05
Info: CFL hydro = 0.002110250567185611 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002110250567185611 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1979e+04 | 12514 | 1 | 1.526e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.45147051587079 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.694485296658691, dt = 0.002110250567185611 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.6%)
patch tree reduce : 1693.00 ns (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1462.00 ns (0.4%)
LB compute : 322.79 us (94.5%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (71.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.575835064727505
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6980346319907522e-05,-7.290666740354613e-06,-8.002224571942657e-09)
sum a = (1.1176304646860653e-05,-2.6427000618374082e-05,-7.172435634694121e-09)
sum e = 0.010065029572739859
sum de = 4.66646208283023e-05
Info: CFL hydro = 0.0021096920870605413 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021096920870605413 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1819e+04 | 12514 | 1 | 1.529e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.669985158755736 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6965955472258766, dt = 0.0021096920870605413 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (2.0%)
patch tree reduce : 1983.00 ns (0.7%)
gen split merge : 1082.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1051.00 ns (0.4%)
LB compute : 279.74 us (93.6%)
LB move op cnt : 0
LB apply : 3.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.578232379734697
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6955717759117078e-05,-7.3449116698815915e-06,-8.00047397644263e-09)
sum a = (1.2068964559681283e-05,-2.507292679451883e-05,1.0741952936180606e-08)
sum e = 0.01007245361194397
sum de = 4.6712424190029927e-05
Info: CFL hydro = 0.002093431439629704 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002093431439629704 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1853e+04 | 12514 | 1 | 1.529e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.6774774583375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6987052393129372, dt = 0.0012947606870631345 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.5%)
patch tree reduce : 1753.00 ns (0.5%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1073.00 ns (0.3%)
LB compute : 328.13 us (94.7%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5779926482339786
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6939149719494406e-05,-7.3759467703891236e-06,-7.967668796172484e-09)
sum a = (1.253648715357975e-05,-2.4298278883219398e-05,2.1093390092422754e-08)
sum e = 0.01007683279542288
sum de = 4.640372990309976e-05
Info: CFL hydro = 0.0020751670530767337 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020751670530767337 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0005e+04 | 12514 | 1 | 1.564e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.799646538661207 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 452 [SPH][rank=0]
Info: time since start : 188.809916315 (s) [SPH][rank=0]
Info: dump to orztang_00028.vtk [VTK Dump][rank=0]
- took 2.47 ms, bandwidth = 271.21 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 953.91 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 946.79 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000028.npy
Saving metadata to plots/rho_slice_0000028.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 941.06 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000028.npy
Saving metadata to plots/vy_slice_0000028.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.003967413 s
Info: compute_slice took 951.97 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000028.npy
Saving metadata to plots/By_slice_0000028.json
---------------- t = 0.7000000000000003, dt = 0.0020751670530767337 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.82 us (2.9%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 352.71 us (93.6%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5815886207447662
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.691283174945449e-05,-7.425868266342988e-06,-7.917195171072788e-09)
sum a = (1.3259222942386196e-05,-2.3108331778766457e-05,4.1506246200424e-08)
sum e = 0.01008434405893705
sum de = 4.6430880305292705e-05
Info: CFL hydro = 0.0020502387007447016 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020502387007447016 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7069e+04 | 12514 | 1 | 1.866e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.038861855266724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.702075167053077, dt = 0.0020502387007447016 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.8%)
patch tree reduce : 1903.00 ns (0.6%)
gen split merge : 752.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 280.20 us (94.0%)
LB move op cnt : 0
LB apply : 3.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (66.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5847051302541173
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.688489727868767e-05,-7.472011192952114e-06,-7.810917415562716e-09)
sum a = (1.3840154588395715e-05,-2.204888302098494e-05,6.356852153678946e-08)
sum e = 0.010091606743436163
sum de = 4.549783096145676e-05
Info: CFL hydro = 0.0019861434279621203 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019861434279621203 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.1713e+04 | 12514 | 1 | 1.745e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.29672828531443 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7041254057538218, dt = 0.0019861434279621203 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.7%)
patch tree reduce : 1743.00 ns (0.6%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 299.24 us (94.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5892600287677805
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.685681322233828e-05,-7.51471737563644e-06,-7.662044748926612e-09)
sum a = (1.427709133330317e-05,-2.1133894499010465e-05,8.360848065930694e-08)
sum e = 0.010098642367643396
sum de = 4.483201364607309e-05
Info: CFL hydro = 0.001995579337993726 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001995579337993726 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2251e+04 | 12514 | 1 | 1.521e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.995832968088315 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7061115491817839, dt = 0.001995579337993726 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.6%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 1092.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 337.40 us (94.7%)
LB move op cnt : 0
LB apply : 3.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.591897075275692
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6827888244344776e-05,-7.5559830896101815e-06,-7.475296275888002e-09)
sum a = (1.454369639126708e-05,-2.0308682685229243e-05,1.0360118043802744e-07)
sum e = 0.010105743849415313
sum de = 4.419487020969561e-05
Info: CFL hydro = 0.0020162440102016446 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020162440102016446 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1464e+04 | 12514 | 1 | 1.536e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.767273935328994 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7081071285197776, dt = 0.0020162440102016446 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.5%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 346.20 us (95.0%)
LB move op cnt : 0
LB apply : 3.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (73.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5971711682915126
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6798298587837287e-05,-7.596106961606491e-06,-7.246462507085531e-09)
sum a = (1.4679861684342318e-05,-1.954159608371891e-05,1.2030525825830958e-07)
sum e = 0.010112933353165019
sum de = 4.364088656954245e-05
Info: CFL hydro = 0.002048447508733812 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002048447508733812 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1054e+04 | 12514 | 1 | 1.544e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.01351582343186 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7101233725299793, dt = 0.002048447508733812 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (2.0%)
patch tree reduce : 1903.00 ns (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 284.90 us (93.9%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.595972510787918
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6768090390513108e-05,-7.635363578537959e-06,-6.9831837520930526e-09)
sum a = (1.4676154699166791e-05,-1.8802426420694637e-05,1.3371343938260788e-07)
sum e = 0.010120250310644915
sum de = 4.321079612205191e-05
Info: CFL hydro = 0.0020724827756600124 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020724827756600124 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.3094e+04 | 12514 | 1 | 1.712e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.07373231031808 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.712171820038713, dt = 0.0020724827756600124 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.5%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 331.76 us (94.9%)
LB move op cnt : 0
LB apply : 3.27 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.601006872303021
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6737678109468384e-05,-7.673574208308574e-06,-6.692331974487792e-09)
sum a = (1.4495082845306411e-05,-1.81489208774119e-05,1.4516364587007743e-07)
sum e = 0.010127658779532443
sum de = 4.28701578588826e-05
Info: CFL hydro = 0.0019496688166574928 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019496688166574928 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0438e+04 | 12514 | 1 | 2.071e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.033732298836306 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.714244302814373, dt = 0.0019496688166574928 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.7%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 329.08 us (95.0%)
LB move op cnt : 0
LB apply : 3.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.601726066805178
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.670960513259924e-05,-7.708281403907713e-06,-6.397445762961012e-09)
sum a = (1.4163334201219407e-05,-1.762485560331501e-05,1.4850362566151085e-07)
sum e = 0.010134593277467744
sum de = 4.2603592467616144e-05
Info: CFL hydro = 0.001965403411461613 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001965403411461613 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.0848e+04 | 12514 | 1 | 1.766e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.73724047615505 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7161939716310305, dt = 0.001965403411461613 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.8%)
patch tree reduce : 1453.00 ns (0.5%)
gen split merge : 802.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 278.61 us (94.1%)
LB move op cnt : 0
LB apply : 3.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6093974748281923
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.668209186723561e-05,-7.742410478375675e-06,-6.102320303247798e-09)
sum a = (1.3659648552324813e-05,-1.7158512703644765e-05,1.461914656382729e-07)
sum e = 0.010141621753675148
sum de = 4.250997784782193e-05
Info: CFL hydro = 0.0019928168766518645 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019928168766518645 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1236e+04 | 12514 | 1 | 1.540e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.931212563053975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.718159375042492, dt = 0.0019928168766518645 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.6%)
patch tree reduce : 1442.00 ns (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 318.85 us (94.7%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.613472910340419
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6655365661817874e-05,-7.776145976107234e-06,-5.813259646900045e-09)
sum a = (1.2999864260634483e-05,-1.676317032000201e-05,1.4005890749156512e-07)
sum e = 0.010148749459143274
sum de = 4.245374567060413e-05
Info: CFL hydro = 0.0020219489232696348 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020219489232696348 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.9242e+04 | 12514 | 1 | 1.579e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.42840095702169 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7201521919191439, dt = 0.0020219489232696348 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.4%)
patch tree reduce : 1884.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 349.34 us (95.0%)
LB move op cnt : 0
LB apply : 3.24 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6132331788397
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.662973801490899e-05,-7.809646327798904e-06,-5.536178222388987e-09)
sum a = (1.2215691003288385e-05,-1.6378922076621754e-05,1.3148097082990942e-07)
sum e = 0.0101559740675689
sum de = 4.237445381393451e-05
Info: CFL hydro = 0.002016456501039071 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002016456501039071 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.9808e+04 | 12514 | 1 | 1.568e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.42196630648142 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7221741408424136, dt = 0.002016456501039071 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.7%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 317.30 us (94.7%)
LB move op cnt : 0
LB apply : 3.11 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6158702253476105
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6605898384507348e-05,-7.842285246539133e-06,-5.279724638894462e-09)
sum a = (1.137031742955103e-05,-1.5967018312381418e-05,1.152578621034672e-07)
sum e = 0.010163155771346986
sum de = 4.222130358033096e-05
Info: CFL hydro = 0.0019330741540929636 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019330741540929636 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1918e+04 | 12514 | 1 | 1.528e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.51969674966717 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7241905973434527, dt = 0.0008094026565476087 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.7%)
patch tree reduce : 1953.00 ns (0.6%)
gen split merge : 1071.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 300.24 us (94.3%)
LB move op cnt : 0
LB apply : 2.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.617068882851208
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6597547548893308e-05,-7.854793700567197e-06,-5.2027912156491735e-09)
sum a = (1.0994623098548419e-05,-1.5827284146915394e-05,1.0520768739645042e-07)
sum e = 0.010165795265166542
sum de = 4.171092968260803e-05
Info: CFL hydro = 0.0019445283897247452 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019445283897247452 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6769e+04 | 12514 | 1 | 1.874e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.546929126739187 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 465 [SPH][rank=0]
Info: time since start : 194.982443421 (s) [SPH][rank=0]
Info: dump to orztang_00029.vtk [VTK Dump][rank=0]
- took 2.37 ms, bandwidth = 282.26 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 950.06 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 945.22 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000029.npy
Saving metadata to plots/rho_slice_0000029.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 946.18 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000029.npy
Saving metadata to plots/vy_slice_0000029.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00572704 s
Info: compute_slice took 947.14 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000029.npy
Saving metadata to plots/By_slice_0000029.json
---------------- t = 0.7250000000000003, dt = 0.0019445283897247452 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.91 us (2.7%)
patch tree reduce : 1763.00 ns (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 378.46 us (93.9%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6209045868627134
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6576320236138668e-05,-7.88551375332078e-06,-5.002279199743064e-09)
sum a = (1.0095773782061492e-05,-1.5403064775270154e-05,7.894893931936888e-08)
sum e = 0.01017290587536651
sum de = 4.204658285499518e-05
Info: CFL hydro = 0.001964931763049701 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001964931763049701 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.9154e+04 | 12514 | 1 | 1.581e-01 | 0.0% | 1.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.278332124243896 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.726944528389725, dt = 0.001964931763049701 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (2.0%)
patch tree reduce : 1443.00 ns (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.4%)
LB compute : 281.56 us (93.9%)
LB move op cnt : 0
LB apply : 3.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.16 us (95.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6233019018699055
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.655735664856879e-05,-7.915367271239403e-06,-4.8726803617725775e-09)
sum a = (9.150800882566265e-06,-1.4974128791660787e-05,5.151606223794688e-08)
sum e = 0.010179856566354149
sum de = 4.1665083091342267e-05
Info: CFL hydro = 0.001991974124350811 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001991974124350811 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1678e+04 | 12514 | 1 | 1.532e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.169782019948265 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7289094601527747, dt = 0.001991974124350811 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.8%)
patch tree reduce : 1542.00 ns (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1183.00 ns (0.4%)
LB compute : 293.10 us (94.1%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6233019018699046
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.654005689362636e-05,-7.944773933357968e-06,-4.7970135645707005e-09)
sum a = (8.208825563019199e-06,-1.4547253885371764e-05,1.916646937570765e-08)
sum e = 0.01018686606812158
sum de = 4.122661846982047e-05
Info: CFL hydro = 0.0019760684715715475 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019760684715715475 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.6650e+04 | 12514 | 1 | 1.633e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.924132788698444 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7309014342771255, dt = 0.0019760684715715475 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (2.0%)
patch tree reduce : 1663.00 ns (0.6%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 271.67 us (93.8%)
LB move op cnt : 0
LB apply : 3.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6259389483778177
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6524773887473964e-05,-7.973095141225268e-06,-4.7913590846834564e-09)
sum a = (7.273164804361328e-06,-1.4158116585598223e-05,-1.540844701336438e-08)
sum e = 0.010193765965525828
sum de = 4.05234201653011e-05
Info: CFL hydro = 0.0019796279319816085 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019796279319816085 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2176e+04 | 12514 | 1 | 1.523e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.71459731763887 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.732877502748697, dt = 0.0019796279319816085 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.7%)
patch tree reduce : 1442.00 ns (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 296.85 us (94.3%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6276170688828517
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6511300192135898e-05,-8.00073846330827e-06,-4.856023277871468e-09)
sum a = (6.368230347563413e-06,-1.382905786867956e-05,-4.910318066223133e-08)
sum e = 0.010200635581631973
sum de = 3.948091451783205e-05
Info: CFL hydro = 0.0019647420081337014 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019647420081337014 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.9929e+04 | 12514 | 1 | 1.566e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.51924791756952 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7348571306806786, dt = 0.0019647420081337014 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.6%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 1123.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 326.57 us (94.6%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.630973309892921
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6499683979218213e-05,-8.027583287321513e-06,-4.9858498775974535e-09)
sum a = (5.521600483102232e-06,-1.3493674152477225e-05,-7.763784426533893e-08)
sum e = 0.010207394502122673
sum de = 3.805151639351595e-05
Info: CFL hydro = 0.0019525207867937561 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019525207867937561 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8712e+04 | 12514 | 1 | 1.821e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.83664371406247 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7368218726888123, dt = 0.0019525207867937561 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.3%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 376.58 us (95.6%)
LB move op cnt : 0
LB apply : 3.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (71.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6374460604123384
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.648973464412866e-05,-8.053600495356276e-06,-5.165471008501907e-09)
sum a = (4.7387751384899904e-06,-1.317854553410039e-05,-9.60779411383209e-08)
sum e = 0.01021405314115086
sum de = 3.628566323141354e-05
Info: CFL hydro = 0.001985991303249893 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001985991303249893 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7766e+04 | 12514 | 1 | 1.847e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.06379230056536 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.738774393475606, dt = 0.001985991303249893 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.7%)
patch tree reduce : 1402.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.4%)
LB compute : 327.56 us (94.6%)
LB move op cnt : 0
LB apply : 3.17 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.639124180917372
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.648108771929438e-05,-8.079465324587646e-06,-5.3742833002644554e-09)
sum a = (4.0224574373112724e-06,-1.2918203910709653e-05,-1.1108751954287724e-07)
sum e = 0.010220773928730787
sum de = 3.4149331365473703e-05
Info: CFL hydro = 0.001990537324240351 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001990537324240351 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5256e+04 | 12514 | 1 | 1.918e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.28261239672531 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.740760384778856, dt = 0.001990537324240351 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.8%)
patch tree reduce : 1733.00 ns (0.6%)
gen split merge : 832.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 273.78 us (93.9%)
LB move op cnt : 0
LB apply : 3.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6410420329231252
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6473792167992572e-05,-8.104920973534229e-06,-5.610311600260438e-09)
sum a = (3.370602018761833e-06,-1.2726708386172217e-05,-1.159450339358273e-07)
sum e = 0.010227429907081533
sum de = 3.1621083877093464e-05
Info: CFL hydro = 0.0020155475635176318 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020155475635176318 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8994e+04 | 12514 | 1 | 2.121e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.78204003049662 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7427509221030963, dt = 0.0020155475635176318 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.6%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 1172.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 332.58 us (94.6%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (74.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6434393479303187
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.64676473305765e-05,-8.130381670118953e-06,-5.8488388627626705e-09)
sum a = (2.7645499878829007e-06,-1.2583418219934986e-05,-1.1574613098656731e-07)
sum e = 0.010234097398406208
sum de = 2.876885617766195e-05
Info: CFL hydro = 0.002014334564824072 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002014334564824072 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2210e+04 | 12514 | 1 | 1.522e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.66757716959351 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.744766469666614, dt = 0.002014334564824072 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.7%)
patch tree reduce : 1934.00 ns (0.6%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1273.00 ns (0.4%)
LB compute : 315.28 us (94.3%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (71.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6463161259389483
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.646268936532684e-05,-8.155584480310795e-06,-6.0817898459766195e-09)
sum a = (2.2943429312268034e-06,-1.245627962439295e-05,-1.1098893891632677e-07)
sum e = 0.010240669591483922
sum de = 2.55501952199278e-05
Info: CFL hydro = 0.0019569297470945534 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019569297470945534 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1200e+04 | 12514 | 1 | 1.541e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.05358101837185 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.746780804231438, dt = 0.0019569297470945534 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 1784.00 ns (0.5%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 310.10 us (94.5%)
LB move op cnt : 0
LB apply : 3.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.645836662937509
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.645867307455803e-05,-8.179832494611642e-06,-6.29419611393098e-09)
sum a = (1.999550907056496e-06,-1.2393580277179463e-05,-9.876570033040312e-08)
sum e = 0.010246953105108935
sum de = 2.210555838775466e-05
Info: CFL hydro = 0.0019217532333240476 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019217532333240476 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.8795e+04 | 12514 | 1 | 1.588e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.3586906653061 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7487377339785326, dt = 0.0012622660214677284 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.5%)
patch tree reduce : 1462.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1453.00 ns (0.4%)
LB compute : 343.31 us (94.9%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6443982739331946
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6456437553030483e-05,-8.195415140771494e-06,-6.4069046919472265e-09)
sum a = (1.905195585781769e-06,-1.2395480477382889e-05,-8.373762176156304e-08)
sum e = 0.010250794402149866
sum de = 1.9504268822777808e-05
Info: CFL hydro = 0.0018939971696895128 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018939971696895128 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2147e+04 | 12514 | 1 | 1.523e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.8298690220353 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 478 [SPH][rank=0]
Info: time since start : 201.13269468500002 (s) [SPH][rank=0]
Info: dump to orztang_00030.vtk [VTK Dump][rank=0]
- took 2.43 ms, bandwidth = 274.83 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 946.82 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 946.50 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000030.npy
Saving metadata to plots/rho_slice_0000030.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 943.63 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000030.npy
Saving metadata to plots/vy_slice_0000030.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005913135000000001 s
Info: compute_slice took 988.58 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000030.npy
Saving metadata to plots/By_slice_0000030.json
---------------- t = 0.7500000000000003, dt = 0.0018939971696895128 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.81 us (2.6%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1203.00 ns (0.3%)
LB compute : 359.81 us (93.9%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6489531724468582
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.64528886687414e-05,-8.218893344991235e-06,-6.556018794087294e-09)
sum a = (1.8036101064322485e-06,-1.243018206821749e-05,-5.812139504346343e-08)
sum e = 0.010256913124111207
sum de = 1.6492722222309224e-05
Info: CFL hydro = 0.0018542244541786422 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018542244541786422 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2121e+04 | 12514 | 1 | 1.524e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.74429083140998 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7518939971696899, dt = 0.0018542244541786422 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.00 us (1.6%)
patch tree reduce : 1262.00 ns (0.4%)
gen split merge : 772.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 288.54 us (94.7%)
LB move op cnt : 0
LB apply : 2.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.23 us (95.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.65159021895477
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6449640572081416e-05,-8.24197455490937e-06,-6.639530375636966e-09)
sum a = (1.8182229134794145e-06,-1.2485272749132482e-05,-2.5892505602653136e-08)
sum e = 0.010262659428594573
sum de = 1.2799356060439525e-05
Info: CFL hydro = 0.002055648100861708 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002055648100861708 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2209e+04 | 12514 | 1 | 1.522e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.851825018257955 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7537482216238685, dt = 0.002055648100861708 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.95 us (1.7%)
patch tree reduce : 1202.00 ns (0.4%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 274.67 us (94.1%)
LB move op cnt : 0
LB apply : 3.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (67.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6554259229662778
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.644588939789039e-05,-8.267690957368728e-06,-6.662876458139438e-09)
sum a = (1.9729432100441186e-06,-1.2552561747045308e-05,1.06320679454949e-08)
sum e = 0.01026900779216392
sum de = 9.049165187525646e-06
Info: CFL hydro = 0.002033703764288873 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002033703764288873 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1822e+04 | 12514 | 1 | 1.529e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.38658605001909 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7558038697247301, dt = 0.002033703764288873 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.7%)
patch tree reduce : 1352.00 ns (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 312.45 us (94.4%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (71.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.656624580469874
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6441717990615446e-05,-8.293288310695937e-06,-6.6037131464119605e-09)
sum a = (2.2129649160778644e-06,-1.2642318259204931e-05,4.3881404524572935e-08)
sum e = 0.010275118856276983
sum de = 5.32076318190512e-06
Info: CFL hydro = 0.002038398455946516 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002038398455946516 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2769e+04 | 12514 | 1 | 1.994e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.72297216426686 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.757837573489019, dt = 0.002038398455946516 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (2.0%)
patch tree reduce : 1543.00 ns (0.5%)
gen split merge : 1072.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 270.19 us (93.6%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6590218954770664
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6436963019823736e-05,-8.319149661793432e-06,-6.4804557087038075e-09)
sum a = (2.4957610504254467e-06,-1.2670607963180788e-05,7.527145640642028e-08)
sum e = 0.010281147404478852
sum de = 1.9816032936197797e-06
Info: CFL hydro = 0.0020223727312702403 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020223727312702403 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.1992e+04 | 12514 | 1 | 1.738e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.21638976363528 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7598759719449656, dt = 0.0020223727312702403 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.8%)
patch tree reduce : 1654.00 ns (0.5%)
gen split merge : 1113.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 294.76 us (94.1%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6595013584785043
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6431627435129842e-05,-8.34480318667057e-06,-6.296236051180575e-09)
sum a = (2.8300278485955957e-06,-1.2639589349471137e-05,1.0837746532889159e-07)
sum e = 0.010287015937830737
sum de = -1.059588791019173e-06
Info: CFL hydro = 0.002056725551460621 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002056725551460621 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.6434e+04 | 12514 | 1 | 1.637e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.46876885131087 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7618983446762359, dt = 0.002056725551460621 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.8%)
patch tree reduce : 1392.00 ns (0.4%)
gen split merge : 832.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 292.98 us (94.2%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6638165254914505
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6425468838513564e-05,-8.370767987446676e-06,-6.039857004193122e-09)
sum a = (3.208869754310054e-06,-1.2482459679220825e-05,1.3955302681758978e-07)
sum e = 0.010292889217483255
sum de = -3.8025565918811747e-06
Info: CFL hydro = 0.0020366961524823472 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020366961524823472 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5403e+04 | 12514 | 1 | 1.913e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.69724623906218 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7639550702276965, dt = 0.0020366961524823472 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.96 us (1.6%)
patch tree reduce : 1723.00 ns (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 286.62 us (92.0%)
LB move op cnt : 0
LB apply : 10.76 us (3.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.665015182995046
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6418543758917438e-05,-8.396029378745188e-06,-5.7235701044589915e-09)
sum a = (3.5875249778973927e-06,-1.225071038046045e-05,1.705550863852379e-07)
sum e = 0.010298574578186967
sum de = -6.226194610631285e-06
Info: CFL hydro = 0.0020000149000526032 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020000149000526032 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1637e+04 | 12514 | 1 | 1.533e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.83198750692793 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7659917663801789, dt = 0.0020000149000526032 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.6%)
patch tree reduce : 1353.00 ns (0.4%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 332.32 us (94.8%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (71.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.665974108997922
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6410983052688756e-05,-8.420294980589394e-06,-5.350886502688642e-09)
sum a = (3.9647393771672495e-06,-1.194244014936686e-05,2.0174724290795062e-07)
sum e = 0.010304040063613691
sum de = -8.297086592575997e-06
Info: CFL hydro = 0.002006855464588402 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002006855464588402 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.0557e+04 | 12514 | 1 | 1.774e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.59584880085786 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7679917812802315, dt = 0.002006855464588402 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.5%)
patch tree reduce : 1753.00 ns (0.5%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 352.67 us (94.8%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (71.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6707687390123067
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6402649176594486e-05,-8.443953459336222e-06,-4.914816556887967e-09)
sum a = (4.346802411438506e-06,-1.157863570817234e-05,2.2910860714944694e-07)
sum e = 0.010309425093768443
sum de = -1.007008089863007e-05
Info: CFL hydro = 0.0020305575937792633 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020305575937792633 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1691e+04 | 12514 | 1 | 1.532e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.16274723608007 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7699986367448199, dt = 0.0020305575937792633 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.4%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 352.69 us (95.2%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (71.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.670529007511586
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6393439371305374e-05,-8.467099494533875e-06,-4.422143183167204e-09)
sum a = (4.708952843798206e-06,-1.1158096488293098e-05,2.604564117592424e-07)
sum e = 0.010314762939417984
sum de = -1.163940605039894e-05
Info: CFL hydro = 0.0019619429152097564 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019619429152097564 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.9038e+04 | 12514 | 1 | 1.813e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.32825610443454 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7720291943385992, dt = 0.0019619429152097564 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.7%)
patch tree reduce : 1452.00 ns (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.4%)
LB compute : 292.95 us (94.4%)
LB move op cnt : 0
LB apply : 3.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6736455170209377
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6383832990980083e-05,-8.488564078332428e-06,-3.8793158100456454e-09)
sum a = (5.00421007627514e-06,-1.0715732666172152e-05,2.9187494687431215e-07)
sum e = 0.010319779572323832
sum de = -1.3024779705209227e-05
Info: CFL hydro = 0.001976709480508435 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001976709480508435 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.9184e+04 | 12514 | 1 | 1.580e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.69223540842539 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.773991137253809, dt = 0.0010088627461913857 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.9%)
patch tree reduce : 1402.00 ns (0.5%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 286.53 us (94.2%)
LB move op cnt : 0
LB apply : 3.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (71.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.67580310052741
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6378494790942215e-05,-8.498940835534247e-06,-3.554033363409941e-09)
sum a = (5.138786947930066e-06,-1.0464403568965889e-05,3.1087014749412936e-07)
sum e = 0.010322103996826844
sum de = -1.3838364874663482e-05
Info: CFL hydro = 0.0019454245331681072 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019454245331681072 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.2763e+04 | 12514 | 1 | 1.720e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.117828578183826 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 491 [SPH][rank=0]
Info: time since start : 207.332664305 (s) [SPH][rank=0]
Info: dump to orztang_00031.vtk [VTK Dump][rank=0]
- took 2.39 ms, bandwidth = 279.96 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 972.77 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 978.44 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000031.npy
Saving metadata to plots/rho_slice_0000031.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 963.63 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000031.npy
Saving metadata to plots/vy_slice_0000031.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005639906 s
Info: compute_slice took 978.87 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000031.npy
Saving metadata to plots/By_slice_0000031.json
---------------- t = 0.7750000000000004, dt = 0.0019454245331681072 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.11 us (2.4%)
patch tree reduce : 1823.00 ns (0.5%)
gen split merge : 1162.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 364.27 us (94.1%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6767620265302865
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6368429783946807e-05,-8.519171764681027e-06,-2.939677176714444e-09)
sum a = (5.342919339440559e-06,-1.001409364697999e-05,3.5076282655621915e-07)
sum e = 0.010327149204135138
sum de = -1.4600268130898333e-05
Info: CFL hydro = 0.001888691277329336 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001888691277329336 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5877e+04 | 12514 | 1 | 1.900e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.86842161471603 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7769454245331685, dt = 0.001888691277329336 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.6%)
patch tree reduce : 1343.00 ns (0.4%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.3%)
LB compute : 297.56 us (94.6%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6762825635288476
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.635814009671383e-05,-8.537647274017665e-06,-2.2383903875159146e-09)
sum a = (5.508308207547904e-06,-9.553757785911337e-06,3.829565661378848e-07)
sum e = 0.010331719024408114
sum de = -1.5720772522363928e-05
Info: CFL hydro = 0.0018438066217258467 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018438066217258467 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5426e+04 | 12514 | 1 | 2.258e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.115131645664857 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7788341158104979, dt = 0.0018438066217258467 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.89 us (1.3%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.3%)
LB compute : 371.89 us (95.5%)
LB move op cnt : 0
LB apply : 3.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6755633690266913
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.634782765730991e-05,-8.55482783972266e-06,-1.5018905174710995e-09)
sum a = (5.658763609094066e-06,-9.080496517825972e-06,4.040516106824747e-07)
sum e = 0.010336083026463041
sum de = -1.65927197516291e-05
Info: CFL hydro = 0.002012016884630761 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002012016884630761 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0421e+04 | 12514 | 1 | 1.556e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.65727668289162 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7806779224322238, dt = 0.002012016884630761 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.0%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 342.32 us (94.5%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 us (76.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6805977305417934
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6336303424049562e-05,-8.572661650908096e-06,-6.694842631072968e-10)
sum a = (5.802904285174937e-06,-8.55618444063228e-06,4.21092895013828e-07)
sum e = 0.010340798353669255
sum de = -1.746129657358695e-05
Info: CFL hydro = 0.00204019998703707 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00204019998703707 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5505e+04 | 12514 | 1 | 1.910e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.91508811952074 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7826899393168545, dt = 0.00204019998703707 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.6%)
patch tree reduce : 1183.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1443.00 ns (0.4%)
LB compute : 316.16 us (94.9%)
LB move op cnt : 0
LB apply : 3.16 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.685392360556177
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6324319332065112e-05,-8.58959051591657e-06,2.0677313174654335e-10)
sum a = (5.920990917778883e-06,-8.069621314771837e-06,4.377941773424834e-07)
sum e = 0.01034542061731987
sum de = -1.8415361313280827e-05
Info: CFL hydro = 0.002044562062375713 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002044562062375713 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.8791e+04 | 12514 | 1 | 1.588e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.24431216297001 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7847301393038916, dt = 0.002044562062375713 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.5%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1243.00 ns (0.3%)
LB compute : 346.40 us (94.9%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (71.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6844334345533016
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6312093038489702e-05,-8.605593014472193e-06,1.1189074758654646e-09)
sum a = (5.987394983950064e-06,-7.618016600086751e-06,4.4663393756269003e-07)
sum e = 0.01034992618460933
sum de = -1.9382185320229104e-05
Info: CFL hydro = 0.002015636053245799 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002015636053245799 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3998e+04 | 12514 | 1 | 1.955e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.64227077391967 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7867747013662673, dt = 0.002015636053245799 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.5%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 345.11 us (94.9%)
LB move op cnt : 0
LB apply : 3.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6829950455489846
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.62999567456777e-05,-8.620486496452682e-06,2.0281956622128618e-09)
sum a = (5.986414550608158e-06,-7.190525217439144e-06,4.4427509447087445e-07)
sum e = 0.010354241852543045
sum de = -2.040809362394132e-05
Info: CFL hydro = 0.0019820169762707856 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019820169762707856 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.9759e+04 | 12514 | 1 | 1.794e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.449955854866765 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7887903374195131, dt = 0.0019820169762707856 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.6%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 344.14 us (94.9%)
LB move op cnt : 0
LB apply : 3.23 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6844334345532994
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.628809255850982e-05,-8.634307405980525e-06,2.906379156998829e-09)
sum a = (5.966551621100568e-06,-6.800908510034208e-06,4.3139367577171826e-07)
sum e = 0.0103583730454324
sum de = -2.1536369599870666e-05
Info: CFL hydro = 0.0019514382376657673 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019514382376657673 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2682e+04 | 12514 | 1 | 1.996e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.74027458854094 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7907723543957839, dt = 0.0019514382376657673 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 307.89 us (94.4%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.685632092056895
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.627646888586126e-05,-8.647192845433397e-06,3.735451676116761e-09)
sum a = (5.973806269675547e-06,-6.4426915688756754e-06,4.121122943228801e-07)
sum e = 0.010362335111463769
sum de = -2.2810594410712715e-05
Info: CFL hydro = 0.00192291752010268 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00192291752010268 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4305e+04 | 12514 | 1 | 2.304e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.485941277007694 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7927237926334496, dt = 0.00192291752010268 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.5%)
patch tree reduce : 1522.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 362.44 us (95.3%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6870704810612107
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6264974670624383e-05,-8.659232090809228e-06,4.50909641460293e-09)
sum a = (5.986010810363639e-06,-6.0683652501085915e-06,3.8063127496020343e-07)
sum e = 0.010366138196304046
sum de = -2.4278525530897947e-05
Info: CFL hydro = 0.002039688606977473 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002039688606977473 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0814e+04 | 12514 | 1 | 1.549e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.704475343632275 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7946467101535523, dt = 0.002039688606977473 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.8%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.4%)
LB compute : 322.34 us (94.4%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (71.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6901869905705613
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6252753338410455e-05,-8.671249766954927e-06,5.255197987756919e-09)
sum a = (5.965631612306187e-06,-5.6117935178145555e-06,3.496377613086831e-07)
sum e = 0.010370105234103321
sum de = -2.605561136110823e-05
Info: CFL hydro = 0.001995900383176412 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001995900383176412 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0534e+04 | 12514 | 1 | 1.554e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.25518612410742 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7966863987605297, dt = 0.001995900383176412 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.8%)
patch tree reduce : 1703.00 ns (0.6%)
gen split merge : 741.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 271.54 us (94.0%)
LB move op cnt : 0
LB apply : 3.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (65.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.690906185072719
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6240867315598732e-05,-8.681984715707238e-06,5.921431571183314e-09)
sum a = (5.934857801447637e-06,-5.131994461551399e-06,3.0198984915851655e-07)
sum e = 0.01037383575270791
sum de = -2.8094367211160275e-05
Info: CFL hydro = 0.001962060466527712 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001962060466527712 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5109e+04 | 12514 | 1 | 2.271e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.642420701330245 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7986822991437061, dt = 0.001317700856294235 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.5%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 345.76 us (95.0%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.689707527569124
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6233077659122092e-05,-8.688268333643927e-06,6.271813610952449e-09)
sum a = (5.884486195263151e-06,-4.8184015691615745e-06,2.713160233734591e-07)
sum e = 0.010376093474056375
sum de = -2.9575037615482575e-05
Info: CFL hydro = 0.0019462785065837613 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019462785065837613 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.3527e+04 | 12514 | 1 | 1.702e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.872254275999676 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 504 [SPH][rank=0]
Info: time since start : 213.852811075 (s) [SPH][rank=0]
Info: dump to orztang_00032.vtk [VTK Dump][rank=0]
- took 2.49 ms, bandwidth = 268.19 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 974.66 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 975.90 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000032.npy
Saving metadata to plots/rho_slice_0000032.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 968.54 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000032.npy
Saving metadata to plots/vy_slice_0000032.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00550361 s
Info: compute_slice took 978.07 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000032.npy
Saving metadata to plots/By_slice_0000032.json
---------------- t = 0.8000000000000004, dt = 0.0019462785065837613 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.19 us (2.9%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 359.41 us (93.7%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 25.08 us (95.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6889883330669644
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6221657997472406e-05,-8.697439674242548e-06,6.7796606924848345e-09)
sum a = (5.759990706413023e-06,-4.30965310779628e-06,2.2851205380979498e-07)
sum e = 0.010379722462008306
sum de = -3.164679272686438e-05
Info: CFL hydro = 0.0020689801598576573 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020689801598576573 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0429e+04 | 12514 | 1 | 1.556e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.03240073593518 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8019462785065842, dt = 0.0020689801598576573 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.8%)
patch tree reduce : 1563.00 ns (0.5%)
gen split merge : 1052.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.4%)
LB compute : 279.58 us (94.1%)
LB move op cnt : 0
LB apply : 3.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.68754994406265
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.620986184242695e-05,-8.705861177920083e-06,7.210793375126439e-09)
sum a = (5.631743120827948e-06,-3.7338293926137466e-06,1.8964659750594742e-07)
sum e = 0.010383362794391643
sum de = -3.421097693885586e-05
Info: CFL hydro = 0.002051897164113359 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002051897164113359 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.9192e+04 | 12514 | 1 | 1.580e-01 | 0.0% | 1.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.13518148644379 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8040152586664419, dt = 0.002051897164113359 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.6%)
patch tree reduce : 1593.00 ns (0.5%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 300.85 us (94.4%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (71.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.685632092056896
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6198438755543283e-05,-8.712926927941353e-06,7.559722761734344e-09)
sum a = (5.5241045258656156e-06,-3.131578895327094e-06,1.5035805324361518e-07)
sum e = 0.010386835205285452
sum de = -3.668264356289431e-05
Info: CFL hydro = 0.002051867189421786 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002051867189421786 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1111e+04 | 12514 | 1 | 1.543e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.878517280920384 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8060671558305552, dt = 0.002051867189421786 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.5%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 310.22 us (94.6%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6887486015662465
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6187214458379524e-05,-8.71873463388366e-06,7.82792949157336e-09)
sum a = (5.433970557397519e-06,-2.4741421543403992e-06,1.1684068377717773e-07)
sum e = 0.010390217804709206
sum de = -3.9007005307175436e-05
Info: CFL hydro = 0.002040901054940289 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002040901054940289 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1330e+04 | 12514 | 1 | 1.539e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.00713359389247 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.808119023019977, dt = 0.002040901054940289 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.6%)
patch tree reduce : 1533.00 ns (0.5%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 319.13 us (94.7%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6925843055777534
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.617621673360271e-05,-8.723109626777543e-06,8.032003171012314e-09)
sum a = (5.406445503433508e-06,-1.8048835360202478e-06,8.991902878813206e-08)
sum e = 0.010393490053419597
sum de = -4.111516453139304e-05
Info: CFL hydro = 0.002037488625559475 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002037488625559475 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0669e+04 | 12514 | 1 | 1.551e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.36280658452956 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8101599240749172, dt = 0.002037488625559475 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.8%)
patch tree reduce : 1532.00 ns (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 294.18 us (94.1%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (71.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6916253795748766
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.616522925034062e-05,-8.726104111142958e-06,8.187739952355447e-09)
sum a = (5.436568023201754e-06,-1.1076632333464798e-06,7.04175991048071e-08)
sum e = 0.010396674140891562
sum de = -4.296165210938156e-05
Info: CFL hydro = 0.0020101263573627966 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020101263573627966 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.9486e+04 | 12514 | 1 | 1.801e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.72882047458125 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8121974127004767, dt = 0.0020101263573627966 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.6%)
patch tree reduce : 1843.00 ns (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 355.85 us (94.9%)
LB move op cnt : 0
LB apply : 3.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (71.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6940226945820687
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6154270374518027e-05,-8.727620364984824e-06,8.309421253757421e-09)
sum a = (5.49958087078704e-06,-3.827137705002602e-07,5.241146967139648e-08)
sum e = 0.010399730766508868
sum de = -4.452782292459301e-05
Info: CFL hydro = 0.001971529226263909 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001971529226263909 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4205e+04 | 12514 | 1 | 2.309e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.344997772834763 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8142075390578395, dt = 0.001971529226263909 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.5%)
patch tree reduce : 1372.00 ns (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 371.57 us (95.3%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.694022694582069
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6143364458206034e-05,-8.72764627635766e-06,8.39465470032204e-09)
sum a = (5.549708321346506e-06,3.587415812514593e-07,3.768875072226414e-08)
sum e = 0.01040265408981461
sum de = -4.5770993371368436e-05
Info: CFL hydro = 0.0019338892714786922 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019338892714786922 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1036e+04 | 12514 | 1 | 1.544e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.96083980381339 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8161790682841034, dt = 0.0019338892714786922 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.8%)
patch tree reduce : 1513.00 ns (0.5%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 295.08 us (93.9%)
LB move op cnt : 0
LB apply : 4.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.692824037078473
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6132582522956833e-05,-8.72622160941402e-06,8.453027435650121e-09)
sum a = (5.6038347000838475e-06,1.0895438290954873e-06,3.4945301614576434e-08)
sum e = 0.010405457172580538
sum de = -4.668241549185602e-05
Info: CFL hydro = 0.001981828557404583 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001981828557404583 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7823e+04 | 12514 | 1 | 2.164e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.16892674197588 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.818112957555582, dt = 0.001981828557404583 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.6%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 320.39 us (94.7%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.687549944062651
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.612142434610569e-05,-8.723355675025594e-06,8.519630268938504e-09)
sum a = (5.6402084006469585e-06,1.84117716368199e-06,3.339274540217456e-08)
sum e = 0.010408288526408354
sum de = -4.727188180106141e-05
Info: CFL hydro = 0.001945431225245725 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001945431225245725 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.9908e+04 | 12514 | 1 | 1.790e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.85662511097171 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8200947861129866, dt = 0.001945431225245725 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.7%)
patch tree reduce : 1803.00 ns (0.6%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 296.69 us (94.4%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6906664535719997
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6110415665346757e-05,-8.719028987277111e-06,8.583055108421351e-09)
sum a = (5.6657123194695495e-06,2.5646031591089836e-06,3.4232725813556744e-08)
sum e = 0.010410990580495657
sum de = -4.750013641619044e-05
Info: CFL hydro = 0.0020388918861646284 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020388918861646284 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.6629e+04 | 12514 | 1 | 2.210e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.692772937883355 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8220402173382323, dt = 0.0020388918861646284 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.5%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 328.31 us (95.0%)
LB move op cnt : 0
LB apply : 2.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6868307495604924
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.609883908240912e-05,-8.7130963509446e-06,8.653668997384388e-09)
sum a = (5.642358346073205e-06,3.3294270695537703e-06,5.557707240576495e-08)
sum e = 0.010413797268423808
sum de = -4.737784535526262e-05
Info: CFL hydro = 0.002039205548765416 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002039205548765416 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.8060e+04 | 12514 | 1 | 2.155e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.05468025863045 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8240791092243969, dt = 0.0009208907756035334 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 313.73 us (94.3%)
LB move op cnt : 0
LB apply : 3.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.688508870065526
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6093666894769263e-05,-8.709250615635057e-06,8.726608818238848e-09)
sum a = (5.595041373582549e-06,3.6841541038986133e-06,6.363854417839903e-08)
sum e = 0.010414840386657232
sum de = -4.710072000387885e-05
Info: CFL hydro = 0.0020439180701327143 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020439180701327143 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8610e+04 | 12514 | 1 | 1.824e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.17621254886016 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 517 [SPH][rank=0]
Info: time since start : 220.298220162 (s) [SPH][rank=0]
Info: dump to orztang_00033.vtk [VTK Dump][rank=0]
- took 2.41 ms, bandwidth = 277.96 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 953.89 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 951.69 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000033.npy
Saving metadata to plots/rho_slice_0000033.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 949.99 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000033.npy
Saving metadata to plots/vy_slice_0000033.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.0057323090000000005 s
Info: compute_slice took 956.43 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000033.npy
Saving metadata to plots/By_slice_0000033.json
---------------- t = 0.8250000000000004, dt = 0.0020439180701327143 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.36 us (2.4%)
patch tree reduce : 1974.00 ns (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 400.45 us (94.2%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (72.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.69042672207128
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6082252875484275e-05,-8.701557174062295e-06,8.860392656139e-09)
sum a = (5.49339314456574e-06,4.500998430515231e-06,7.982319991398305e-08)
sum e = 0.010417750253315409
sum de = -4.6371496709623255e-05
Info: CFL hydro = 0.0020304044881453405 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020304044881453405 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2802e+04 | 12514 | 1 | 1.993e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.92704417543499 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8270439180701331, dt = 0.0020304044881453405 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.7%)
patch tree reduce : 1884.00 ns (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 296.89 us (94.1%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6861115550583348
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6071202945714256e-05,-8.691583545208218e-06,9.039006094660605e-09)
sum a = (5.288372462326999e-06,5.325332371594638e-06,9.991290297747629e-08)
sum e = 0.010420398643277748
sum de = -4.5402320513678474e-05
Info: CFL hydro = 0.002053087380994483 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002053087380994483 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7183e+04 | 12514 | 1 | 2.188e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.40091920741547 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8290743225582784, dt = 0.002053087380994483 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (1.7%)
patch tree reduce : 1943.00 ns (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 377.52 us (94.9%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6853923605561785
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6060553592402688e-05,-8.679813306849401e-06,9.264531126595392e-09)
sum a = (4.989954132755774e-06,6.158973565341352e-06,1.2540692303176272e-07)
sum e = 0.010423039123548626
sum de = -4.3846814468504325e-05
Info: CFL hydro = 0.0020687870697821023 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020687870697821023 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.9911e+04 | 12514 | 1 | 1.566e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.1974433059168 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8311274099392729, dt = 0.0020687870697821023 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.8%)
patch tree reduce : 1432.00 ns (0.5%)
gen split merge : 751.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1243.00 ns (0.4%)
LB compute : 282.55 us (94.1%)
LB move op cnt : 0
LB apply : 3.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.683714240051143
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6050536779267462e-05,-8.666215932866497e-06,9.55014207285681e-09)
sum a = (4.665362166772762e-06,6.957940172162708e-06,1.471691442324121e-07)
sum e = 0.010425657815667497
sum de = -4.182994312750263e-05
Info: CFL hydro = 0.0020979707824623824 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020979707824623824 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.3672e+04 | 12514 | 1 | 1.699e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.84557841743516 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.833196197009055, dt = 0.0020979707824623824 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.8%)
patch tree reduce : 1583.00 ns (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 288.90 us (94.3%)
LB move op cnt : 0
LB apply : 3.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6839539715518614
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6041084741582825e-05,-8.650791931786519e-06,9.881409338451228e-09)
sum a = (4.344709492299461e-06,7.694702901858027e-06,1.5385140874490467e-07)
sum e = 0.010428279168227802
sum de = -3.926863123134781e-05
Info: CFL hydro = 0.0021311989817922317 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021311989817922317 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0892e+04 | 12514 | 1 | 1.547e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.82134364872407 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8352941677915174, dt = 0.0021311989817922317 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (0.2%)
patch tree reduce : 1423.00 ns (0.0%)
gen split merge : 841.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.0%)
LB compute : 3.01 ms (99.4%)
LB move op cnt : 0
LB apply : 3.47 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.681077193543232
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6032161661108086e-05,-8.633620135456643e-06,1.0216306901969723e-08)
sum a = (4.069723970180562e-06,8.372105440728455e-06,1.5537396564370902e-07)
sum e = 0.01043090853548929
sum de = -3.613301134099483e-05
Info: CFL hydro = 0.002095494719202535 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002095494719202535 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.5408e+04 | 12514 | 1 | 2.259e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.970643474169215 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8374253667733097, dt = 0.002095494719202535 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.3%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 384.73 us (95.2%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (72.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.683234777049704
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6023926600452344e-05,-8.615354592916154e-06,1.054351466233393e-08)
sum a = (3.8514733618517904e-06,8.94043258484251e-06,1.638990751086753e-07)
sum e = 0.010433447690537423
sum de = -3.2478081919037495e-05
Info: CFL hydro = 0.002063402737360755 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002063402737360755 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.9677e+04 | 12514 | 1 | 1.571e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.03129967441312 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8395208614925123, dt = 0.002063402737360755 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.9%)
patch tree reduce : 1462.00 ns (0.5%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.4%)
LB compute : 302.48 us (94.1%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (71.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6841937030525815
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6016208131273115e-05,-8.596311416582936e-06,1.0890636623496055e-08)
sum a = (3.6889750071629406e-06,9.415290368913657e-06,1.827713778615569e-07)
sum e = 0.010435922925187694
sum de = -2.8352902779054487e-05
Info: CFL hydro = 0.0020339819341359784 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020339819341359784 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0502e+04 | 12514 | 1 | 1.554e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.78589068484905 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.841584264229873, dt = 0.0020339819341359784 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.6%)
patch tree reduce : 1363.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1533.00 ns (0.5%)
LB compute : 303.97 us (94.5%)
LB move op cnt : 0
LB apply : 3.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.68179638804539
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.600887247252808e-05,-8.576670974642364e-06,1.1281860884724113e-08)
sum a = (3.565283228515214e-06,9.799417502345581e-06,2.0168967550613396e-07)
sum e = 0.010438341458912264
sum de = -2.3886334450670156e-05
Info: CFL hydro = 0.0020073353307425413 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020073353307425413 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.9865e+04 | 12514 | 1 | 1.567e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.73134202266475 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8436182461640089, dt = 0.0020073353307425413 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.6%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 363.78 us (94.9%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.682036119546108
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6001841546961187e-05,-8.556609603843557e-06,1.1705959434030268e-08)
sum a = (3.5302545327824227e-06,1.0051255210334275e-05,2.1999536371366006e-07)
sum e = 0.010440710227754654
sum de = -1.920277991385522e-05
Info: CFL hydro = 0.0019832796341020934 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019832796341020934 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0376e+04 | 12514 | 1 | 1.557e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.41418407597077 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8456255814947514, dt = 0.0019832796341020934 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.7%)
patch tree reduce : 1714.00 ns (0.5%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 342.16 us (94.6%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6808374620425117
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.599487522221211e-05,-8.536422392723951e-06,1.216064458582696e-08)
sum a = (3.608885617424979e-06,1.018160483729711e-05,2.3801355261107532e-07)
sum e = 0.010443035154038697
sum de = -1.4418478629096815e-05
Info: CFL hydro = 0.0019613215124203603 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019613215124203603 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0805e+04 | 12514 | 1 | 1.549e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.102969824308424 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8476088611288535, dt = 0.0019613215124203603 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.6%)
patch tree reduce : 1913.00 ns (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 363.31 us (94.8%)
LB move op cnt : 0
LB apply : 4.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6791593415374786
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.598771906350021e-05,-8.516323732245754e-06,1.2645333240352624e-08)
sum a = (3.7579124630397424e-06,1.0271679753580615e-05,2.51983127321631e-07)
sum e = 0.010445320501548111
sum de = -9.620729816973856e-06
Info: CFL hydro = 0.001941522272420947 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001941522272420947 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2388e+04 | 12514 | 1 | 2.006e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.20115421033352 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8495701826412738, dt = 0.000429817358726603 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.4%)
patch tree reduce : 1552.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1343.00 ns (0.4%)
LB compute : 337.33 us (88.8%)
LB move op cnt : 0
LB apply : 3.27 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.679638804538917
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5985957702712148e-05,-8.511820453048511e-06,1.2767339376281273e-08)
sum a = (3.7760950218801314e-06,1.0285617917989797e-05,2.558772794895116e-07)
sum e = 0.010445616633521714
sum de = -8.424646117368199e-06
Info: CFL hydro = 0.001937604756517771 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001937604756517771 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9449e+04 | 12514 | 1 | 2.105e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.350754512476012 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 530 [SPH][rank=0]
Info: time since start : 226.619715132 (s) [SPH][rank=0]
Info: dump to orztang_00034.vtk [VTK Dump][rank=0]
- took 2.39 ms, bandwidth = 280.15 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 966.79 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 961.33 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000034.npy
Saving metadata to plots/rho_slice_0000034.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 960.17 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000034.npy
Saving metadata to plots/vy_slice_0000034.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.003543154 s
Info: compute_slice took 965.29 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000034.npy
Saving metadata to plots/By_slice_0000034.json
---------------- t = 0.8500000000000004, dt = 0.001937604756517771 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.54 us (2.6%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 418.11 us (94.2%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6774812210324446
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5978637215446843e-05,-8.49188799541434e-06,1.3263965297204443e-08)
sum a = (4.019467601429529e-06,1.0308103338435245e-05,2.6533040311210623e-07)
sum e = 0.010448057978778319
sum de = -3.64817630389816e-06
Info: CFL hydro = 0.0019196532368013686 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019196532368013686 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.7863e+04 | 12514 | 1 | 1.607e-01 | 0.0% | 1.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.40102727050511 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8519376047565181, dt = 0.0019196532368013686 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.6%)
patch tree reduce : 1804.00 ns (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 327.79 us (94.6%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.676282563528849
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5970685451521807e-05,-8.47207822754652e-06,1.3782465873007876e-08)
sum a = (4.285593787192519e-06,1.0227738806071324e-05,2.87931020898479e-07)
sum e = 0.010450270699926286
sum de = 9.382023308518919e-07
Info: CFL hydro = 0.0019044652484714632 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019044652484714632 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0623e+04 | 12514 | 1 | 1.552e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.52343690406 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8538572579933195, dt = 0.0019044652484714632 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.99 us (1.5%)
patch tree reduce : 1583.00 ns (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 312.94 us (94.6%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (71.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6724468595173416
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5962268252088075e-05,-8.452676990437847e-06,1.4352513170809598e-08)
sum a = (4.585750046595258e-06,1.0060813273135775e-05,3.0960819030808407e-07)
sum e = 0.01045245191446554
sum de = 5.595839806213025e-06
Info: CFL hydro = 0.0021079656005473114 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021079656005473114 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0585e+04 | 12514 | 1 | 1.553e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.15052187425024 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8557617232417909, dt = 0.0021079656005473114 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 1343.00 ns (0.4%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1412.00 ns (0.4%)
LB compute : 311.55 us (94.5%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.671967396515904
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5952315830154563e-05,-8.43162809408234e-06,1.502579829353966e-08)
sum a = (4.967538904125694e-06,9.788519418980951e-06,3.2059446985377374e-07)
sum e = 0.010454901158111268
sum de = 1.0681420540837798e-05
Info: CFL hydro = 0.002064854299173489 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002064854299173489 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1037e+04 | 12514 | 1 | 1.544e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.14221394175937 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8578696888423382, dt = 0.002064854299173489 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.6%)
patch tree reduce : 1373.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 335.17 us (94.8%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6695700815087116
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.594165618720293e-05,-8.411703220716252e-06,1.569935851258827e-08)
sum a = (5.359575325634674e-06,9.4586778258402e-06,3.16034187328842e-07)
sum e = 0.010457232399589993
sum de = 1.5685927874804324e-05
Info: CFL hydro = 0.0020646413241049875 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020646413241049875 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1411e+04 | 12514 | 1 | 1.537e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.358979140726504 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8599345431415116, dt = 0.0020646413241049875 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.9%)
patch tree reduce : 1613.00 ns (0.5%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 300.14 us (94.2%)
LB move op cnt : 0
LB apply : 3.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.66980981300943
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.593018583746081e-05,-8.39251498102173e-06,1.634714759608867e-08)
sum a = (5.757440261505755e-06,9.0499885308493e-06,3.010089900471513e-07)
sum e = 0.01045955626818764
sum de = 2.0825373859027813e-05
Info: CFL hydro = 0.0020364377879314006 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020364377879314006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1371e+04 | 12514 | 1 | 1.538e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.33040339851772 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8619991844656166, dt = 0.0020364377879314006 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.6%)
patch tree reduce : 1593.00 ns (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 316.62 us (94.6%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6681316925043945
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.59180504443565e-05,-8.374507140800901e-06,1.6944622856322688e-08)
sum a = (6.10497682139793e-06,8.596089773983081e-06,2.839568542012926e-07)
sum e = 0.010461825794332823
sum de = 2.6001215150605066e-05
Info: CFL hydro = 0.0020100168772807124 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020100168772807124 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1657e+04 | 12514 | 1 | 1.533e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.83784861200971 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.864035622253548, dt = 0.0020100168772807124 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.6%)
patch tree reduce : 1703.00 ns (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.4%)
LB compute : 303.57 us (94.5%)
LB move op cnt : 0
LB apply : 2.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (66.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6678919610036744
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5905425469618383e-05,-8.357691023566356e-06,1.749801811878618e-08)
sum a = (6.4443186358232815e-06,8.065304172063718e-06,2.64639811451571e-07)
sum e = 0.010464049082971237
sum de = 3.121343401122866e-05
Info: CFL hydro = 0.001989580613261834 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001989580613261834 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0768e+04 | 12514 | 1 | 1.549e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.703249484324644 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8660456391308288, dt = 0.001989580613261834 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.8%)
patch tree reduce : 1614.00 ns (0.5%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 299.27 us (94.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.66957008150871
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.58922629368079e-05,-8.342177894754958e-06,1.8005126566174436e-08)
sum a = (6.73617761152561e-06,7.5313655998126805e-06,2.3633748603616439e-07)
sum e = 0.010466233872996502
sum de = 3.6463202848147106e-05
Info: CFL hydro = 0.002151277963738483 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002151277963738483 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1638e+04 | 12514 | 1 | 1.533e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.7260187472846 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8680352197440906, dt = 0.002151277963738483 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.5%)
patch tree reduce : 1312.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 310.55 us (94.7%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6683714240051137
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.587748120787229e-05,-8.326506990819093e-06,1.848539931291115e-08)
sum a = (7.045407373196311e-06,6.949885468903246e-06,1.9538404283104718e-07)
sum e = 0.010468618333285778
sum de = 4.218066978002366e-05
Info: CFL hydro = 0.0021387448976367563 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021387448976367563 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1773e+04 | 12514 | 1 | 1.530e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.6073530025704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8701864977078291, dt = 0.0021387448976367563 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.7%)
patch tree reduce : 1493.00 ns (0.5%)
gen split merge : 752.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 278.23 us (93.9%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6652549144957662
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.586208025921499e-05,-8.312268421428987e-06,1.885922481764212e-08)
sum a = (7.332937205495028e-06,6.4039266623671e-06,1.6051952629024096e-07)
sum e = 0.010470928669412172
sum de = 4.7806032972661e-05
Info: CFL hydro = 0.002147855598104841 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002147855598104841 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5340e+04 | 12514 | 1 | 1.915e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.20171902998439 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8723252426054658, dt = 0.002147855598104841 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (1.5%)
patch tree reduce : 1713.00 ns (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 320.09 us (94.9%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6611794789835383
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.584602269250701e-05,-8.299097545003499e-06,1.9166714427359916e-08)
sum a = (7.650864835880876e-06,5.933453108038215e-06,1.3517092559347568e-07)
sum e = 0.010473230897780345
sum de = 5.335917623548397e-05
Info: CFL hydro = 0.0021899455230690915 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021899455230690915 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9587e+04 | 12514 | 1 | 2.100e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.818539878171464 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8744730982035707, dt = 0.0005269017964297795 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.5%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 337.35 us (94.8%)
LB move op cnt : 0
LB apply : 3.24 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6604602844813816
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5841650006760307e-05,-8.296476452530392e-06,1.9210713663924422e-08)
sum a = (7.741020823124926e-06,5.843918234527335e-06,1.332336688387749e-07)
sum e = 0.010473551357973124
sum de = 5.472371522218425e-05
Info: CFL hydro = 0.0021823554522402457 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021823554522402457 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2562e+04 | 12514 | 1 | 1.516e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.514513373425105 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 543 [SPH][rank=0]
Info: time since start : 232.76734121 (s) [SPH][rank=0]
Info: dump to orztang_00035.vtk [VTK Dump][rank=0]
- took 2.40 ms, bandwidth = 278.42 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 958.28 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 955.04 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000035.npy
Saving metadata to plots/rho_slice_0000035.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 952.12 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000035.npy
Saving metadata to plots/vy_slice_0000035.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.0055983660000000005 s
Info: compute_slice took 959.30 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000035.npy
Saving metadata to plots/By_slice_0000035.json
---------------- t = 0.8750000000000004, dt = 0.0021823554522402457 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.52 us (2.6%)
patch tree reduce : 1684.00 ns (0.5%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.3%)
LB compute : 338.57 us (93.5%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6628575994885724
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5824732596085212e-05,-8.283746533752043e-06,1.9500966515504843e-08)
sum a = (8.124025229337615e-06,5.439627638490798e-06,1.218965763605186e-07)
sum e = 0.010476102112330243
sum de = 6.030603197608777e-05
Info: CFL hydro = 0.002161623867681814 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002161623867681814 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2008e+04 | 12514 | 1 | 1.526e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.48559325669608 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8771823554522407, dt = 0.002161623867681814 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.7%)
patch tree reduce : 1432.00 ns (0.4%)
gen split merge : 1031.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.4%)
LB compute : 300.80 us (94.4%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6616589419849768
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5806753583370728e-05,-8.272429257710365e-06,1.9752090281562807e-08)
sum a = (8.579933029002424e-06,5.147697041724242e-06,1.221586919555406e-07)
sum e = 0.010478361383479023
sum de = 6.523790998390682e-05
Info: CFL hydro = 0.0021292484779888844 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021292484779888844 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8833e+04 | 12514 | 1 | 1.818e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.80370550167508 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8793439793199225, dt = 0.0021292484779888844 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.7%)
patch tree reduce : 1332.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 305.14 us (94.5%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6642959884928885
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.578799202343674e-05,-8.261784053692216e-06,2.0012479788145375e-08)
sum a = (9.08074558639987e-06,4.967408712682471e-06,1.234846658644633e-07)
sum e = 0.01048055606867312
sum de = 6.990250121764468e-05
Info: CFL hydro = 0.0021884277204273464 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021884277204273464 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.3079e+04 | 12514 | 1 | 1.712e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.763556392319224 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8814732277979114, dt = 0.0021884277204273464 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.5%)
patch tree reduce : 1482.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 326.95 us (94.7%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (71.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.665254914495765
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5767586290885744e-05,-8.251105178091791e-06,2.0284128717934352e-08)
sum a = (9.661225663566932e-06,4.879417245350779e-06,1.247437341457809e-07)
sum e = 0.010482807746456761
sum de = 7.420928430201396e-05
Info: CFL hydro = 0.002166092038116025 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002166092038116025 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0752e+04 | 12514 | 1 | 1.550e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.838637390844234 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8836616555183388, dt = 0.002166092038116025 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.9%)
patch tree reduce : 2.07 us (0.7%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 294.22 us (93.9%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6645357199936077
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.574602401755115e-05,-8.240632192728784e-06,2.0555712817236988e-08)
sum a = (1.028706744975218e-05,4.894345647079625e-06,1.3218088791789887e-07)
sum e = 0.010484991702196814
sum de = 7.79098229606066e-05
Info: CFL hydro = 0.002144995350273612 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002144995350273612 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1745e+04 | 12514 | 1 | 1.531e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.93830042542537 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8858277475564548, dt = 0.002144995350273612 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.5%)
patch tree reduce : 1613.00 ns (0.5%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 333.10 us (94.9%)
LB move op cnt : 0
LB apply : 3.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6654946459964854
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5723280490248783e-05,-8.230117675927161e-06,2.0847294987001845e-08)
sum a = (1.0898040521287885e-05,5.011524792486243e-06,1.3208924011749055e-07)
sum e = 0.010487128620369822
sum de = 8.098979525606707e-05
Info: CFL hydro = 0.0021221945860915724 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021221945860915724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1105e+04 | 12514 | 1 | 1.543e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.04712399310732 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8879727429067283, dt = 0.0021221945860915724 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 1703.00 ns (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 329.93 us (94.5%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (71.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.667891961003677
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.569949746045655e-05,-8.2193565707836e-06,2.1127515765207278e-08)
sum a = (1.1476296268885693e-05,5.230887116739745e-06,1.3161619955333397e-07)
sum e = 0.010489216962134387
sum de = 8.343704911472095e-05
Info: CFL hydro = 0.002096393777013894 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002096393777013894 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1375e+04 | 12514 | 1 | 1.538e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.67995101967516 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8900949374928199, dt = 0.002096393777013894 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.6%)
patch tree reduce : 1573.00 ns (0.5%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 312.00 us (94.4%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6712482020137442
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5674825038766807e-05,-8.20815780681542e-06,2.1402933204843144e-08)
sum a = (1.2007064688523285e-05,5.523457935521486e-06,1.3769185575118044e-07)
sum e = 0.010491254487392392
sum de = 8.528428150888042e-05
Info: CFL hydro = 0.002157108773035245 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002157108773035245 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1975e+04 | 12514 | 1 | 1.527e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.43799505146946 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8921913312698337, dt = 0.002157108773035245 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.7%)
patch tree reduce : 1583.00 ns (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1402.00 ns (0.4%)
LB compute : 300.13 us (94.0%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.67292632251878
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.564836814438289e-05,-8.195936435423181e-06,2.170631799878161e-08)
sum a = (1.2519160738609199e-05,5.845666860530672e-06,1.4361053090953455e-07)
sum e = 0.01049334540175938
sum de = 8.664875407757653e-05
Info: CFL hydro = 0.0021663398513418904 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021663398513418904 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1544e+04 | 12514 | 1 | 1.535e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.60212549961642 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.894348440042869, dt = 0.0021663398513418904 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (2.0%)
patch tree reduce : 1694.00 ns (0.6%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 274.67 us (93.6%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (66.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6717276650151836
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5620695064128218e-05,-8.182925214496168e-06,2.202381082801774e-08)
sum a = (1.2986332570574646e-05,6.190301676583001e-06,1.45594140419353e-07)
sum e = 0.010495409535485861
sum de = 8.746934331547342e-05
Info: CFL hydro = 0.00216090736734068 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00216090736734068 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0864e+04 | 12514 | 1 | 1.548e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.39480082944783 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8965147798942108, dt = 0.00216090736734068 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.4%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 371.56 us (95.3%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (66.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6724468595173407
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5592126775923156e-05,-8.169175247929049e-06,2.234057486485653e-08)
sum a = (1.3421522012512791e-05,6.527188205278681e-06,1.448685933558115e-07)
sum e = 0.010497442076073242
sum de = 8.780611853317906e-05
Info: CFL hydro = 0.0021566940530001882 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021566940530001882 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4731e+04 | 12514 | 1 | 2.286e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.023173410827155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8986756872615514, dt = 0.0013243127384490183 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.6%)
patch tree reduce : 1683.00 ns (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 339.58 us (94.8%)
LB move op cnt : 0
LB apply : 3.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6760428320281293
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5573882281317115e-05,-8.16016721915163e-06,2.2531642268441352e-08)
sum a = (1.36617736869523e-05,6.716597426341215e-06,1.4324865275211673e-07)
sum e = 0.010498528990217805
sum de = 8.7760102118581e-05
Info: CFL hydro = 0.002156451200376708 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002156451200376708 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1542e+04 | 12514 | 1 | 1.535e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.065379562479887 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 555 [SPH][rank=0]
Info: time since start : 238.748208895 (s) [SPH][rank=0]
Info: dump to orztang_00036.vtk [VTK Dump][rank=0]
- took 2.33 ms, bandwidth = 287.31 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1000.99 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 980.47 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000036.npy
Saving metadata to plots/rho_slice_0000036.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 972.72 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000036.npy
Saving metadata to plots/vy_slice_0000036.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00661019 s
Info: compute_slice took 982.35 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000036.npy
Saving metadata to plots/By_slice_0000036.json
---------------- t = 0.9000000000000005, dt = 0.002156451200376708 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.11 us (2.5%)
patch tree reduce : 1983.00 ns (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 464.46 us (94.5%)
LB move op cnt : 0
LB apply : 3.74 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6758031005274105
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5544262248874162e-05,-8.145557786046881e-06,2.2839478343632807e-08)
sum a = (1.4030264183726727e-05,7.016817648931683e-06,1.4281744799782832e-07)
sum e = 0.010500670265410544
sum de = 8.770881180575499e-05
Info: CFL hydro = 0.0021791259421603494 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021791259421603494 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.7927e+04 | 12514 | 1 | 1.606e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.34302407469793 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9021564512003771, dt = 0.0021791259421603494 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.8%)
patch tree reduce : 1964.00 ns (0.6%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 291.13 us (93.9%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6748441745245333
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5513291220329107e-05,-8.12994355154736e-06,2.3150230613552504e-08)
sum a = (1.4317601810928692e-05,7.28962768741302e-06,1.4465479847238639e-07)
sum e = 0.010502676624159706
sum de = 8.716155154576865e-05
Info: CFL hydro = 0.002199479924005621 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002199479924005621 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9069e+04 | 12514 | 1 | 2.119e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.029701163958755 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9043355771425374, dt = 0.002199479924005621 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.6%)
patch tree reduce : 1683.00 ns (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 325.60 us (94.8%)
LB move op cnt : 0
LB apply : 3.26 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.677241489531726
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5481486870147012e-05,-8.113612918079212e-06,2.3470397847745512e-08)
sum a = (1.4527945732101608e-05,7.537828485872913e-06,1.5168056723168777e-07)
sum e = 0.010504683159127245
sum de = 8.653917509071826e-05
Info: CFL hydro = 0.0021676354282182462 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021676354282182462 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5520e+04 | 12514 | 1 | 1.910e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.45714610175332 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.906535057066543, dt = 0.0021676354282182462 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.9%)
patch tree reduce : 1583.00 ns (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.4%)
LB compute : 294.67 us (93.8%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.681077193543232
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5449764256663076e-05,-8.097000697664488e-06,2.3806912537717914e-08)
sum a = (1.4665063190101261e-05,7.756565348645675e-06,1.646025771164758e-07)
sum e = 0.010506635696517002
sum de = 8.57822465696613e-05
Info: CFL hydro = 0.0021121954743118718 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021121954743118718 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7881e+04 | 12514 | 1 | 1.844e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.32915089402573 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9087026924947613, dt = 0.0021121954743118718 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.9%)
patch tree reduce : 1693.00 ns (0.5%)
gen split merge : 812.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.4%)
LB compute : 291.63 us (93.9%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6817963880453903
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5418640166232558e-05,-8.080380244552698e-06,2.4168590459378222e-08)
sum a = (1.4761672757654769e-05,7.951352532577165e-06,1.8188911102100655e-07)
sum e = 0.010508522019461144
sum de = 8.497057919524203e-05
Info: CFL hydro = 0.002067065222970304 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002067065222970304 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0129e+04 | 12514 | 1 | 2.081e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.53628915105991 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9108148879690732, dt = 0.002067065222970304 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (1.7%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 358.04 us (94.7%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (71.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6813169250439506
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5388024796696823e-05,-8.063738565952717e-06,2.4562823384546347e-08)
sum a = (1.4820487432181584e-05,8.103557120361836e-06,1.963881527281202e-07)
sum e = 0.010510361510603094
sum de = 8.413285994053718e-05
Info: CFL hydro = 0.002177316268748454 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002177316268748454 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.1348e+04 | 12514 | 1 | 1.754e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.42684115270939 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9128819531920435, dt = 0.002177316268748454 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.7%)
patch tree reduce : 1803.00 ns (0.5%)
gen split merge : 1122.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 313.13 us (94.0%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.679159341537478
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5355695121415582e-05,-8.04593725079475e-06,2.5005407736910153e-08)
sum a = (1.4864476492007118e-05,8.193531524473904e-06,2.0846748178930186e-07)
sum e = 0.01051232451277449
sum de = 8.320818809987791e-05
Info: CFL hydro = 0.0021544734643567467 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021544734643567467 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0366e+04 | 12514 | 1 | 1.557e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.338555949102904 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.915059269460792, dt = 0.0021544734643567467 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.1%)
patch tree reduce : 1953.00 ns (0.6%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 297.25 us (93.5%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6798785360396358
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5323622112204256e-05,-8.028186553179022e-06,2.5467695654446877e-08)
sum a = (1.4909726663152576e-05,8.198924834578377e-06,2.3168732513362666e-07)
sum e = 0.010514235775790255
sum de = 8.218349668398974e-05
Info: CFL hydro = 0.002182303190683526 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002182303190683526 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1089e+04 | 12514 | 1 | 1.543e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.25876253826509 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9172137429251487, dt = 0.002182303190683526 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (2.0%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 761.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.4%)
LB compute : 274.92 us (93.5%)
LB move op cnt : 0
LB apply : 3.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6834745085504235
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.529103582298868e-05,-8.010288203480195e-06,2.599832091149254e-08)
sum a = (1.4943430410290503e-05,8.147431892654556e-06,2.4836265704328983e-07)
sum e = 0.01051618006520403
sum de = 8.10857364713857e-05
Info: CFL hydro = 0.002147773071575383 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002147773071575383 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.6977e+04 | 12514 | 1 | 1.626e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.32613804254338 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9193960461158323, dt = 0.002147773071575383 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.5%)
patch tree reduce : 1262.00 ns (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 320.01 us (94.9%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6846731660540195
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.525890394965894e-05,-7.99284555526464e-06,2.6549942853291208e-08)
sum a = (1.4995149681617644e-05,8.03418861185677e-06,2.645072148638918e-07)
sum e = 0.010518081697382114
sum de = 7.985126403117865e-05
Info: CFL hydro = 0.0021653928810384014 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021653928810384014 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1542e+04 | 12514 | 1 | 1.535e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.381906752082855 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9215438191874077, dt = 0.0021653928810384014 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (2.0%)
patch tree reduce : 1773.00 ns (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 274.31 us (93.7%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.683474508550423
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5226378018659128e-05,-7.975569990874225e-06,2.7140042316610748e-08)
sum a = (1.5059557136989693e-05,7.858210299547028e-06,2.6911893588086743e-07)
sum e = 0.010520012816493616
sum de = 7.849231116986542e-05
Info: CFL hydro = 0.0021480665668668327 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021480665668668327 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.2322e+04 | 12514 | 1 | 1.730e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.052225999071005 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9237092120684461, dt = 0.0012907879315543491 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.5%)
patch tree reduce : 1703.00 ns (0.5%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 357.40 us (95.0%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (72.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6822758510468274
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5206869590329469e-05,-7.965617238948576e-06,2.749241088512816e-08)
sum a = (1.5094365307046909e-05,7.717670898606517e-06,2.763809224743111e-07)
sum e = 0.010521025538128727
sum de = 7.754548245287641e-05
Info: CFL hydro = 0.0021405789193276576 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021405789193276576 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2854e+04 | 12514 | 1 | 1.510e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.766182103522944 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 567 [SPH][rank=0]
Info: time since start : 244.97234241200002 (s) [SPH][rank=0]
Info: dump to orztang_00037.vtk [VTK Dump][rank=0]
- took 2.77 ms, bandwidth = 241.18 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 969.79 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 965.33 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000037.npy
Saving metadata to plots/rho_slice_0000037.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 963.91 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000037.npy
Saving metadata to plots/vy_slice_0000037.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.005576996000000001 s
Info: compute_slice took 969.56 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000037.npy
Saving metadata to plots/By_slice_0000037.json
---------------- t = 0.9250000000000005, dt = 0.0021405789193276576 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.88 us (2.5%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 376.54 us (94.0%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (71.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.680118267540354
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5174536445169633e-05,-7.949187658597616e-06,2.8088712903808062e-08)
sum a = (1.5130955750188524e-05,7.456776204329992e-06,2.9483462588749714e-07)
sum e = 0.01052307496236077
sum de = 7.627791748556081e-05
Info: CFL hydro = 0.0021349780257001695 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021349780257001695 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0273e+04 | 12514 | 1 | 1.559e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.43213900691497 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9271405789193281, dt = 0.0021349780257001695 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.0%)
patch tree reduce : 1954.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 521.37 us (96.7%)
LB move op cnt : 0
LB apply : 3.14 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6784401470353205
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5142193024769557e-05,-7.933546838100247e-06,2.8737929155548015e-08)
sum a = (1.5163572160234298e-05,7.213598403724985e-06,3.1296760601855254e-07)
sum e = 0.010524998027466717
sum de = 7.474873754726116e-05
Info: CFL hydro = 0.0020853355416707835 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020853355416707835 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1370e+04 | 12514 | 1 | 1.538e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.976140097766134 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9292755569450283, dt = 0.0020853355416707835 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.6%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1402.00 ns (0.4%)
LB compute : 306.29 us (88.5%)
LB move op cnt : 0
LB apply : 24.61 us (7.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.678679878536041
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5110537071145765e-05,-7.918763654596237e-06,2.940992838483084e-08)
sum a = (1.515892243881268e-05,6.986237633944251e-06,3.279147923769178e-07)
sum e = 0.010526879819515611
sum de = 7.342859849175201e-05
Info: CFL hydro = 0.002115304349062859 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002115304349062859 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1928e+04 | 12514 | 1 | 1.527e-01 | 0.0% | 1.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.14908446221036 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9313608924866991, dt = 0.002115304349062859 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.5%)
patch tree reduce : 1303.00 ns (0.4%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 343.28 us (95.2%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6805977305417934
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5078476184698515e-05,-7.904222697492235e-06,3.0119152920747745e-08)
sum a = (1.5109410610438534e-05,6.782066694413014e-06,3.353102283491399e-07)
sum e = 0.010528819421994101
sum de = 7.228760686972135e-05
Info: CFL hydro = 0.0020909625427093046 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020909625427093046 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4328e+04 | 12514 | 1 | 2.303e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.06020673664381 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9334761968357619, dt = 0.0020909625427093046 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.4%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 386.08 us (95.5%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.677481221032444
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5046935339362594e-05,-7.890257591910639e-06,3.0828095847351104e-08)
sum a = (1.5031570193118414e-05,6.571050227744886e-06,3.4230378612679317e-07)
sum e = 0.010530744877149422
sum de = 7.136595367469559e-05
Info: CFL hydro = 0.0020500824216482397 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020500824216482397 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1022e+04 | 12514 | 1 | 1.545e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.73688939235896 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9355671593784712, dt = 0.0020500824216482397 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 1673.00 ns (0.5%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 317.94 us (94.5%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6808374620425117
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5016200762238346e-05,-7.87700701111077e-06,3.153715845582998e-08)
sum a = (1.4933359919040778e-05,6.352082050986442e-06,3.4907467753525363e-07)
sum e = 0.010532649277369152
sum de = 7.069844783554333e-05
Info: CFL hydro = 0.0021200311488991717 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021200311488991717 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.1052e+04 | 12514 | 1 | 1.761e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.90402483578761 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9376172418001195, dt = 0.0021200311488991717 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.7%)
patch tree reduce : 1863.00 ns (0.6%)
gen split merge : 1152.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 304.80 us (94.2%)
LB move op cnt : 0
LB apply : 3.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6849128975547405
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4984642243630495e-05,-7.863764850706354e-06,3.228414808822421e-08)
sum a = (1.4790871418785335e-05,6.143623732804618e-06,3.4848998923472684e-07)
sum e = 0.010534661220670859
sum de = 7.024466907138135e-05
Info: CFL hydro = 0.0021048714280407677 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021048714280407677 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1873e+04 | 12514 | 1 | 1.528e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.93322795542542 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9397372729490187, dt = 0.0021048714280407677 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.7%)
patch tree reduce : 1734.00 ns (0.5%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.4%)
LB compute : 310.66 us (94.4%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.685392360556177
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4953660401014862e-05,-7.851054281711014e-06,3.301705493081817e-08)
sum a = (1.4590157474720859e-05,5.978652820421024e-06,3.4859372504970234e-07)
sum e = 0.010536669107358468
sum de = 6.996946144188127e-05
Info: CFL hydro = 0.002154060561422647 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002154060561422647 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1841e+04 | 12514 | 1 | 1.529e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.55663584787734 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9418421443770594, dt = 0.002154060561422647 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.8%)
patch tree reduce : 1513.00 ns (0.5%)
gen split merge : 772.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 285.98 us (94.2%)
LB move op cnt : 0
LB apply : 3.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6863512865590544
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.492244355673667e-05,-7.838349522739885e-06,3.376805610118347e-08)
sum a = (1.4342003913133492e-05,5.823213232643442e-06,3.5424904994395245e-07)
sum e = 0.01053876329067134
sum de = 6.985966257588703e-05
Info: CFL hydro = 0.002128531670395061 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002128531670395061 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1765e+04 | 12514 | 1 | 1.530e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.66750867813849 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.943996204938482, dt = 0.002128531670395061 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.9%)
patch tree reduce : 1633.00 ns (0.5%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 299.15 us (94.2%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.686830749560493
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4892183416090583e-05,-7.826122042094149e-06,3.452817737935481e-08)
sum a = (1.4023602210181938e-05,5.7166062274409555e-06,3.651228599611009e-07)
sum e = 0.010540849893518226
sum de = 6.985634054842083e-05
Info: CFL hydro = 0.0021803204320099095 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021803204320099095 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2028e+04 | 12514 | 1 | 1.526e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.228455666445136 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9461247366088771, dt = 0.0021803204320099095 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.7%)
patch tree reduce : 1583.00 ns (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.4%)
LB compute : 291.09 us (94.1%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6834745085504252
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4861946333715867e-05,-7.813771466927573e-06,3.533583483562134e-08)
sum a = (1.3604741969405223e-05,5.6374818190034144e-06,3.6132970741233137e-07)
sum e = 0.01054303380549847
sum de = 6.997151695280458e-05
Info: CFL hydro = 0.0022158319945959955 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022158319945959955 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.9238e+04 | 12514 | 1 | 1.807e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.42788985463878 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.948305057040887, dt = 0.0016949429591135434 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.9%)
patch tree reduce : 1744.00 ns (0.6%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 285.79 us (93.9%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6822758510468274
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4839343696874803e-05,-7.80430251509369e-06,3.594413293511657e-08)
sum a = (1.322815129855636e-05,5.569351052818007e-06,3.486798032714052e-07)
sum e = 0.010544674035973759
sum de = 7.00833507863276e-05
Info: CFL hydro = 0.0021866640549632675 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021866640549632675 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1088e+04 | 12514 | 1 | 1.543e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.538068194322655 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 579 [SPH][rank=0]
Info: time since start : 251.001510467 (s) [SPH][rank=0]
Info: dump to orztang_00038.vtk [VTK Dump][rank=0]
- took 2.40 ms, bandwidth = 278.76 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 975.69 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 977.85 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000038.npy
Saving metadata to plots/rho_slice_0000038.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 968.26 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000038.npy
Saving metadata to plots/vy_slice_0000038.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.006606147000000001 s
Info: compute_slice took 979.34 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000038.npy
Saving metadata to plots/By_slice_0000038.json
---------------- t = 0.9500000000000005, dt = 0.0021866640549632675 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.36 us (2.6%)
patch tree reduce : 1943.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 412.28 us (94.3%)
LB move op cnt : 0
LB apply : 3.70 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (70.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6827553140482667
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4810737323769474e-05,-7.792181954218662e-06,3.6695858094642857e-08)
sum a = (1.2695777105286673e-05,5.471981279954883e-06,3.362325206630051e-07)
sum e = 0.010546993989020701
sum de = 7.044831265962523e-05
Info: CFL hydro = 0.0022503850278857724 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022503850278857724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.8986e+04 | 12514 | 1 | 1.584e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.686451404788976 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9521866640549638, dt = 0.0022503850278857724 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.8%)
patch tree reduce : 1533.00 ns (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 293.27 us (94.2%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.681316925043951
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4782748998810531e-05,-7.779974346964376e-06,3.74389017123009e-08)
sum a = (1.2092494536586651e-05,5.347384946831648e-06,3.185617339888485e-07)
sum e = 0.010549356594800626
sum de = 7.08233172552115e-05
Info: CFL hydro = 0.002236849494098939 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002236849494098939 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1229e+04 | 12514 | 1 | 1.541e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.58618829897066 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9544370490828495, dt = 0.002236849494098939 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (2.0%)
patch tree reduce : 1753.00 ns (0.6%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 284.37 us (93.8%)
LB move op cnt : 0
LB apply : 3.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (66.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6813169250439506
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4756378717554195e-05,-7.768153246512455e-06,3.813159332893204e-08)
sum a = (1.1418327486817419e-05,5.22467514135403e-06,2.8630076805952e-07)
sum e = 0.010551732150720574
sum de = 7.143030515798699e-05
Info: CFL hydro = 0.0022140235117178433 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022140235117178433 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.9006e+04 | 12514 | 1 | 1.584e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.83943156991732 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9566738985769485, dt = 0.0022140235117178433 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.6%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1332.00 ns (0.4%)
LB compute : 348.50 us (94.7%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.68131692504395
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.473185227714566e-05,-7.756722934591426e-06,3.872938849817968e-08)
sum a = (1.0705533757268644e-05,5.059341373987016e-06,2.504323177125732e-07)
sum e = 0.010554123290528272
sum de = 7.220157924596492e-05
Info: CFL hydro = 0.0021930661452493868 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021930661452493868 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0797e+04 | 12514 | 1 | 1.549e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.46152326211403 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9588879220886664, dt = 0.0021930661452493868 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.8%)
patch tree reduce : 1573.00 ns (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 292.17 us (94.1%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.681077193543231
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4709163404534113e-05,-7.745810490731186e-06,3.923889633963285e-08)
sum a = (1.001755392371575e-05,4.833187190088394e-06,1.8554109433940235e-07)
sum e = 0.01055653355256312
sum de = 7.310673513640688e-05
Info: CFL hydro = 0.0022393204054646345 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022393204054646345 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1837e+04 | 12514 | 1 | 1.529e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.63087628486145 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9610809882339157, dt = 0.0022393204054646345 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.5%)
patch tree reduce : 1943.00 ns (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1223.00 ns (0.3%)
LB compute : 357.14 us (94.8%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6808374620425126
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4687485284260717e-05,-7.735235421575227e-06,3.958322692568726e-08)
sum a = (9.375167609123687e-06,4.536559568840618e-06,1.1165613066685656e-07)
sum e = 0.010559048815354615
sum de = 7.413019045546367e-05
Info: CFL hydro = 0.0022631980599867054 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022631980599867054 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4595e+04 | 12514 | 1 | 1.937e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.61234919183915 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9633203086393803, dt = 0.0022631980599867054 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.7%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1392.00 ns (0.4%)
LB compute : 316.78 us (94.5%)
LB move op cnt : 0
LB apply : 3.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6779606840338825
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.466698667750687e-05,-7.725300410902764e-06,3.975320081059402e-08)
sum a = (8.746310895461687e-06,4.207629458520857e-06,4.150917994484807e-08)
sum e = 0.010561631159455248
sum de = 7.512414024192858e-05
Info: CFL hydro = 0.002221239346981013 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002221239346981013 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.7486e+04 | 12514 | 1 | 1.615e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.44902074351526 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9655835066993671, dt = 0.002221239346981013 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.8%)
patch tree reduce : 1914.00 ns (0.6%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 286.05 us (93.9%)
LB move op cnt : 0
LB apply : 3.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.675323637525971
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4648270641252218e-05,-7.716326475785597e-06,3.9766024412954206e-08)
sum a = (8.200552814269868e-06,3.896729374874909e-06,-5.444949936126128e-09)
sum e = 0.010564197273044751
sum de = 7.593404335373826e-05
Info: CFL hydro = 0.0021806505982161846 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021806505982161846 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1562e+04 | 12514 | 1 | 1.534e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.118234280708606 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9678047460463481, dt = 0.0021806505982161846 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (2.0%)
patch tree reduce : 1873.00 ns (0.6%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 290.42 us (93.9%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1984.00 ns (66.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6741249800223743
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.463099423051408e-05,-7.70817436229252e-06,3.9702002699221424e-08)
sum a = (7.764367775295058e-06,3.564602708352787e-06,-4.044101757023635e-08)
sum e = 0.010566757047079513
sum de = 7.64861920134946e-05
Info: CFL hydro = 0.002158449474226568 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002158449474226568 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2082e+04 | 12514 | 1 | 1.525e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.492242484585546 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9699853966445643, dt = 0.002158449474226568 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.6%)
patch tree reduce : 1753.00 ns (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 315.02 us (94.6%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6719673965159023
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4614710818554707e-05,-7.700842473557836e-06,3.95765557081993e-08)
sum a = (7.470474942360173e-06,3.237793449497216e-06,-5.731671182377529e-08)
sum e = 0.010569332238377454
sum de = 7.669745240329919e-05
Info: CFL hydro = 0.0021352506443484483 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021352506443484483 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0281e+04 | 12514 | 1 | 1.559e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.84982478386609 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9721438461187909, dt = 0.0021352506443484483 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.7%)
patch tree reduce : 2.27 us (0.7%)
gen split merge : 1182.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 304.66 us (94.1%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (71.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6683714240051133
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4599076658535887e-05,-7.694281673644854e-06,3.9435957495651354e-08)
sum a = (7.318016965628658e-06,2.950217025844786e-06,-6.04495760341502e-08)
sum e = 0.010571916557475155
sum de = 7.651559275707768e-05
Info: CFL hydro = 0.0021163821823565873 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021163821823565873 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2032e+04 | 12514 | 1 | 1.526e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.389317452547864 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9742790967631394, dt = 0.0007209032368611368 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.8%)
patch tree reduce : 1774.00 ns (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 292.68 us (94.0%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6678919610036758
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4593963844414438e-05,-7.692461876513381e-06,3.93890344754598e-08)
sum a = (7.317456832929238e-06,2.858804792714244e-06,-6.250745687164908e-08)
sum e = 0.010572660143927333
sum de = 7.632680931631703e-05
Info: CFL hydro = 0.0021118422513586176 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021118422513586176 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.0462e+04 | 12514 | 1 | 1.776e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.613034111476695 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 591 [SPH][rank=0]
Info: time since start : 257.020254223 (s) [SPH][rank=0]
Info: dump to orztang_00039.vtk [VTK Dump][rank=0]
- took 2.38 ms, bandwidth = 280.78 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 978.09 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 983.93 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000039.npy
Saving metadata to plots/rho_slice_0000039.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 969.13 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000039.npy
Saving metadata to plots/vy_slice_0000039.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00673742 s
Info: compute_slice took 986.93 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000039.npy
Saving metadata to plots/By_slice_0000039.json
---------------- t = 0.9750000000000005, dt = 0.0021118422513586176 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.38 us (2.6%)
patch tree reduce : 1763.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1373.00 ns (0.3%)
LB compute : 411.33 us (94.1%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.668131692504396
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4578510731802848e-05,-7.686457481451388e-06,3.925628682053457e-08)
sum a = (7.379208978725007e-06,2.630567554891797e-06,-7.796585874129573e-08)
sum e = 0.010575398513306035
sum de = 7.578228662144725e-05
Info: CFL hydro = 0.0020991166952592606 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020991166952592606 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.9588e+04 | 12514 | 1 | 1.572e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.35195306372891 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9771118422513592, dt = 0.0020991166952592606 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.7%)
patch tree reduce : 1753.00 ns (0.6%)
gen split merge : 762.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.4%)
LB compute : 283.74 us (94.0%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6642959884928894
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4562955705642606e-05,-7.681176613699747e-06,3.9076304531687084e-08)
sum a = (7.597480485423137e-06,2.4499665174014553e-06,-8.88273703458197e-08)
sum e = 0.010578022218698952
sum de = 7.469059181244043e-05
Info: CFL hydro = 0.002240486862255469 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002240486862255469 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.2473e+04 | 12514 | 1 | 1.727e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.764258922245084 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9792109589466185, dt = 0.002240486862255469 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.7%)
patch tree reduce : 1893.00 ns (0.6%)
gen split merge : 1033.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 305.85 us (94.2%)
LB move op cnt : 0
LB apply : 3.74 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.661658941984977
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4545704561746824e-05,-7.675877047231275e-06,3.8865888185245784e-08)
sum a = (7.954136798016552e-06,2.343763496627497e-06,-9.437899429221331e-08)
sum e = 0.010580878684028742
sum de = 7.330998643357904e-05
Info: CFL hydro = 0.0022347814371699907 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022347814371699907 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.1965e+04 | 12514 | 1 | 2.020e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.938923482681716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9814514458088739, dt = 0.0022347814371699907 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.9%)
patch tree reduce : 1763.00 ns (0.6%)
gen split merge : 792.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.4%)
LB compute : 289.71 us (93.9%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.661658941984976
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4527529262590395e-05,-7.67075822131205e-06,3.864875259048477e-08)
sum a = (8.436225249031409e-06,2.3128771903563836e-06,-1.0607759491566696e-07)
sum e = 0.010583742765680144
sum de = 7.163393935025234e-05
Info: CFL hydro = 0.002231145950631353 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002231145950631353 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9706e+04 | 12514 | 1 | 2.096e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.38457197802284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9836862272460439, dt = 0.002231145950631353 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.7%)
patch tree reduce : 1824.00 ns (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 321.51 us (94.6%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (65.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6621384049864143
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4508168131627e-05,-7.665632366806473e-06,3.839900608637913e-08)
sum a = (8.992083375589888e-06,2.3393266048562353e-06,-1.1705619791589547e-07)
sum e = 0.010586636077224048
sum de = 6.972709042582685e-05
Info: CFL hydro = 0.0022115252075691192 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022115252075691192 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1393e+04 | 12514 | 1 | 1.537e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.24221301240372 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9859173731966753, dt = 0.0022115252075691192 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.6%)
patch tree reduce : 1592.00 ns (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 320.36 us (94.7%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.660700015982099
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4487661812269035e-05,-7.660429380799136e-06,3.8127885921172254e-08)
sum a = (9.523724129924878e-06,2.3998092658854932e-06,-1.0731145061505961e-07)
sum e = 0.010589533790522207
sum de = 6.761648866112823e-05
Info: CFL hydro = 0.002194389693617207 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002194389693617207 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2724e+04 | 12514 | 1 | 1.513e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.62944138893834 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9881288984042443, dt = 0.002194389693617207 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.5%)
patch tree reduce : 1824.00 ns (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 347.91 us (94.7%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6607000159821013
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.446617518172869e-05,-7.655096384615038e-06,3.790317815708367e-08)
sum a = (1.0025703357257888e-05,2.4579421393684838e-06,-9.390731219968933e-08)
sum e = 0.010592439484933021
sum de = 6.53622748348883e-05
Info: CFL hydro = 0.002179300295526227 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002179300295526227 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2195e+04 | 12514 | 1 | 1.522e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.887626652708576 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9903232880978615, dt = 0.002179300295526227 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.7%)
patch tree reduce : 1793.00 ns (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 305.11 us (94.3%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.659741089979224
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4443775394417943e-05,-7.649676007494419e-06,3.771323287545006e-08)
sum a = (1.0490492037920375e-05,2.4854403520362287e-06,-7.55501467487555e-08)
sum e = 0.01059535349840711
sum de = 6.301710025609353e-05
Info: CFL hydro = 0.0021662074743654816 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021662074743654816 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.9991e+04 | 12514 | 1 | 1.564e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.149474712752166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9925025883933878, dt = 0.0021662074743654816 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.7%)
patch tree reduce : 1553.00 ns (0.5%)
gen split merge : 761.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1483.00 ns (0.5%)
LB compute : 281.45 us (93.9%)
LB move op cnt : 0
LB apply : 3.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (66.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6609397474828196
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.442054435510112e-05,-7.644262064595529e-06,3.756957847091973e-08)
sum a = (1.0893760324470783e-05,2.5004823499023877e-06,-4.367848676191225e-08)
sum e = 0.01059827597014509
sum de = 6.0613008585535586e-05
Info: CFL hydro = 0.002254375291757654 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002254375291757654 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4851e+04 | 12514 | 1 | 2.281e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.18134722752375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9946687958677533, dt = 0.002254375291757654 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.6%)
patch tree reduce : 1843.00 ns (0.5%)
gen split merge : 1182.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 320.02 us (94.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (71.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.658782163976346
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4395548949603029e-05,-7.638608746924438e-06,3.75056310836243e-08)
sum a = (1.125075454244915e-05,2.484795843442583e-06,-1.2289284641856727e-08)
sum e = 0.010601356648588791
sum de = 5.811617099429162e-05
Info: CFL hydro = 0.0022058450064855336 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022058450064855336 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2009e+04 | 12514 | 1 | 1.526e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.1855131582188 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9969231711595109, dt = 0.0022058450064855336 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.7%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 307.67 us (94.4%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6547067284641193
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4370329129404266e-05,-7.633145354057017e-06,3.7513904347307705e-08)
sum a = (1.1583998639148086e-05,2.434227338556952e-06,2.6280886111501438e-08)
sum e = 0.01060437435722918
sum de = 5.569576680164912e-05
Info: CFL hydro = 0.002250633064284754 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002250633064284754 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0842e+04 | 12514 | 1 | 1.548e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.299874002645836 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9991290161659965, dt = 0.0008709838340039688 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 12514.0 min = 12514.0 factor = 1
- strategy "round robin" : max = 11888.3 min = 11888.3 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.5%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 341.70 us (94.8%)
LB move op cnt : 0
LB apply : 3.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (72.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.651110755953333
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.43598721114431e-05,-7.631080954538844e-06,3.757933448353179e-08)
sum a = (1.1705668860378105e-05,2.4123866553542973e-06,4.466342344488744e-08)
sum e = 0.010605441416594832
sum de = 5.474169929152432e-05
Info: CFL hydro = 0.0022452444529484973 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022452444529484973 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 7.6744e+04 | 12514 | 1 | 1.631e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.229103600903446 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 603 [SPH][rank=0]
Info: time since start : 263.187520789 (s) [SPH][rank=0]
Info: dump to orztang_00040.vtk [VTK Dump][rank=0]
- took 2.54 ms, bandwidth = 263.27 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 990.08 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1034.26 ms [sph::CartesianRender][rank=0]
Saving data to plots/rho_slice_0000040.npy
Saving metadata to plots/rho_slice_0000040.json
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 972.86 ms [sph::CartesianRender][rank=0]
Saving data to plots/vy_slice_0000040.npy
Saving metadata to plots/vy_slice_0000040.json
Info: compute_slice field_name: custom, positions count: 1166400 [sph::CartesianRender][rank=0]
sph::RenderFieldGetter compute custom field took : 0.006629847 s
Info: compute_slice took 986.17 ms [sph::CartesianRender][rank=0]
Saving data to plots/By_slice_0000040.npy
Saving metadata to plots/By_slice_0000040.json
Plot generation
245 slice_render_kwargs = {
246 "x_unit": "m",
247 "y_unit": "m",
248 "time_unit": "second",
249 "x_label": "x",
250 "y_label": "y",
251 }
252
253 density_slice_plot.render_all(
254 **slice_render_kwargs,
255 field_unit="kg.m^-2",
256 field_label="$\\int \\rho \\, \\mathrm{{d}} z$",
257 vmin=1e-7,
258 vmax=5e-7,
259 cmap="gist_heat",
260 cmap_bad_color="black",
261 )
262
263 v_y_slice_plot.render_all(
264 **slice_render_kwargs,
265 field_unit="m.s^-1",
266 field_label="$\\mathrm{v}_y$",
267 vmin=-1e-2,
268 vmax=1e-2,
269 cmap="seismic",
270 cmap_bad_color="black",
271 )
272
273 by_slice_plot.render_all(
274 **slice_render_kwargs,
275 field_unit="T",
276 field_label=r"$B_y$",
277 vmin=-1e-6,
278 vmax=1e-6,
279 cmap="seismic",
280 cmap_bad_color="black",
281 )
Saving plot to plots/plot_rho_slice_0000000.png
Saving plot to plots/plot_rho_slice_0000001.png
Saving plot to plots/plot_rho_slice_0000002.png
Saving plot to plots/plot_rho_slice_0000003.png
Saving plot to plots/plot_rho_slice_0000004.png
Saving plot to plots/plot_rho_slice_0000005.png
Saving plot to plots/plot_rho_slice_0000006.png
Saving plot to plots/plot_rho_slice_0000007.png
Saving plot to plots/plot_rho_slice_0000008.png
Saving plot to plots/plot_rho_slice_0000009.png
Saving plot to plots/plot_rho_slice_0000010.png
Saving plot to plots/plot_rho_slice_0000011.png
Saving plot to plots/plot_rho_slice_0000012.png
Saving plot to plots/plot_rho_slice_0000013.png
Saving plot to plots/plot_rho_slice_0000014.png
Saving plot to plots/plot_rho_slice_0000015.png
Saving plot to plots/plot_rho_slice_0000016.png
Saving plot to plots/plot_rho_slice_0000017.png
Saving plot to plots/plot_rho_slice_0000018.png
Saving plot to plots/plot_rho_slice_0000019.png
Saving plot to plots/plot_rho_slice_0000020.png
Saving plot to plots/plot_rho_slice_0000021.png
Saving plot to plots/plot_rho_slice_0000022.png
Saving plot to plots/plot_rho_slice_0000023.png
Saving plot to plots/plot_rho_slice_0000024.png
Saving plot to plots/plot_rho_slice_0000025.png
Saving plot to plots/plot_rho_slice_0000026.png
Saving plot to plots/plot_rho_slice_0000027.png
Saving plot to plots/plot_rho_slice_0000028.png
Saving plot to plots/plot_rho_slice_0000029.png
Saving plot to plots/plot_rho_slice_0000030.png
Saving plot to plots/plot_rho_slice_0000031.png
Saving plot to plots/plot_rho_slice_0000032.png
Saving plot to plots/plot_rho_slice_0000033.png
Saving plot to plots/plot_rho_slice_0000034.png
Saving plot to plots/plot_rho_slice_0000035.png
Saving plot to plots/plot_rho_slice_0000036.png
Saving plot to plots/plot_rho_slice_0000037.png
Saving plot to plots/plot_rho_slice_0000038.png
Saving plot to plots/plot_rho_slice_0000039.png
Saving plot to plots/plot_rho_slice_0000040.png
Saving plot to plots/plot_vy_slice_0000000.png
Saving plot to plots/plot_vy_slice_0000001.png
Saving plot to plots/plot_vy_slice_0000002.png
Saving plot to plots/plot_vy_slice_0000003.png
Saving plot to plots/plot_vy_slice_0000004.png
Saving plot to plots/plot_vy_slice_0000005.png
Saving plot to plots/plot_vy_slice_0000006.png
Saving plot to plots/plot_vy_slice_0000007.png
Saving plot to plots/plot_vy_slice_0000008.png
Saving plot to plots/plot_vy_slice_0000009.png
Saving plot to plots/plot_vy_slice_0000010.png
Saving plot to plots/plot_vy_slice_0000011.png
Saving plot to plots/plot_vy_slice_0000012.png
Saving plot to plots/plot_vy_slice_0000013.png
Saving plot to plots/plot_vy_slice_0000014.png
Saving plot to plots/plot_vy_slice_0000015.png
Saving plot to plots/plot_vy_slice_0000016.png
Saving plot to plots/plot_vy_slice_0000017.png
Saving plot to plots/plot_vy_slice_0000018.png
Saving plot to plots/plot_vy_slice_0000019.png
Saving plot to plots/plot_vy_slice_0000020.png
Saving plot to plots/plot_vy_slice_0000021.png
Saving plot to plots/plot_vy_slice_0000022.png
Saving plot to plots/plot_vy_slice_0000023.png
Saving plot to plots/plot_vy_slice_0000024.png
Saving plot to plots/plot_vy_slice_0000025.png
Saving plot to plots/plot_vy_slice_0000026.png
Saving plot to plots/plot_vy_slice_0000027.png
Saving plot to plots/plot_vy_slice_0000028.png
Saving plot to plots/plot_vy_slice_0000029.png
Saving plot to plots/plot_vy_slice_0000030.png
Saving plot to plots/plot_vy_slice_0000031.png
Saving plot to plots/plot_vy_slice_0000032.png
Saving plot to plots/plot_vy_slice_0000033.png
Saving plot to plots/plot_vy_slice_0000034.png
Saving plot to plots/plot_vy_slice_0000035.png
Saving plot to plots/plot_vy_slice_0000036.png
Saving plot to plots/plot_vy_slice_0000037.png
Saving plot to plots/plot_vy_slice_0000038.png
Saving plot to plots/plot_vy_slice_0000039.png
Saving plot to plots/plot_vy_slice_0000040.png
Saving plot to plots/plot_By_slice_0000000.png
Saving plot to plots/plot_By_slice_0000001.png
Saving plot to plots/plot_By_slice_0000002.png
Saving plot to plots/plot_By_slice_0000003.png
Saving plot to plots/plot_By_slice_0000004.png
Saving plot to plots/plot_By_slice_0000005.png
Saving plot to plots/plot_By_slice_0000006.png
Saving plot to plots/plot_By_slice_0000007.png
Saving plot to plots/plot_By_slice_0000008.png
Saving plot to plots/plot_By_slice_0000009.png
Saving plot to plots/plot_By_slice_0000010.png
Saving plot to plots/plot_By_slice_0000011.png
Saving plot to plots/plot_By_slice_0000012.png
Saving plot to plots/plot_By_slice_0000013.png
Saving plot to plots/plot_By_slice_0000014.png
Saving plot to plots/plot_By_slice_0000015.png
Saving plot to plots/plot_By_slice_0000016.png
Saving plot to plots/plot_By_slice_0000017.png
Saving plot to plots/plot_By_slice_0000018.png
Saving plot to plots/plot_By_slice_0000019.png
Saving plot to plots/plot_By_slice_0000020.png
Saving plot to plots/plot_By_slice_0000021.png
Saving plot to plots/plot_By_slice_0000022.png
Saving plot to plots/plot_By_slice_0000023.png
Saving plot to plots/plot_By_slice_0000024.png
Saving plot to plots/plot_By_slice_0000025.png
Saving plot to plots/plot_By_slice_0000026.png
Saving plot to plots/plot_By_slice_0000027.png
Saving plot to plots/plot_By_slice_0000028.png
Saving plot to plots/plot_By_slice_0000029.png
Saving plot to plots/plot_By_slice_0000030.png
Saving plot to plots/plot_By_slice_0000031.png
Saving plot to plots/plot_By_slice_0000032.png
Saving plot to plots/plot_By_slice_0000033.png
Saving plot to plots/plot_By_slice_0000034.png
Saving plot to plots/plot_By_slice_0000035.png
Saving plot to plots/plot_By_slice_0000036.png
Saving plot to plots/plot_By_slice_0000037.png
Saving plot to plots/plot_By_slice_0000038.png
Saving plot to plots/plot_By_slice_0000039.png
Saving plot to plots/plot_By_slice_0000040.png
Make gif for the doc
Density gif
289 if render_gif:
290 ani = density_slice_plot.render_gif(gif_filename="rho_slice.gif", save_animation=True, fps=8)
291 if ani is not None:
292 plt.show()
vy velocity gif
296 if render_gif:
297 ani = v_y_slice_plot.render_gif(gif_filename="vy_slice.gif", save_animation=True, fps=8)
298 if ani is not None:
299 plt.show()
By magnetic field gif
303 if render_gif:
304 ani = by_slice_plot.render_gif(gif_filename="By_slice.gif", save_animation=True, fps=8)
305 if ani is not None:
306 plt.show()
Total running time of the script: (6 minutes 29.436 seconds)
Estimated memory usage: 1227 MB