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 : 44.92 us (90.9%)
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (0.4%)
patch tree reduce : 1172.00 ns (0.2%)
gen split merge : 771.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.1%)
LB compute : 750.17 us (98.0%)
LB move op cnt : 0
LB apply : 4.33 us (0.6%)
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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.16 us (1.8%)
patch tree reduce : 1112.00 ns (0.1%)
gen split merge : 551.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.1%)
LB compute : 721.53 us (96.5%)
LB move op cnt : 0
LB apply : 3.70 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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: 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 | 2.9529e+04 | 12514 | 1 | 4.238e-01 | 0.0% | 0.9% 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 714.91 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 717.02 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 738.76 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.010728361 s
Info: compute_slice took 720.06 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 6.83 ms, bandwidth = 97.90 MB/s
---------------- t = 0, dt = 1.61362184669257e-05 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.3%)
patch tree reduce : 1452.00 ns (0.3%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 487.53 us (96.0%)
LB move op cnt : 0
LB apply : 3.91 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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.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.1399e+05 | 12514 | 1 | 1.098e-01 | 0.0% | 0.9% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.529156882985659 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.61362184669257e-05, dt = 0.0005486408477980441 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1132.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 416.82 us (95.7%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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.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.1434e+05 | 12514 | 1 | 1.094e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.046100070178245 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0005647770662649698, dt = 0.0009049257345052535 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 380.35 us (95.4%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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.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 | 1.1453e+05 | 12514 | 1 | 1.093e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.814660632618647 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0014697028007702234, dt = 0.0011485819718354687 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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 (1.5%)
patch tree reduce : 1152.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 382.97 us (95.3%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 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.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 | 1.1257e+05 | 12514 | 1 | 1.112e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.19586190357767 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0026182847726056923, dt = 0.0012721516913725007 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 410.06 us (95.7%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
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.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 | 1.1420e+05 | 12514 | 1 | 1.096e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.792528061232424 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0038904364639781933, dt = 0.0013479103715663353 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1323.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 384.71 us (95.4%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (75.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.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 | 1.1207e+05 | 12514 | 1 | 1.117e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.45809063198521 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.005238346835544529, dt = 0.0013954726796525567 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1002.00 ns (0.2%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 433.35 us (96.1%)
LB move op cnt : 0
LB apply : 3.58 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 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.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 | 1.1232e+05 | 12514 | 1 | 1.114e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.0923435165432 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0066338195151970855, dt = 0.0014100006857167785 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1091.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 362.17 us (95.0%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.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.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 | 1.1071e+05 | 12514 | 1 | 1.130e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.904941642052805 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.008043820200913864, dt = 0.0014371937646284062 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1663.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 : 359.79 us (94.9%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 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.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 | 1.1007e+05 | 12514 | 1 | 1.137e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.50927463484339 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.00948101396554227, dt = 0.0014756847466001956 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1243.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 381.49 us (95.4%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (73.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.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 | 1.0877e+05 | 12514 | 1 | 1.151e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.17416067219158 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.010956698712142466, dt = 0.0015255019926626939 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.24 us (5.6%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 379.80 us (91.3%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 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.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 | 1.0932e+05 | 12514 | 1 | 1.145e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.97625624464041 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.01248220070480516, dt = 0.0015874227857828045 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1073.00 ns (0.3%)
gen split merge : 19.91 us (4.8%)
split / merge op : 0/0
apply split merge : 1463.00 ns (0.4%)
LB compute : 376.65 us (90.9%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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.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 | 1.0909e+05 | 12514 | 1 | 1.147e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.819330357605345 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.014069623490587964, dt = 0.0016635943086238045 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 400.23 us (95.6%)
LB move op cnt : 0
LB apply : 4.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (66.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.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 | 1.0883e+05 | 12514 | 1 | 1.150e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.083587715215124 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.015733217799211767, dt = 0.001728817971683793 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 992.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 372.19 us (95.4%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 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.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 | 1.0892e+05 | 12514 | 1 | 1.149e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.17106170115648 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.01746203577089556, dt = 0.0017834627827891317 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1012.00 ns (0.2%)
gen split merge : 1042.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.2%)
LB compute : 420.08 us (95.7%)
LB move op cnt : 0
LB apply : 3.68 us (0.8%)
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.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 | 1.0722e+05 | 12514 | 1 | 1.167e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.01056227270483 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.01924549855368469, dt = 0.0018564631692236776 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1313.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 378.38 us (95.3%)
LB move op cnt : 0
LB apply : 4.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 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.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 | 1.0581e+05 | 12514 | 1 | 1.183e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.507673382628234 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.021101961722908368, dt = 0.0019187113217907792 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1263.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 394.76 us (95.6%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (74.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 | 1.0611e+05 | 12514 | 1 | 1.179e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.56932406590775 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.023020673044699146, dt = 0.0019564106821147766 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1393.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 427.49 us (95.9%)
LB move op cnt : 0
LB apply : 3.74 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (78.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 | 1.0333e+05 | 12514 | 1 | 1.211e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.1572207220151 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.024977083726813922, dt = 2.2916273186079222e-05 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.5%)
patch tree reduce : 1362.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 373.04 us (95.1%)
LB move op cnt : 0
LB apply : 4.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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.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 | 9.8813e+04 | 12514 | 1 | 1.266e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6514270660582091 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 20 [SPH][rank=0]
Info: time since start : 16.057510629 (s) [SPH][rank=0]
Info: dump to orztang_00001.vtk [VTK Dump][rank=0]
- took 2.59 ms, bandwidth = 258.56 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 737.01 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 741.72 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 766.19 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.007590998000000001 s
Info: compute_slice took 740.78 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.10 us (1.9%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 498.80 us (95.4%)
LB move op cnt : 0
LB apply : 3.96 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 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.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 | 1.0354e+05 | 12514 | 1 | 1.209e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.917743223501084 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.026843718993378445, dt = 0.001860550715917643 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 412.33 us (95.3%)
LB move op cnt : 0
LB apply : 4.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 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.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 | 1.0467e+05 | 12514 | 1 | 1.196e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.024467962134906 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.028704269709296088, dt = 0.0018829007690911558 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1383.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 367.37 us (95.2%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 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.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 | 1.0347e+05 | 12514 | 1 | 1.209e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.04513659438466 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.030587170478387243, dt = 0.0016381148092677654 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1643.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 458.34 us (95.8%)
LB move op cnt : 0
LB apply : 3.77 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 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.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 | 1.0105e+05 | 12514 | 1 | 1.238e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.61916742713502 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03222528528765501, dt = 0.0016383992776190421 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1262.00 ns (0.3%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 364.56 us (95.0%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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.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 | 1.0094e+05 | 12514 | 1 | 1.240e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.574662591847755 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.033863684565274055, dt = 0.0016414459921636128 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1453.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.2%)
LB compute : 435.04 us (95.8%)
LB move op cnt : 0
LB apply : 4.19 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 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.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 | 9.5294e+04 | 12514 | 1 | 1.313e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.998403612005674 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03550513055743767, dt = 0.0016485276087025093 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1362.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 390.21 us (95.5%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (73.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.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.9154e+04 | 12514 | 1 | 1.262e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.02329890189079 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03715365816614018, dt = 0.0016592468035131129 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.17 us (1.3%)
patch tree reduce : 1343.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 458.23 us (95.6%)
LB move op cnt : 0
LB apply : 4.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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.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.9700e+04 | 12514 | 1 | 1.255e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.58975084863259 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03881290496965329, dt = 0.001673343931171752 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1743.00 ns (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 373.92 us (95.0%)
LB move op cnt : 0
LB apply : 3.87 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.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 | 1.0166e+05 | 12514 | 1 | 1.231e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.93933798053415 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04048624890082504, dt = 0.0015861848556525807 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1392.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 381.56 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.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.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 | 1.0081e+05 | 12514 | 1 | 1.241e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.00263931980107 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04207243375647762, dt = 0.0016269732097045886 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1062.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 346.20 us (94.9%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
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.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 | 1.0056e+05 | 12514 | 1 | 1.244e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.06683425283886 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.043699406966182214, dt = 0.001641938850306016 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 375.38 us (95.2%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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.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 | 1.0046e+05 | 12514 | 1 | 1.246e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.45176652066381 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04534134581648823, dt = 0.0016547889035978818 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1041.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 379.28 us (95.5%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 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.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 | 9.7698e+04 | 12514 | 1 | 1.281e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.50864020650826 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04699613472008611, dt = 0.0015959304164424983 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1203.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1051.00 ns (0.3%)
LB compute : 395.02 us (95.4%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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.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 | 9.8305e+04 | 12514 | 1 | 1.273e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.13323450601768 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04859206513652861, dt = 0.0014079348634713912 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1152.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 395.71 us (95.5%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
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.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 | 9.8867e+04 | 12514 | 1 | 1.266e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.04427787145469 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 35 [SPH][rank=0]
Info: time since start : 21.130598946000003 (s) [SPH][rank=0]
Info: dump to orztang_00002.vtk [VTK Dump][rank=0]
- took 2.49 ms, bandwidth = 268.88 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 772.58 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 772.27 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 797.96 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.0057101850000000004 s
Info: compute_slice took 780.15 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.48 us (1.7%)
patch tree reduce : 1473.00 ns (0.3%)
gen split merge : 822.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 530.76 us (95.7%)
LB move op cnt : 0
LB apply : 3.68 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (79.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.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 | 9.5168e+04 | 12514 | 1 | 1.315e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.61118299285379 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05162947838013705, dt = 0.001651354359220398 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1002.00 ns (0.2%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1333.00 ns (0.3%)
LB compute : 392.22 us (95.6%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 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.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 | 9.4426e+04 | 12514 | 1 | 1.325e-01 | 0.0% | 1.6% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.85800629868951 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05328083273935745, dt = 0.0015290644681638938 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1343.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 401.08 us (95.7%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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.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 | 9.6903e+04 | 12514 | 1 | 1.291e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.62536033238154 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.054809897207521344, dt = 0.0015427319662999724 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1051.00 ns (0.3%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 379.84 us (95.2%)
LB move op cnt : 0
LB apply : 5.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 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.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.6403e+04 | 12514 | 1 | 1.298e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.7844101173105 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05635262917382131, dt = 0.0015467003552101784 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1022.00 ns (0.2%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 408.44 us (95.6%)
LB move op cnt : 0
LB apply : 4.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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.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.6883e+04 | 12514 | 1 | 1.292e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.108193120937266 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05789932952903149, dt = 0.0015725664386664047 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1113.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 375.99 us (95.1%)
LB move op cnt : 0
LB apply : 4.11 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.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 | 9.5553e+04 | 12514 | 1 | 1.310e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.22753665128717 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0594718959676979, dt = 0.0015993315977131401 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 387.12 us (95.3%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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.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 | 9.6375e+04 | 12514 | 1 | 1.298e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.34116248634162 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.061071227565411036, dt = 0.0016258270493755094 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1022.00 ns (0.2%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 400.55 us (95.6%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (72.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 | 9.5571e+04 | 12514 | 1 | 1.309e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.70008678748104 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06269705461478654, dt = 0.001650178246872624 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1313.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1111.00 ns (0.3%)
LB compute : 404.61 us (95.5%)
LB move op cnt : 0
LB apply : 4.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (73.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.4429e+04 | 12514 | 1 | 1.325e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.827495180821124 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06434723286165916, dt = 0.0016741755435075588 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1082.00 ns (0.2%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.2%)
LB compute : 422.89 us (95.6%)
LB move op cnt : 0
LB apply : 4.15 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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.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 | 9.2573e+04 | 12514 | 1 | 1.352e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.58529849652624 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06602140840516672, dt = 0.0016979897047495053 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1193.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 401.52 us (92.1%)
LB move op cnt : 0
LB apply : 19.53 us (4.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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.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.4845e+04 | 12514 | 1 | 1.319e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.32933367336946 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06771939810991623, dt = 0.0016899393493586196 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 1283.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 388.80 us (95.0%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 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.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.2931e+04 | 12514 | 1 | 1.347e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.179277589735904 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06940933745927484, dt = 0.001728062686764443 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 390.77 us (95.2%)
LB move op cnt : 0
LB apply : 4.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (76.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.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.5722e+04 | 12514 | 1 | 1.460e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.6144355380101 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07113740014603928, dt = 0.001698495637706302 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1402.00 ns (0.3%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 414.54 us (95.4%)
LB move op cnt : 0
LB apply : 4.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (73.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.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 | 9.3394e+04 | 12514 | 1 | 1.340e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.63394232885598 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07283589578374558, dt = 0.0017297267362041343 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.4%)
patch tree reduce : 1453.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 399.63 us (95.2%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (75.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.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 | 9.3608e+04 | 12514 | 1 | 1.337e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.57975310607213 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07456562251994972, dt = 0.00043437748005029087 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1282.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 396.89 us (95.4%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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.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.6286e+04 | 12514 | 1 | 1.300e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.031952992846078 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 51 [SPH][rank=0]
Info: time since start : 26.587567936000003 (s) [SPH][rank=0]
Info: dump to orztang_00003.vtk [VTK Dump][rank=0]
- took 2.53 ms, bandwidth = 263.79 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 797.61 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 795.54 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 812.74 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.007231479000000001 s
Info: compute_slice took 798.02 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.20 us (2.0%)
patch tree reduce : 1483.00 ns (0.3%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 545.74 us (95.4%)
LB move op cnt : 0
LB apply : 4.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.64 us (75.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 | 9.1024e+04 | 12514 | 1 | 1.375e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.30690207680006 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0767684114535447, dt = 0.001801637757990647 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1273.00 ns (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 377.68 us (95.1%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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.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 | 9.3325e+04 | 12514 | 1 | 1.341e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.36941215735782 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07857004921153535, dt = 0.0017970137863251524 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1072.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 399.70 us (95.5%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
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.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 | 9.2990e+04 | 12514 | 1 | 1.346e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.07226281045752 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0803670629978605, dt = 0.0017806094142012515 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1062.00 ns (0.3%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 396.42 us (95.5%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 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.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 | 9.3546e+04 | 12514 | 1 | 1.338e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.91806771911773 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08214767241206175, dt = 0.0018166035197378504 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.5%)
patch tree reduce : 1363.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 373.75 us (95.0%)
LB move op cnt : 0
LB apply : 4.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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.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 | 9.2953e+04 | 12514 | 1 | 1.346e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.576909439965206 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0839642759317996, dt = 0.0018108838379656466 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 371.51 us (95.1%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 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.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.3413e+04 | 12514 | 1 | 1.340e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.66356088998256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08577515976976524, dt = 0.001849481219958315 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1493.00 ns (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 372.44 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.75 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.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 | 9.2163e+04 | 12514 | 1 | 1.358e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.03568573503623 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08762464098972356, dt = 0.0018905920125206585 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.4%)
patch tree reduce : 1472.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 417.19 us (95.4%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 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.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.3114e+04 | 12514 | 1 | 1.344e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.64297400788224 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08951523300224422, dt = 0.0018905315319663228 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1303.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 378.92 us (95.4%)
LB move op cnt : 0
LB apply : 4.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 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.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.2110e+04 | 12514 | 1 | 1.359e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.09550369901598 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09140576453421054, dt = 0.0019335799226131247 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1313.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 366.87 us (95.1%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (75.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.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 | 9.2017e+04 | 12514 | 1 | 1.360e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.184203414785195 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09333934445682367, dt = 0.001949701580041662 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 404.53 us (95.5%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.88 us (90.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.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 | 9.3315e+04 | 12514 | 1 | 1.341e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.339134337718335 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09528904603686533, dt = 0.0019480547959991395 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.6%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 361.93 us (94.9%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 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.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 | 9.3438e+04 | 12514 | 1 | 1.339e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.36388355289874 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09723710083286448, dt = 0.0019508996257033427 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 386.84 us (95.4%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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.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 | 9.2832e+04 | 12514 | 1 | 1.348e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.099954067339496 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09918800045856782, dt = 0.0008119995414321846 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1203.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 385.48 us (95.5%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 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.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 | 9.3165e+04 | 12514 | 1 | 1.343e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.762790196428234 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 65 [SPH][rank=0]
Info: time since start : 31.897043157000002 (s) [SPH][rank=0]
Info: dump to orztang_00004.vtk [VTK Dump][rank=0]
- took 2.55 ms, bandwidth = 261.71 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 820.11 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 820.30 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 834.16 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.005661485 s
Info: compute_slice took 798.33 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.22 us (1.9%)
patch tree reduce : 1623.00 ns (0.3%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1383.00 ns (0.3%)
LB compute : 521.57 us (95.4%)
LB move op cnt : 0
LB apply : 4.56 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (76.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.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.8068e+04 | 12514 | 1 | 1.421e-01 | 0.0% | 1.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.71695863587069 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10196236612843612, dt = 0.0019459304695907688 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1051.00 ns (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1593.00 ns (0.4%)
LB compute : 386.85 us (95.2%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 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.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.2715e+04 | 12514 | 1 | 1.350e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.9021618073685 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10390829659802689, dt = 0.001944416352853797 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1102.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 378.79 us (95.4%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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.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.5235e+04 | 12514 | 1 | 1.663e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.08406543544869 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10585271295088068, dt = 0.0019405247025612474 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 1052.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 405.31 us (95.4%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 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.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 | 6.3842e+04 | 12514 | 1 | 1.960e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.639309481534944 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10779323765344193, dt = 0.0019359284646876733 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1182.00 ns (0.2%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 500.50 us (96.3%)
LB move op cnt : 0
LB apply : 3.59 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (72.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.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.5287e+04 | 12514 | 1 | 1.467e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.49827208138822 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10972916611812959, dt = 0.0019240239999708383 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 383.07 us (95.4%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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.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 | 9.1412e+04 | 12514 | 1 | 1.369e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.59655807514155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11165319011810043, dt = 0.001915467401810751 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.4%)
patch tree reduce : 1243.00 ns (0.3%)
gen split merge : 1051.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 393.13 us (95.4%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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.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 | 9.2192e+04 | 12514 | 1 | 1.357e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.801147213704766 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11356865751991119, dt = 0.0019062945510694216 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1152.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 406.39 us (95.6%)
LB move op cnt : 0
LB apply : 3.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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.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 | 9.1394e+04 | 12514 | 1 | 1.369e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.12017630942021 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1154749520709806, dt = 0.0018902954467948307 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 365.68 us (95.2%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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.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 | 9.0162e+04 | 12514 | 1 | 1.388e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.02975353741603 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11736524751777544, dt = 0.0018784173052346829 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1582.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1393.00 ns (0.3%)
LB compute : 458.38 us (96.0%)
LB move op cnt : 0
LB apply : 3.82 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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.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 | 9.1677e+04 | 12514 | 1 | 1.365e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.54044825965825 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11924366482301012, dt = 0.0018834320378661629 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.2%)
patch tree reduce : 1071.00 ns (0.3%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 384.29 us (95.4%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (72.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.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 | 9.2325e+04 | 12514 | 1 | 1.355e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.023779500112056 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12112709686087628, dt = 0.001851048223932475 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1673.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 : 386.39 us (95.2%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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.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 | 9.0646e+04 | 12514 | 1 | 1.381e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.269445068587565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12297814508480875, dt = 0.0018626325335525777 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1633.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1413.00 ns (0.4%)
LB compute : 369.09 us (94.9%)
LB move op cnt : 0
LB apply : 4.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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.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 | 9.0906e+04 | 12514 | 1 | 1.377e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.710840883534196 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12484077761836133, dt = 0.00015922238163866564 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1262.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 427.15 us (95.7%)
LB move op cnt : 0
LB apply : 3.67 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (74.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.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 | 9.3649e+04 | 12514 | 1 | 1.336e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.289557968372761 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 79 [SPH][rank=0]
Info: time since start : 37.395845539 (s) [SPH][rank=0]
Info: dump to orztang_00005.vtk [VTK Dump][rank=0]
- took 2.39 ms, bandwidth = 280.27 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 809.47 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 808.69 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 818.56 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.005925927 s
Info: compute_slice took 808.35 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.40 us (2.0%)
patch tree reduce : 1522.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 502.59 us (95.2%)
LB move op cnt : 0
LB apply : 4.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (72.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.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.7003e+04 | 12514 | 1 | 1.438e-01 | 0.0% | 1.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.23199280944712 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12684714077638834, dt = 0.0018162363472258745 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 388.42 us (95.4%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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.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 | 9.0980e+04 | 12514 | 1 | 1.375e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.53637858052295 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12866337712361423, dt = 0.0018060203371259094 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1193.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 369.26 us (91.5%)
LB move op cnt : 0
LB apply : 19.64 us (4.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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.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 | 9.1391e+04 | 12514 | 1 | 1.369e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.48233177874514 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13046939746074013, dt = 0.0017869358192204295 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1342.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 : 358.64 us (95.0%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (73.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.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 | 9.1096e+04 | 12514 | 1 | 1.374e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.82920457998053 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13225633327996056, dt = 0.0017756039665172442 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.3%)
LB compute : 381.85 us (95.3%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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.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 | 9.0457e+04 | 12514 | 1 | 1.383e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.20581272693336 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1340319372464778, dt = 0.0017525334280106975 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 982.00 ns (0.2%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 395.98 us (95.5%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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.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 | 9.0816e+04 | 12514 | 1 | 1.378e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.786389837848446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1357844706744885, dt = 0.0017382200197562266 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1011.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 375.19 us (95.4%)
LB move op cnt : 0
LB apply : 4.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 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.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 | 9.0666e+04 | 12514 | 1 | 1.380e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.337076045871754 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13752269069424475, dt = 0.0017331025411578167 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1082.00 ns (0.2%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1313.00 ns (0.3%)
LB compute : 436.37 us (95.7%)
LB move op cnt : 0
LB apply : 4.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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.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.9503e+04 | 12514 | 1 | 1.398e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.62398544189018 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13925579323540258, dt = 0.0017185062023198005 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 393.41 us (95.6%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (75.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.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 | 9.1233e+04 | 12514 | 1 | 1.372e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.10351698300861 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.14097429943772238, dt = 0.0017089408205101984 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 992.00 ns (0.2%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1293.00 ns (0.3%)
LB compute : 399.85 us (95.5%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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.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 | 9.0555e+04 | 12514 | 1 | 1.382e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.51910042452516 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1426832402582326, dt = 0.0016370005035784578 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1423.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 388.57 us (95.4%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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.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 | 9.0396e+04 | 12514 | 1 | 1.384e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.570224652874195 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.14432024076181105, dt = 0.0016080424885129697 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 388.05 us (95.4%)
LB move op cnt : 0
LB apply : 3.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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.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 | 9.0474e+04 | 12514 | 1 | 1.383e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.852897247856404 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.145928283250324, dt = 0.0015680581964616115 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 992.00 ns (0.3%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 363.88 us (95.2%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
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.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.8866e+04 | 12514 | 1 | 1.408e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.087195698036886 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1474963414467856, dt = 0.0015080167017400754 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.1%)
patch tree reduce : 1353.00 ns (0.2%)
gen split merge : 761.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 544.36 us (96.5%)
LB move op cnt : 0
LB apply : 3.72 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (73.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.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 | 8.6146e+04 | 12514 | 1 | 1.453e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.372256431310596 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1490043581485257, dt = 0.0009956418514742993 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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 (1.4%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1442.00 ns (0.3%)
LB compute : 403.61 us (95.2%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 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.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.9792e+04 | 12514 | 1 | 1.394e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.71864458638405 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 94 [SPH][rank=0]
Info: time since start : 42.940480203 (s) [SPH][rank=0]
Info: dump to orztang_00006.vtk [VTK Dump][rank=0]
- took 2.55 ms, bandwidth = 262.66 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 822.73 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 816.97 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 826.67 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.006671996 s
Info: compute_slice took 822.82 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.39 us (2.1%)
patch tree reduce : 1543.00 ns (0.3%)
gen split merge : 1012.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 527.63 us (95.2%)
LB move op cnt : 0
LB apply : 4.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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.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 | 9.0151e+04 | 12514 | 1 | 1.388e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.637601645542325 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15152838432199126, dt = 0.0014784073253910988 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1092.00 ns (0.2%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 458.10 us (96.1%)
LB move op cnt : 0
LB apply : 3.77 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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.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.9776e+04 | 12514 | 1 | 1.394e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.18206160652085 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15300679164738235, dt = 0.0014515824660559712 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1163.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 408.33 us (95.6%)
LB move op cnt : 0
LB apply : 3.60 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 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.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 | 9.0259e+04 | 12514 | 1 | 1.386e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.69121115688716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15445837411343832, dt = 0.001454177126038032 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1612.00 ns (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 368.85 us (95.0%)
LB move op cnt : 0
LB apply : 4.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 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.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 | 9.0119e+04 | 12514 | 1 | 1.389e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.69973698185894 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15591255123947637, dt = 0.001470990530411913 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 394.44 us (95.5%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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.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.6919e+04 | 12514 | 1 | 1.440e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.78149733943572 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15738354176988828, dt = 0.0014260978290481735 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1283.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 392.35 us (95.4%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 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.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.9783e+04 | 12514 | 1 | 1.394e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.834040565026704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15880963959893646, dt = 0.0014389030719044998 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1442.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 379.12 us (95.3%)
LB move op cnt : 0
LB apply : 3.66 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.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 | 8.9791e+04 | 12514 | 1 | 1.394e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.16801662028399 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16024854267084096, dt = 0.0013967885349904945 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 387.70 us (95.4%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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.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 | 9.0632e+04 | 12514 | 1 | 1.381e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.41807777579425 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16164533120583147, dt = 0.001414869601743001 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1282.00 ns (0.3%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 390.80 us (91.8%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (73.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.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 | 9.0291e+04 | 12514 | 1 | 1.386e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.75065737555692 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16306020080757447, dt = 0.0014428083503417533 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 393.90 us (95.5%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 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.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 | 9.0255e+04 | 12514 | 1 | 1.387e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.46171857156655 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1645030091579162, dt = 0.0013822460828741092 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1142.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 407.03 us (95.7%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
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.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.9658e+04 | 12514 | 1 | 1.396e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.65185948568548 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1658852552407903, dt = 0.001396884897621297 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1212.00 ns (0.3%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 375.35 us (95.1%)
LB move op cnt : 0
LB apply : 4.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 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.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 | 8.8224e+04 | 12514 | 1 | 1.418e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.45324404269283 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1672821401384116, dt = 0.0014027573846675482 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.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 : 962.00 ns (0.2%)
LB compute : 405.64 us (95.4%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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.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.9157e+04 | 12514 | 1 | 1.404e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.978792813752015 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16868489752307916, dt = 0.0013712116415543324 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 417.28 us (95.6%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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.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.9303e+04 | 12514 | 1 | 1.401e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.227280078002984 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17005610916463348, dt = 0.0013976557845838291 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1253.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 397.33 us (95.5%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 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.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.9910e+04 | 12514 | 1 | 1.392e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.150463173345685 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17145376494921732, dt = 0.00135519447951265 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.0%)
patch tree reduce : 1543.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 447.05 us (96.1%)
LB move op cnt : 0
LB apply : 3.87 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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.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 | 8.8505e+04 | 12514 | 1 | 1.414e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.50453667241558 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17280895942872998, dt = 0.0013466614693695986 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1402.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 427.64 us (95.7%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (72.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.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 | 8.8997e+04 | 12514 | 1 | 1.406e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.47771672125686 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17415562089809958, dt = 0.000844379101900411 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1283.00 ns (0.3%)
LB compute : 404.15 us (95.4%)
LB move op cnt : 0
LB apply : 4.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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.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 | 9.0239e+04 | 12514 | 1 | 1.387e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.919832125811514 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 112 [SPH][rank=0]
Info: time since start : 48.964012515 (s) [SPH][rank=0]
Info: dump to orztang_00007.vtk [VTK Dump][rank=0]
- took 2.54 ms, bandwidth = 263.42 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 827.24 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 828.03 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 831.05 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.006787293000000001 s
Info: compute_slice took 830.49 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.04 us (1.7%)
patch tree reduce : 1483.00 ns (0.2%)
gen split merge : 882.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.1%)
LB compute : 611.60 us (96.0%)
LB move op cnt : 0
LB apply : 3.95 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (76.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.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 | 6.3914e+04 | 12514 | 1 | 1.958e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.168938110364433 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17636887165037832, dt = 0.0013514532400282719 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.4%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 396.99 us (95.2%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.66 us (74.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.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 | 8.9046e+04 | 12514 | 1 | 1.405e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.61954606124946 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1777203248904066, dt = 0.0013549604365369209 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1002.00 ns (0.2%)
gen split merge : 1052.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.2%)
LB compute : 428.39 us (92.4%)
LB move op cnt : 0
LB apply : 19.92 us (4.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (74.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.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 | 8.8122e+04 | 12514 | 1 | 1.420e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.34918054097254 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17907528532694353, dt = 0.0013646898850699896 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1103.00 ns (0.2%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1453.00 ns (0.3%)
LB compute : 443.25 us (95.7%)
LB move op cnt : 0
LB apply : 4.03 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 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.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.8916e+04 | 12514 | 1 | 1.407e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.90742617030159 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18043997521201352, dt = 0.0013482146317933047 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1323.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 380.31 us (95.0%)
LB move op cnt : 0
LB apply : 4.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 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.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 | 8.8885e+04 | 12514 | 1 | 1.408e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.4740666170333 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18178818984380682, dt = 0.0013245565440626308 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 401.30 us (95.5%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 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.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 | 8.8956e+04 | 12514 | 1 | 1.407e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.896401195138495 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18311274638786945, dt = 0.0013464553763883837 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1342.00 ns (0.3%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 381.74 us (95.2%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 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.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 | 8.8795e+04 | 12514 | 1 | 1.409e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.39431239825411 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18445920176425784, dt = 0.0013600289301134493 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 372.14 us (90.6%)
LB move op cnt : 0
LB apply : 4.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 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.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 | 8.8458e+04 | 12514 | 1 | 1.415e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.609239974343176 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18581923069437128, dt = 0.0013202729298974257 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.3%)
LB compute : 397.26 us (95.2%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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.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 | 8.9233e+04 | 12514 | 1 | 1.402e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.891839438534106 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1871395036242687, dt = 0.001332782922570201 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1323.00 ns (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 416.05 us (95.7%)
LB move op cnt : 0
LB apply : 3.98 us (0.9%)
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.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 | 8.7220e+04 | 12514 | 1 | 1.435e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.44132479975114 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1884722865468389, dt = 0.001353433808233219 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1172.00 ns (0.3%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 392.10 us (95.4%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
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.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 | 8.8702e+04 | 12514 | 1 | 1.411e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.53630209059177 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18982572035507211, dt = 0.0013555207531534051 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 370.47 us (95.4%)
LB move op cnt : 0
LB apply : 3.91 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.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.9235e+04 | 12514 | 1 | 1.402e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.797430835102155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1911812411082255, dt = 0.0013242145765217054 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1332.00 ns (0.3%)
gen split merge : 1182.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 455.09 us (95.9%)
LB move op cnt : 0
LB apply : 3.74 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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.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 | 8.9144e+04 | 12514 | 1 | 1.404e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.95931550126641 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19250545568474722, dt = 0.0013313784252494754 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1233.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1073.00 ns (0.3%)
LB compute : 376.11 us (95.3%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (73.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.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 | 8.8320e+04 | 12514 | 1 | 1.417e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.82710996120383 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1938368341099967, dt = 0.001351344743704284 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1542.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 370.26 us (95.1%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 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.8087e+04 | 12514 | 1 | 1.421e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.24388349654172 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.195188178853701, dt = 0.0013121233175363697 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 1222.00 ns (0.2%)
gen split merge : 951.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.1%)
LB compute : 678.20 us (97.2%)
LB move op cnt : 0
LB apply : 3.53 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (74.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.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.9091e+04 | 12514 | 1 | 1.405e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.628887682851946 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19650030217123735, dt = 0.0013397864187826307 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 401.25 us (95.6%)
LB move op cnt : 0
LB apply : 4.09 us (1.0%)
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.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 | 8.7799e+04 | 12514 | 1 | 1.425e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.84007124679266 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19784008859001997, dt = 0.0013760236168013904 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1313.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 407.23 us (95.3%)
LB move op cnt : 0
LB apply : 4.54 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.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 | 8.8805e+04 | 12514 | 1 | 1.409e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.15351449656285 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19921611220682137, dt = 0.000783887793178617 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1092.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 353.76 us (95.2%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 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.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 | 8.4391e+04 | 12514 | 1 | 1.483e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.030767557266614 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 131 [SPH][rank=0]
Info: time since start : 55.241750894000006 (s) [SPH][rank=0]
Info: dump to orztang_00008.vtk [VTK Dump][rank=0]
- took 2.43 ms, bandwidth = 275.31 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 834.85 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 833.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 836.30 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.005687065000000001 s
Info: compute_slice took 835.96 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.69 us (1.8%)
patch tree reduce : 1614.00 ns (0.3%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.2%)
LB compute : 560.88 us (95.6%)
LB move op cnt : 0
LB apply : 4.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.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.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.1730e+04 | 12514 | 1 | 1.531e-01 | 0.0% | 1.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.88982527983832 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20135633076729195, dt = 0.0013288005370191988 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.2%)
LB compute : 419.10 us (95.6%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 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.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 | 8.5321e+04 | 12514 | 1 | 1.467e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.61528282142206 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20268513130431115, dt = 0.0013568089413379808 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1743.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 433.03 us (95.6%)
LB move op cnt : 0
LB apply : 3.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (78.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.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.6239e+04 | 12514 | 1 | 1.451e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.66106999440916 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20404194024564914, dt = 0.0013640406201079988 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1203.00 ns (0.3%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 367.19 us (95.1%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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.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.6333e+04 | 12514 | 1 | 1.450e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.877266275081176 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20540598086575715, dt = 0.0013450271018836857 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 376.96 us (95.0%)
LB move op cnt : 0
LB apply : 4.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (76.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.7917e+04 | 12514 | 1 | 1.423e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.01826151429098 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20675100796764084, dt = 0.0013680258763999252 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.85 us (1.5%)
patch tree reduce : 1422.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 434.36 us (95.5%)
LB move op cnt : 0
LB apply : 3.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 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.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.6523e+04 | 12514 | 1 | 1.446e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.051179494075406 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20811903384404076, dt = 0.001362792911381044 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1362.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 370.10 us (95.1%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 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 | 8.7026e+04 | 12514 | 1 | 1.438e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.11830228581504 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20948182675542182, dt = 0.0013655961857509413 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1193.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 362.06 us (95.3%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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.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 | 8.7331e+04 | 12514 | 1 | 1.433e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.307970097539474 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21084742294117276, dt = 0.0013540762035323215 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 358.08 us (95.1%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 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.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 | 8.6398e+04 | 12514 | 1 | 1.448e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.65537545819147 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21220149914470507, dt = 0.0013824154346610141 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 407.54 us (95.6%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 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.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 | 8.6749e+04 | 12514 | 1 | 1.443e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.49921612098605 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2135839145793661, dt = 0.001338789544152428 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1072.00 ns (0.2%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 437.52 us (95.9%)
LB move op cnt : 0
LB apply : 4.22 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 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.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 | 8.2288e+04 | 12514 | 1 | 1.521e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.692304326752836 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21492270412351852, dt = 0.0013606115764408936 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1513.00 ns (0.3%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 433.38 us (95.7%)
LB move op cnt : 0
LB apply : 3.95 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 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.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 | 8.6717e+04 | 12514 | 1 | 1.443e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.94247737568358 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21628331569995943, dt = 0.0013590812907370783 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 378.58 us (95.3%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (73.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.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 | 8.6159e+04 | 12514 | 1 | 1.452e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.68641117759505 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2176423969906965, dt = 0.001353784432185693 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 408.31 us (95.6%)
LB move op cnt : 0
LB apply : 3.63 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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.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 | 8.6754e+04 | 12514 | 1 | 1.442e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.78662263650782 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2189961814228822, dt = 0.0013631278288311443 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1282.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 402.74 us (95.7%)
LB move op cnt : 0
LB apply : 3.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 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.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 | 8.5791e+04 | 12514 | 1 | 1.459e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.64221734835393 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22035930925171335, dt = 0.001381791533543868 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1313.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 372.49 us (95.4%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 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.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.6436e+04 | 12514 | 1 | 1.448e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.35906874366536 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22174110078525722, dt = 0.001342323565136173 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1192.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 390.23 us (95.4%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
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.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 | 8.6647e+04 | 12514 | 1 | 1.444e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.459497929463666 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22308342435039338, dt = 0.0013502790103682534 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1594.00 ns (0.4%)
gen split merge : 1123.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 374.72 us (95.1%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 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.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 | 8.6535e+04 | 12514 | 1 | 1.446e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.61425566575481 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22443370336076163, dt = 0.0005662966392383506 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.10 us (1.5%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 391.11 us (95.1%)
LB move op cnt : 0
LB apply : 4.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 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.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.8843e+04 | 12514 | 1 | 1.409e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.473450815214225 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 150 [SPH][rank=0]
Info: time since start : 61.551944721000005 (s) [SPH][rank=0]
Info: dump to orztang_00009.vtk [VTK Dump][rank=0]
- took 2.24 ms, bandwidth = 298.25 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 851.27 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 851.66 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 851.18 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.0058760670000000004 s
Info: compute_slice took 856.11 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.60 us (1.8%)
patch tree reduce : 1754.00 ns (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.1%)
LB compute : 566.91 us (95.7%)
LB move op cnt : 0
LB apply : 4.43 us (0.7%)
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.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.2078e+04 | 12514 | 1 | 1.525e-01 | 0.0% | 1.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.682232966381278 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22629942745864337, dt = 0.0013172798704699016 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1142.00 ns (0.2%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 446.54 us (95.9%)
LB move op cnt : 0
LB apply : 4.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 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.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.0921e+04 | 12514 | 1 | 1.546e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.66534202556843 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22761670732911327, dt = 0.001236524381019018 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1343.00 ns (0.3%)
gen split merge : 1102.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 427.56 us (95.8%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
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.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 | 8.5489e+04 | 12514 | 1 | 1.464e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.410183586324674 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22885323171013228, dt = 0.0012433271689877646 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 388.17 us (95.5%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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.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 | 8.6560e+04 | 12514 | 1 | 1.446e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.960512812915102 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23009655887912003, dt = 0.0012418174034734728 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 390.97 us (95.4%)
LB move op cnt : 0
LB apply : 4.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 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.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.6053e+04 | 12514 | 1 | 1.454e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.741689475649164 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23133837628259352, dt = 0.0012410001708198866 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 420.58 us (95.7%)
LB move op cnt : 0
LB apply : 3.60 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 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.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.6484e+04 | 12514 | 1 | 1.447e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.875350801923762 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2325793764534134, dt = 0.0012319854717199614 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1403.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 374.83 us (95.2%)
LB move op cnt : 0
LB apply : 4.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 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.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 | 8.0329e+04 | 12514 | 1 | 1.558e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.469883183401716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23381136192513335, dt = 0.0012067968830693577 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.2%)
patch tree reduce : 1012.00 ns (0.2%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 393.52 us (95.7%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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.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.5960e+04 | 12514 | 1 | 1.456e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.84272478427005 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2350181588082027, dt = 0.001206788443743999 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 388.76 us (95.2%)
LB move op cnt : 0
LB apply : 4.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (70.9%)
Warning: High interface/patch volume ratio. [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.6180e+04 | 12514 | 1 | 1.452e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.918738173965693 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2362249472519467, dt = 0.0012147511125464294 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1423.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 426.29 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.67 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.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.5427e+04 | 12514 | 1 | 1.465e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.853074248537865 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23743969836449313, dt = 0.0012011719163728069 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 391.06 us (95.2%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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.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.5972e+04 | 12514 | 1 | 1.456e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.707612330050036 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23864087028086595, dt = 0.0011982444056763285 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1073.00 ns (0.3%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 398.72 us (95.6%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 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.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 | 8.6458e+04 | 12514 | 1 | 1.447e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.80285310907992 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2398391146865423, dt = 0.0012031812497108876 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 407.01 us (95.5%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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.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 | 8.5535e+04 | 12514 | 1 | 1.463e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.606184886033706 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24104229593625318, dt = 0.001216432450631894 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1193.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 414.15 us (95.7%)
LB move op cnt : 0
LB apply : 4.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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.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.6040e+04 | 12514 | 1 | 1.454e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.10887735280912 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24225872838688506, dt = 0.0012205966359656974 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1032.00 ns (0.2%)
gen split merge : 531.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 439.31 us (95.8%)
LB move op cnt : 0
LB apply : 4.09 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 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.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 | 8.5672e+04 | 12514 | 1 | 1.461e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.08262049524932 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24347932502285075, dt = 0.0011921376678997492 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1273.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 369.65 us (95.2%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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.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.6033e+04 | 12514 | 1 | 1.455e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.505307368171714 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2446714626907505, dt = 0.0011903865215638072 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 379.58 us (95.3%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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.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 | 8.3467e+04 | 12514 | 1 | 1.499e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.58292143256485 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2458618492123143, dt = 0.001196420005837873 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1292.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 384.75 us (95.4%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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.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.2257e+04 | 12514 | 1 | 1.521e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.311388574891808 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24705826921815216, dt = 0.0011367618353850136 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 406.60 us (95.6%)
LB move op cnt : 0
LB apply : 4.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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.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.5617e+04 | 12514 | 1 | 1.462e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.998555987857447 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24819503105353719, dt = 0.001156184061573556 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.28 us (1.3%)
patch tree reduce : 992.00 ns (0.2%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1403.00 ns (0.3%)
LB compute : 451.87 us (95.9%)
LB move op cnt : 0
LB apply : 3.93 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 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.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 | 8.5821e+04 | 12514 | 1 | 1.458e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.5449198886813 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24935121511511074, dt = 0.0006487848848892308 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.2%)
LB compute : 398.38 us (95.5%)
LB move op cnt : 0
LB apply : 3.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 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.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.6444e+04 | 12514 | 1 | 1.448e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.133952626445744 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 171 [SPH][rank=0]
Info: time since start : 68.26998171800001 (s) [SPH][rank=0]
Info: dump to orztang_00010.vtk [VTK Dump][rank=0]
- took 2.55 ms, bandwidth = 262.42 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 861.13 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 863.25 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 862.37 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.006951208 s
Info: compute_slice took 864.33 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.86 us (1.9%)
patch tree reduce : 1573.00 ns (0.3%)
gen split merge : 1282.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 557.58 us (95.7%)
LB move op cnt : 0
LB apply : 4.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (73.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.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 | 8.6057e+04 | 12514 | 1 | 1.454e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.811264860131924 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2512041665457089, dt = 0.001207059671236539 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1202.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 379.61 us (95.3%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.84 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.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 | 8.4556e+04 | 12514 | 1 | 1.480e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.361544972630217 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2524112262169454, dt = 0.001172304433640577 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1243.00 ns (0.3%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1091.00 ns (0.2%)
LB compute : 417.01 us (91.6%)
LB move op cnt : 0
LB apply : 3.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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.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 | 8.6943e+04 | 12514 | 1 | 1.439e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.321124010423816 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.253583530650586, dt = 0.0011816914869368562 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 383.54 us (95.3%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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.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 | 8.6643e+04 | 12514 | 1 | 1.444e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.45404530818187 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.25476522213752284, dt = 0.0011412192874830696 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1422.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 409.28 us (95.4%)
LB move op cnt : 0
LB apply : 4.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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.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.6388e+04 | 12514 | 1 | 1.449e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.361535866158903 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2559064414250059, dt = 0.0011559325312204929 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.2%)
LB compute : 422.89 us (95.7%)
LB move op cnt : 0
LB apply : 4.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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.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.6648e+04 | 12514 | 1 | 1.444e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.813655159945508 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2570623739562264, dt = 0.0011781891212016549 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1103.00 ns (0.3%)
LB compute : 421.46 us (95.7%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
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.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.5700e+04 | 12514 | 1 | 1.460e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.04713778576655 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.25824056307742804, dt = 0.0011740380124894592 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1093.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 385.78 us (95.3%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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.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 | 8.6312e+04 | 12514 | 1 | 1.450e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.151417563948442 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2594146010899175, dt = 0.0011152185244646276 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1203.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 365.37 us (95.0%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 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.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 | 8.6613e+04 | 12514 | 1 | 1.445e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.787650814138086 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2605298196143821, dt = 0.0011221494856989119 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1353.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 : 364.86 us (95.1%)
LB move op cnt : 0
LB apply : 4.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 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.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 | 8.6369e+04 | 12514 | 1 | 1.449e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.881430098087655 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.261651969100081, dt = 0.0011351866001136355 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 364.24 us (95.0%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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.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.6055e+04 | 12514 | 1 | 1.454e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.102812874030295 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2627871557001946, dt = 0.001155904674145445 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 362.75 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.40 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.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 | 7.3991e+04 | 12514 | 1 | 1.691e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.604126983348657 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.26394306037434007, dt = 0.0011852945358426117 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 387.21 us (95.0%)
LB move op cnt : 0
LB apply : 4.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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.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 | 4.4647e+04 | 12514 | 1 | 2.803e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.223741666487157 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.26512835491018266, dt = 0.0012251388469018654 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1073.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 377.51 us (95.4%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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.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 | 8.5465e+04 | 12514 | 1 | 1.464e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.121890217598175 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2663534937570845, dt = 0.001142714031282996 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1082.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 373.91 us (95.3%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
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.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.5992e+04 | 12514 | 1 | 1.455e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.268392510637675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2674962077883675, dt = 0.001164606915285857 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1132.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 421.66 us (95.6%)
LB move op cnt : 0
LB apply : 4.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 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.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 | 8.5654e+04 | 12514 | 1 | 1.461e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.69676016906745 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2686608147036534, dt = 0.0011643745800086669 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 400.44 us (95.5%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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.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 | 8.5681e+04 | 12514 | 1 | 1.461e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.700183394571486 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.26982518928366206, dt = 0.0011909612581130031 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 991.00 ns (0.2%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 381.88 us (95.3%)
LB move op cnt : 0
LB apply : 4.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (73.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 | 8.6589e+04 | 12514 | 1 | 1.445e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.666551186019863 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2710161505417751, dt = 0.0012267087455853712 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.2%)
LB compute : 408.85 us (95.6%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (76.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.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 | 8.5336e+04 | 12514 | 1 | 1.466e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.11490908277352 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2722428592873605, dt = 0.001217953914651436 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1012.00 ns (0.2%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 404.55 us (95.7%)
LB move op cnt : 0
LB apply : 3.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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.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 | 8.6282e+04 | 12514 | 1 | 1.450e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.231287357122888 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.27346081320201193, dt = 0.0012333651227995092 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1352.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 371.35 us (95.2%)
LB move op cnt : 0
LB apply : 4.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (74.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.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 | 8.5810e+04 | 12514 | 1 | 1.458e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.44638594481723 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.27469417832481147, dt = 0.0003058216751885001 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.2%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 384.62 us (95.7%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
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.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.7774e+04 | 12514 | 1 | 1.426e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.722214189229224 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 193 [SPH][rank=0]
Info: time since start : 75.29686779900001 (s) [SPH][rank=0]
Info: dump to orztang_00011.vtk [VTK Dump][rank=0]
- took 3.51 ms, bandwidth = 190.21 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 883.92 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 868.11 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 869.22 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.00587335 s
Info: compute_slice took 869.76 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.0%)
patch tree reduce : 1483.00 ns (0.3%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 476.31 us (95.2%)
LB move op cnt : 0
LB apply : 4.05 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.48 us (74.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.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.2225e+04 | 12514 | 1 | 1.522e-01 | 0.0% | 1.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.455846282066915 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2762452666597638, dt = 0.0012659534996751053 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1403.00 ns (0.4%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 379.92 us (95.0%)
LB move op cnt : 0
LB apply : 4.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 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.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.5870e+04 | 12514 | 1 | 1.457e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.272617479394686 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2775112201594389, dt = 0.0012704733076565407 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 982.00 ns (0.2%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 399.75 us (95.7%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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.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.5213e+04 | 12514 | 1 | 1.469e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.144204404103828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.27878169346709547, dt = 0.0012848501627949636 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1273.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 371.11 us (95.2%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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.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.5115e+04 | 12514 | 1 | 1.470e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.460319724468157 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2800665436298904, dt = 0.0013097684159370203 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 992.00 ns (0.2%)
gen split merge : 1072.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 394.01 us (95.4%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (79.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.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.4197e+04 | 12514 | 1 | 1.486e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.724629281501667 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2813763120458274, dt = 0.0012793861784181802 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 360.58 us (95.1%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 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.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.4525e+04 | 12514 | 1 | 1.481e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.109485020319944 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2826556982242456, dt = 0.0012788971492164985 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1433.00 ns (0.3%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 410.53 us (95.3%)
LB move op cnt : 0
LB apply : 4.73 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.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 | 8.6199e+04 | 12514 | 1 | 1.452e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.71359492195743 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.28393459537346205, dt = 0.0012922818516986944 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 393.51 us (95.4%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 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.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.5844e+04 | 12514 | 1 | 1.458e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.91344076271483 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.28522687722516077, dt = 0.0012594534078021503 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1112.00 ns (0.2%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 429.12 us (95.8%)
LB move op cnt : 0
LB apply : 4.11 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (76.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.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 | 8.5002e+04 | 12514 | 1 | 1.472e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.797770407324112 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2864863306329629, dt = 0.0012718499054057229 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 363.59 us (95.2%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (21.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.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 | 8.5413e+04 | 12514 | 1 | 1.465e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.25100633611666 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.28775818053836866, dt = 0.0012882556495738065 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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 : 1393.00 ns (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 370.54 us (94.9%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.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.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.4719e+04 | 12514 | 1 | 1.477e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.39710172561987 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.28904643618794246, dt = 0.001309068011826024 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1022.00 ns (0.2%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 410.65 us (95.7%)
LB move op cnt : 0
LB apply : 3.60 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (76.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 | 8.5788e+04 | 12514 | 1 | 1.459e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.306877581603935 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.29035550419976847, dt = 0.0012800683345814022 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1402.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.2%)
LB compute : 428.93 us (95.7%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (75.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.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 | 8.2714e+04 | 12514 | 1 | 1.513e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.459381304855626 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.29163557253434985, dt = 0.0012918600967751635 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 375.23 us (95.2%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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.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 | 8.4516e+04 | 12514 | 1 | 1.481e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.409655592424365 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.29292743263112503, dt = 0.0013035600527474874 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1032.00 ns (0.2%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 408.14 us (95.7%)
LB move op cnt : 0
LB apply : 3.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (76.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.5608e+04 | 12514 | 1 | 1.462e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.10358661725449 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.29423099268387254, dt = 0.001279279429557057 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 358.30 us (95.0%)
LB move op cnt : 0
LB apply : 4.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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.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.2404e+04 | 12514 | 1 | 1.519e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.326270358906967 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2955102721134296, dt = 0.0012821004463841375 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 992.00 ns (0.2%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 401.40 us (95.5%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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.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.5174e+04 | 12514 | 1 | 1.469e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.414739801883446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2967923725598138, dt = 0.0012942969350090933 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1232.00 ns (0.3%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 370.33 us (95.2%)
LB move op cnt : 0
LB apply : 3.48 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.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 | 8.4558e+04 | 12514 | 1 | 1.480e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.48439371510918 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2980866694948229, dt = 0.0013089684746168484 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1062.00 ns (0.2%)
gen split merge : 1053.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.2%)
LB compute : 417.92 us (95.7%)
LB move op cnt : 0
LB apply : 3.95 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 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.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 | 8.4291e+04 | 12514 | 1 | 1.485e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.740829392009005 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.29939563796943974, dt = 0.000604362030560246 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 385.62 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.62 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.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.5268e+04 | 12514 | 1 | 1.468e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.824776713881537 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 213 [SPH][rank=0]
Info: time since start : 81.95509435000001 (s) [SPH][rank=0]
Info: dump to orztang_00012.vtk [VTK Dump][rank=0]
- took 2.57 ms, bandwidth = 260.32 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 885.68 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 881.48 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 881.03 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.006873486000000001 s
Info: compute_slice took 885.60 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.54 us (1.9%)
patch tree reduce : 1704.00 ns (0.3%)
gen split merge : 1073.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.2%)
LB compute : 540.29 us (95.6%)
LB move op cnt : 0
LB apply : 3.93 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 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.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 | 8.3655e+04 | 12514 | 1 | 1.496e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.985333897469058 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.30132908932484936, dt = 0.0013355004740159423 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.0%)
patch tree reduce : 1072.00 ns (0.2%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.2%)
LB compute : 498.68 us (96.5%)
LB move op cnt : 0
LB apply : 3.87 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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.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 | 8.1189e+04 | 12514 | 1 | 1.541e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.192499555724652 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3026645897988653, dt = 0.0013698869932331332 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1142.00 ns (0.2%)
gen split merge : 761.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.2%)
LB compute : 494.91 us (96.2%)
LB move op cnt : 0
LB apply : 4.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (74.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.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 | 8.0332e+04 | 12514 | 1 | 1.558e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.657861823790782 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.30403447679209844, dt = 0.0013818222574976202 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1062.00 ns (0.2%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.2%)
LB compute : 473.36 us (96.2%)
LB move op cnt : 0
LB apply : 3.88 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 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.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 | 8.5697e+04 | 12514 | 1 | 1.460e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.0663222976545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.30541629904959605, dt = 0.001308378052423974 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.32 us (1.6%)
patch tree reduce : 1153.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1523.00 ns (0.4%)
LB compute : 363.58 us (94.9%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (62.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.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.5000e+04 | 12514 | 1 | 1.472e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.99344989939461 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.30672467710202, dt = 0.0013344210534419081 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.2%)
LB compute : 421.86 us (95.7%)
LB move op cnt : 0
LB apply : 3.67 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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.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 | 8.5167e+04 | 12514 | 1 | 1.469e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.69433632216712 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3080590981554619, dt = 0.0013383572697932213 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 982.00 ns (0.2%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 404.17 us (95.7%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 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.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 | 8.4803e+04 | 12514 | 1 | 1.476e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.65038221444727 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3093974554252551, dt = 0.0013502894282905558 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 426.51 us (95.6%)
LB move op cnt : 0
LB apply : 4.23 us (0.9%)
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.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 | 8.5443e+04 | 12514 | 1 | 1.465e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.19007562790203 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.31074774485354567, dt = 0.0013342768475946066 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1112.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1563.00 ns (0.4%)
LB compute : 391.87 us (95.4%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (75.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.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 | 8.4490e+04 | 12514 | 1 | 1.481e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.430871614213245 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3120820217011403, dt = 0.0013460827733990798 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 410.15 us (95.7%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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.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.5728e+04 | 12514 | 1 | 1.460e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.19713078294366 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3134281044745394, dt = 0.0013607766535210896 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1332.00 ns (0.3%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 368.02 us (95.1%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 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.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 | 8.5645e+04 | 12514 | 1 | 1.461e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.526909758881466 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.31478888112806047, dt = 0.0013689319575803764 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.2%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 398.83 us (95.6%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 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.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 | 8.5579e+04 | 12514 | 1 | 1.462e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.701855407185576 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.31615781308564084, dt = 0.0013550271708209624 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1173.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1283.00 ns (0.3%)
LB compute : 382.63 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.90 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.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.6468e+04 | 12514 | 1 | 1.447e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.706018155581376 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3175128402564618, dt = 0.0013741627629671866 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1122.00 ns (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 389.17 us (95.4%)
LB move op cnt : 0
LB apply : 4.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (75.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.6356e+04 | 12514 | 1 | 1.449e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.1380251595398 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.318887003019429, dt = 0.001367011458212184 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.2%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 403.70 us (95.7%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (75.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.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 | 8.4904e+04 | 12514 | 1 | 1.474e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.38908140707665 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3202540144776412, dt = 0.0013428576562894616 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.0%)
patch tree reduce : 1132.00 ns (0.2%)
gen split merge : 782.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 544.50 us (96.7%)
LB move op cnt : 0
LB apply : 3.70 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (75.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.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.0792e+04 | 12514 | 1 | 1.549e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.210777814651273 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3215968721339306, dt = 0.0013633300291432892 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.45 us (1.5%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 412.46 us (95.4%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 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.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.0076e+04 | 12514 | 1 | 1.563e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.40582437728198 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3229602021630739, dt = 0.0013400010804738628 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 401.59 us (95.1%)
LB move op cnt : 0
LB apply : 4.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 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.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 | 8.4562e+04 | 12514 | 1 | 1.480e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.59768682098955 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3243002032435478, dt = 0.000699796756452209 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1743.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.3%)
LB compute : 402.73 us (95.3%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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.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.5653e+04 | 12514 | 1 | 1.461e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.243382505948247 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 232 [SPH][rank=0]
Info: time since start : 88.531032714 (s) [SPH][rank=0]
Info: dump to orztang_00013.vtk [VTK Dump][rank=0]
- took 2.48 ms, bandwidth = 269.79 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 897.64 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 897.93 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 902.21 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.005871737 s
Info: compute_slice took 895.59 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.63 us (2.2%)
patch tree reduce : 1513.00 ns (0.3%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1173.00 ns (0.2%)
LB compute : 462.55 us (94.7%)
LB move op cnt : 0
LB apply : 4.08 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 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.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.1811e+04 | 12514 | 1 | 1.530e-01 | 0.0% | 1.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.49427551471618 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3263806615208814, dt = 0.0013627610087032177 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1422.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 396.36 us (95.4%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (72.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.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.5099e+04 | 12514 | 1 | 1.471e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.36181497668509 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3277434225295846, dt = 0.0013854555134086854 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1162.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 376.86 us (95.1%)
LB move op cnt : 0
LB apply : 4.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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.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.3929e+04 | 12514 | 1 | 1.491e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.45116542283531 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3291288780429933, dt = 0.0013975199652706874 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.0%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.2%)
LB compute : 449.53 us (96.2%)
LB move op cnt : 0
LB apply : 3.66 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 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.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.4629e+04 | 12514 | 1 | 1.479e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.023922587453974 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.330526398008264, dt = 0.0013706728837819973 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 399.29 us (95.5%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 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.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 | 8.4820e+04 | 12514 | 1 | 1.475e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.445618355905545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.331897070892046, dt = 0.00138008438021277 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1272.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 365.92 us (95.0%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 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.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 | 8.4607e+04 | 12514 | 1 | 1.479e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.59075477202424 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.33327715527225876, dt = 0.0013915805598117275 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 425.90 us (95.9%)
LB move op cnt : 0
LB apply : 3.66 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 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.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 | 8.4110e+04 | 12514 | 1 | 1.488e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.67153938545046 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.33466873583207046, dt = 0.0013719345789418823 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1012.00 ns (0.2%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 395.44 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.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.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 | 8.4894e+04 | 12514 | 1 | 1.474e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.50537553277272 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3360406704110123, dt = 0.0013885138086313657 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1203.00 ns (0.3%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 362.80 us (95.0%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 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.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 | 8.4387e+04 | 12514 | 1 | 1.483e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.70801172703536 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3374291842196437, dt = 0.0014125619213313505 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 378.92 us (95.2%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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.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 | 8.4663e+04 | 12514 | 1 | 1.478e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.40378108645613 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.338841746140975, dt = 0.0014029734902027834 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1293.00 ns (0.3%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 381.03 us (95.1%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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.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.4923e+04 | 12514 | 1 | 1.474e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.27528817292181 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3402447196311778, dt = 0.0013975000883493377 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1283.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1163.00 ns (0.3%)
LB compute : 360.64 us (95.1%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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.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.4255e+04 | 12514 | 1 | 1.485e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.87313240912102 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.34164221971952713, dt = 0.0013849626155900752 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1262.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.3%)
LB compute : 369.18 us (95.0%)
LB move op cnt : 0
LB apply : 4.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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.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 | 8.4405e+04 | 12514 | 1 | 1.483e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.628855605824036 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3430271823351172, dt = 0.0013913400154697943 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1392.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 402.95 us (95.4%)
LB move op cnt : 0
LB apply : 4.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 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.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 | 8.5970e+04 | 12514 | 1 | 1.456e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.41026750853203 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.344418522350587, dt = 0.0014069950866944935 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 368.49 us (95.3%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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.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.5087e+04 | 12514 | 1 | 1.471e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.44000682506452 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3458255174372815, dt = 0.0013590242675825775 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 992.00 ns (0.2%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.2%)
LB compute : 408.91 us (95.5%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 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.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 | 8.4514e+04 | 12514 | 1 | 1.481e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.041769417811835 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.34718454170486407, dt = 0.0013339177853311547 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1343.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 405.60 us (95.5%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (76.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.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 | 8.2668e+04 | 12514 | 1 | 1.514e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.722896521189774 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3485184594901952, dt = 0.0013764373417586666 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1322.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 442.35 us (95.7%)
LB move op cnt : 0
LB apply : 3.91 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (73.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.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 | 8.4393e+04 | 12514 | 1 | 1.483e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.41731854275218 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3498948968319539, dt = 0.00010510316804612785 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 1022.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 406.79 us (95.7%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (72.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.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.7284e+04 | 12514 | 1 | 1.434e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.63910455561699 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 251 [SPH][rank=0]
Info: time since start : 95.14739451700001 (s) [SPH][rank=0]
Info: dump to orztang_00014.vtk [VTK Dump][rank=0]
- took 2.46 ms, bandwidth = 271.82 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 911.82 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 925.18 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 908.42 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.006765080000000001 s
Info: compute_slice took 910.32 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.27 us (2.3%)
patch tree reduce : 1493.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.2%)
LB compute : 454.75 us (94.6%)
LB move op cnt : 0
LB apply : 3.87 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 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.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.1760e+04 | 12514 | 1 | 1.531e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.191832415451856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3514111783965634, dt = 0.0013890529881186479 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.0%)
patch tree reduce : 1012.00 ns (0.2%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.2%)
LB compute : 504.82 us (96.5%)
LB move op cnt : 0
LB apply : 4.04 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (75.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.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.3331e+04 | 12514 | 1 | 1.502e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.29898809023346 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.35280023138468203, dt = 0.0014171791428849159 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.02 us (1.4%)
patch tree reduce : 1072.00 ns (0.2%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 426.57 us (95.7%)
LB move op cnt : 0
LB apply : 3.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 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.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 | 8.5086e+04 | 12514 | 1 | 1.471e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.68883508614639 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.35421741052756694, dt = 0.0013754892120292884 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1162.00 ns (0.3%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 367.90 us (95.1%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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.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 | 8.4887e+04 | 12514 | 1 | 1.474e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.589626882547485 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.35559289973959624, dt = 0.0013960015812877918 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1122.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 394.17 us (95.4%)
LB move op cnt : 0
LB apply : 4.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (73.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.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 | 8.5156e+04 | 12514 | 1 | 1.470e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.19852681408584 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.356988901320884, dt = 0.0014253260620404504 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1193.00 ns (0.3%)
LB compute : 389.46 us (95.4%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 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.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 | 8.4466e+04 | 12514 | 1 | 1.482e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.63417144679745 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.35841422738292444, dt = 0.0014494635064733526 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 410.96 us (95.7%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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.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 | 8.3625e+04 | 12514 | 1 | 1.496e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.86987525111389 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3598636908893978, dt = 0.001375407020861946 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 395.45 us (95.5%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 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.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 | 8.4286e+04 | 12514 | 1 | 1.485e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.349910462813554 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3612390979102597, dt = 0.0013989450135562377 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1293.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1383.00 ns (0.3%)
LB compute : 402.12 us (95.4%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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.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 | 8.3818e+04 | 12514 | 1 | 1.493e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.73225335066328 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.36263804292381596, dt = 0.001432363896345937 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1282.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 409.29 us (95.6%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (74.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.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.4761e+04 | 12514 | 1 | 1.476e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.92636127739819 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3640704068201619, dt = 0.0013582671108289446 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 1092.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 394.94 us (95.5%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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.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.4498e+04 | 12514 | 1 | 1.481e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.016912350248006 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3654286739309908, dt = 0.0013918460688592297 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1372.00 ns (0.3%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 382.57 us (91.2%)
LB move op cnt : 0
LB apply : 21.96 us (5.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (77.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.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.4411e+04 | 12514 | 1 | 1.483e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.79838034682319 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.36682051999985005, dt = 0.0014102071768229147 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1483.00 ns (0.4%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 401.33 us (95.4%)
LB move op cnt : 0
LB apply : 4.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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.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.4296e+04 | 12514 | 1 | 1.485e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.19779315558904 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.368230727176673, dt = 0.0014376716149380466 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 1072.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 392.58 us (95.3%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (74.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.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.4021e+04 | 12514 | 1 | 1.489e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.74994846561282 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.36966839879161106, dt = 0.001475213194846207 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1372.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 415.88 us (95.6%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 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.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.4442e+04 | 12514 | 1 | 1.482e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.836022630101915 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3711436119864573, dt = 0.0014124731088836677 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1103.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 386.43 us (95.4%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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.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.0579e+04 | 12514 | 1 | 1.553e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.74204406452936 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.37255608509534094, dt = 0.0014643592624084738 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1362.00 ns (0.3%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1133.00 ns (0.2%)
LB compute : 467.11 us (95.8%)
LB move op cnt : 0
LB apply : 4.08 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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.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 | 8.5011e+04 | 12514 | 1 | 1.472e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.81196902955722 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3740204443577494, dt = 0.0009795556422506624 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1703.00 ns (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 372.80 us (95.1%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 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.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 | 8.4982e+04 | 12514 | 1 | 1.473e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.947520762930463 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 269 [SPH][rank=0]
Info: time since start : 101.69899897100001 (s) [SPH][rank=0]
Info: dump to orztang_00015.vtk [VTK Dump][rank=0]
- took 2.42 ms, bandwidth = 276.12 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 922.02 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 918.61 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 914.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.005968045 s
Info: compute_slice took 920.44 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.31 us (2.1%)
patch tree reduce : 1403.00 ns (0.3%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 466.00 us (94.9%)
LB move op cnt : 0
LB apply : 3.77 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 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.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 | 8.4364e+04 | 12514 | 1 | 1.483e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.83700627058205 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3764766139204387, dt = 0.0014649908493129388 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1452.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1233.00 ns (0.3%)
LB compute : 384.00 us (95.3%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 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.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.2804e+04 | 12514 | 1 | 1.511e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.89719689080165 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.37794160476975164, dt = 0.0013984973366044388 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1032.00 ns (0.2%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1091.00 ns (0.2%)
LB compute : 429.13 us (95.8%)
LB move op cnt : 0
LB apply : 4.03 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 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.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.3292e+04 | 12514 | 1 | 1.502e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.509658697132984 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3793401021063561, dt = 0.0014357919307960792 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.09 us (1.8%)
patch tree reduce : 1453.00 ns (0.3%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1051.00 ns (0.2%)
LB compute : 427.40 us (95.0%)
LB move op cnt : 0
LB apply : 3.81 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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.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.9016e+04 | 12514 | 1 | 1.584e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.63732283333347 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3807758940371522, dt = 0.001409493725587354 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 374.35 us (95.1%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 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.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 | 8.3044e+04 | 12514 | 1 | 1.507e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.672485464098095 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3821853877627395, dt = 0.0014558029021150911 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.40 us (1.6%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1293.00 ns (0.3%)
LB compute : 376.77 us (95.0%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 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.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.2707e+04 | 12514 | 1 | 1.513e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.638022766759676 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.38364119066485464, dt = 0.0014857301939901282 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 376.84 us (95.0%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 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.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.4522e+04 | 12514 | 1 | 1.481e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.12569145999384 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.38512692085884476, dt = 0.0014707570684407878 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1412.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 397.37 us (95.5%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
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.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.4069e+04 | 12514 | 1 | 1.489e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.57006126252611 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.38659767792728555, dt = 0.001468101049384724 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.6%)
patch tree reduce : 1332.00 ns (0.3%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 372.64 us (95.1%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 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.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.4131e+04 | 12514 | 1 | 1.487e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.532063064701155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3880657789766703, dt = 0.0014771100346276478 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.27 us (1.6%)
patch tree reduce : 1684.00 ns (0.4%)
gen split merge : 1123.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 371.06 us (94.8%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 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.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.3094e+04 | 12514 | 1 | 1.506e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.3094109553127 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3895428890112979, dt = 0.0014813385712962566 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 401.32 us (95.4%)
LB move op cnt : 0
LB apply : 4.29 us (1.0%)
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.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 | 8.3713e+04 | 12514 | 1 | 1.495e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.67393412134125 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.39102422758259414, dt = 0.0015026847815591828 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1353.00 ns (0.3%)
LB compute : 419.21 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.53 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.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.4147e+04 | 12514 | 1 | 1.487e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.37565540741583 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3925269123641533, dt = 0.0015024858572648939 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1061.00 ns (0.2%)
LB compute : 415.85 us (95.5%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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.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 | 8.4408e+04 | 12514 | 1 | 1.483e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.48363839549706 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3940293982214182, dt = 0.001497961178471333 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.3%)
LB compute : 398.09 us (95.4%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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.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.4771e+04 | 12514 | 1 | 1.476e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.5305378363315 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.39552735939988953, dt = 0.001446850626007078 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 398.67 us (95.4%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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.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.4349e+04 | 12514 | 1 | 1.484e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.1082949727848 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3969742100258966, dt = 0.0014490826264844609 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1242.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 363.97 us (95.2%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 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.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.4676e+04 | 12514 | 1 | 1.478e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.29886556821751 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3984232926523811, dt = 0.0014622588327545354 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1273.00 ns (0.3%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 370.02 us (95.1%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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.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.2587e+04 | 12514 | 1 | 1.515e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.74101857876182 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3998855514851356, dt = 0.0001144485148644736 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 382.99 us (95.3%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 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.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.7967e+04 | 12514 | 1 | 1.423e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.896249485474307 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 287 [SPH][rank=0]
Info: time since start : 108.27921790200001 (s) [SPH][rank=0]
Info: dump to orztang_00016.vtk [VTK Dump][rank=0]
- took 2.56 ms, bandwidth = 261.36 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 929.89 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 932.56 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 926.85 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.005729151 s
Info: compute_slice took 934.93 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.22 us (2.2%)
patch tree reduce : 1473.00 ns (0.3%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 485.71 us (94.8%)
LB move op cnt : 0
LB apply : 4.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (63.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.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.2392e+04 | 12514 | 1 | 1.519e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.4324326888628 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.40149488762266566, dt = 0.001488413594465288 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 370.87 us (95.0%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 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.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 | 5.2772e+04 | 12514 | 1 | 2.371e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.596080867877166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.40298330121713094, dt = 0.0015199361923019326 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1383.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 372.08 us (95.2%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (66.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.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 | 8.4028e+04 | 12514 | 1 | 1.489e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.74130217424814 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4045032374094329, dt = 0.001437414690501528 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1002.00 ns (0.2%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 419.89 us (95.7%)
LB move op cnt : 0
LB apply : 3.72 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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.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.4389e+04 | 12514 | 1 | 1.483e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.89608102994515 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4059406520999344, dt = 0.0014741483498019506 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1212.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1323.00 ns (0.3%)
LB compute : 397.03 us (95.1%)
LB move op cnt : 0
LB apply : 4.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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.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 | 8.4406e+04 | 12514 | 1 | 1.483e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.795012100962246 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4074148004497364, dt = 0.0015156376368532954 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 375.17 us (95.2%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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.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.4545e+04 | 12514 | 1 | 1.480e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.86288497779184 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4089304380865897, dt = 0.001558463816552954 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1512.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 402.09 us (95.4%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (69.9%)
Warning: High interface/patch volume ratio. [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 | 8.5167e+04 | 12514 | 1 | 1.469e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.183552498946014 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41048890190314263, dt = 0.0014480736172409428 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 1012.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 374.31 us (90.9%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 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.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 | 8.4596e+04 | 12514 | 1 | 1.479e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.24073313160036 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41193697552038355, dt = 0.0014815315450070964 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 385.16 us (95.1%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 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.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.4507e+04 | 12514 | 1 | 1.481e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.01726689130426 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41341850706539063, dt = 0.0015257204303230434 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.3%)
patch tree reduce : 1492.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1223.00 ns (0.3%)
LB compute : 381.34 us (95.4%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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.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.4991e+04 | 12514 | 1 | 1.472e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.30397468158998 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4149442274957137, dt = 0.0015522857784048632 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1163.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1423.00 ns (0.4%)
LB compute : 371.24 us (95.1%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 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.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 | 8.4077e+04 | 12514 | 1 | 1.488e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.54529582420826 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4164965132741186, dt = 0.001544360675774086 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 1092.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 380.68 us (90.8%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (75.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 | 8.2788e+04 | 12514 | 1 | 1.512e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.78088336640601 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41804087394989264, dt = 0.0015197635499943573 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 438.55 us (96.0%)
LB move op cnt : 0
LB apply : 3.87 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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.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.4439e+04 | 12514 | 1 | 1.482e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.91681432021226 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.419560637499887, dt = 0.0015603193518760764 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1282.00 ns (0.3%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 422.74 us (95.5%)
LB move op cnt : 0
LB apply : 4.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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.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 | 8.4900e+04 | 12514 | 1 | 1.474e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.108916906028604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.42112095685176304, dt = 0.0015634468230873559 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1422.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 369.03 us (95.1%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 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.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 | 8.3905e+04 | 12514 | 1 | 1.491e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.73790756731986 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4226844036748504, dt = 0.0015780311733989074 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1804.00 ns (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 388.26 us (95.2%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (76.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.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 | 8.5041e+04 | 12514 | 1 | 1.472e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.60578817578564 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.42426243484824927, dt = 0.0007375651517508297 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.72 us (0.9%)
patch tree reduce : 1102.00 ns (0.2%)
gen split merge : 752.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 488.19 us (96.6%)
LB move op cnt : 0
LB apply : 3.68 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 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.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 | 8.5873e+04 | 12514 | 1 | 1.457e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.220591525145686 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 304 [SPH][rank=0]
Info: time since start : 114.828069677 (s) [SPH][rank=0]
Info: dump to orztang_00017.vtk [VTK Dump][rank=0]
- took 2.46 ms, bandwidth = 271.39 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 944.26 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 950.87 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 938.42 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.005728359000000001 s
Info: compute_slice took 946.05 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.77 us (2.0%)
patch tree reduce : 1473.00 ns (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 525.37 us (95.3%)
LB move op cnt : 0
LB apply : 4.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.76 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.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.1534e+04 | 12514 | 1 | 1.535e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.497586193027196 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4265986657984919, dt = 0.0016008577874534063 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 385.80 us (95.3%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (75.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.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 | 8.3199e+04 | 12514 | 1 | 1.504e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.3156054606055 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4281995235859453, dt = 0.0016151684201304397 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 397.77 us (95.4%)
LB move op cnt : 0
LB apply : 4.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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.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.3389e+04 | 12514 | 1 | 1.501e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.7466791795678 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.42981469200607575, dt = 0.0015125567405687107 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1021.00 ns (0.3%)
LB compute : 367.64 us (95.1%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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.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 | 8.4138e+04 | 12514 | 1 | 1.487e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.61091191534825 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.43132724874664446, dt = 0.001519963272043716 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 439.32 us (95.7%)
LB move op cnt : 0
LB apply : 3.88 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 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.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 | 8.3081e+04 | 12514 | 1 | 1.506e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.327816804838704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4328472120186882, dt = 0.001538182802649892 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 426.62 us (95.6%)
LB move op cnt : 0
LB apply : 3.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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.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.4326e+04 | 12514 | 1 | 1.484e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.31451548158189 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4343853948213381, dt = 0.0015693932393084176 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1051.00 ns (0.3%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 387.35 us (95.3%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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.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.3719e+04 | 12514 | 1 | 1.495e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.797197008303776 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4359547880606465, dt = 0.0015997732375335593 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 1052.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 413.55 us (95.4%)
LB move op cnt : 0
LB apply : 4.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 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.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.3605e+04 | 12514 | 1 | 1.497e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.476740427195466 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4375545612981801, dt = 0.0016036741184477733 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.6%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 366.63 us (94.9%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
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.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 | 8.1317e+04 | 12514 | 1 | 1.539e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.51506360312475 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.43915823541662785, dt = 0.0015827847337492775 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1193.00 ns (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 409.18 us (95.6%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 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.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 | 8.4154e+04 | 12514 | 1 | 1.487e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.31791392529345 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.44074102015037714, dt = 0.0015851739171326806 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.2%)
LB compute : 418.37 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.56 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.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 | 8.3548e+04 | 12514 | 1 | 1.498e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.09943673617767 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.44232619406750984, dt = 0.001600776861272193 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1292.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 419.59 us (95.6%)
LB move op cnt : 0
LB apply : 4.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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.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.3037e+04 | 12514 | 1 | 1.507e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.23938836014126 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.443926970928782, dt = 0.0015736630416200961 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1173.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 404.74 us (95.6%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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.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.4020e+04 | 12514 | 1 | 1.489e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.03649375280335 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4455006339704021, dt = 0.0015914405825121734 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1283.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 365.86 us (95.2%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 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 | 8.4240e+04 | 12514 | 1 | 1.486e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.56696736105837 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4470920745529143, dt = 0.0015715060207161713 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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 (1.6%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.3%)
LB compute : 367.51 us (94.9%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 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.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.3324e+04 | 12514 | 1 | 1.502e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.669875844351026 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4486635805736304, dt = 0.001336419426369695 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1383.00 ns (0.3%)
LB compute : 409.14 us (95.5%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 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.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 | 8.4054e+04 | 12514 | 1 | 1.489e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.315206613315446 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 320 [SPH][rank=0]
Info: time since start : 121.221552173 (s) [SPH][rank=0]
Info: dump to orztang_00018.vtk [VTK Dump][rank=0]
- took 2.53 ms, bandwidth = 263.92 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 951.87 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 952.43 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 945.36 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.006781671 s
Info: compute_slice took 953.02 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.45 us (2.3%)
patch tree reduce : 1393.00 ns (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.2%)
LB compute : 481.10 us (94.8%)
LB move op cnt : 0
LB apply : 4.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 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.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.3587e+04 | 12514 | 1 | 1.497e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.66391839339564 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.45164949851539626, dt = 0.0015914305720091477 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1253.00 ns (0.3%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 389.33 us (95.3%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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.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.4354e+04 | 12514 | 1 | 1.484e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.61877882350834 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.45324092908740543, dt = 0.001597912789376665 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.14 us (1.6%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 360.61 us (94.8%)
LB move op cnt : 0
LB apply : 4.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (74.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.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 | 8.4155e+04 | 12514 | 1 | 1.487e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.68462514834098 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4548388418767821, dt = 0.0016175475074374016 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1282.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 412.89 us (95.6%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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.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.0491e+04 | 12514 | 1 | 1.555e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.45488196877458 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4564563893842195, dt = 0.0016511936451010245 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1313.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 420.31 us (95.6%)
LB move op cnt : 0
LB apply : 4.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (76.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.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 | 8.4681e+04 | 12514 | 1 | 1.478e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.22460857903007 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.45810758302932053, dt = 0.0016624971911912815 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 373.13 us (95.1%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
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.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 | 8.2358e+04 | 12514 | 1 | 1.519e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.38898938461726 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4597700802205118, dt = 0.0015672324982499552 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1283.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 407.89 us (95.6%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 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.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 | 7.8539e+04 | 12514 | 1 | 1.593e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.41006141050893 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.46133731271876177, dt = 0.0015937605476666842 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 1142.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 385.18 us (95.4%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (74.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.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.4124e+04 | 12514 | 1 | 1.488e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.56979696932784 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.46293107326642846, dt = 0.0016329898226056236 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 410.63 us (95.7%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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.4167e+04 | 12514 | 1 | 1.487e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.53936262228401 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4645640630890341, dt = 0.0015937425336438702 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 372.54 us (95.1%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 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.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 | 8.3380e+04 | 12514 | 1 | 1.501e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.228425377193936 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.46615780562267795, dt = 0.0016229925307084077 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1132.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 416.51 us (95.8%)
LB move op cnt : 0
LB apply : 4.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 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.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.3568e+04 | 12514 | 1 | 1.497e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.01765027607691 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.46778079815338636, dt = 0.001664557691552942 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1273.00 ns (0.3%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 375.32 us (95.0%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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.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.4516e+04 | 12514 | 1 | 1.481e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.4709269576252 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4694453558449393, dt = 0.0017202094614297747 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1282.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 396.56 us (95.5%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 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.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 | 8.5598e+04 | 12514 | 1 | 1.462e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.359409099829946 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.47116556530636905, dt = 0.0017515211640536882 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1422.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 368.13 us (95.2%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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.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 | 8.4547e+04 | 12514 | 1 | 1.480e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.60113169243066 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.47291708647042274, dt = 0.0016996706873750572 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 361.66 us (95.2%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 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.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 | 8.4395e+04 | 12514 | 1 | 1.483e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.26579286067058 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4746167571577978, dt = 0.00038324284220236926 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.27 us (1.4%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 416.79 us (95.4%)
LB move op cnt : 0
LB apply : 4.02 us (0.9%)
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.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.5420e+04 | 12514 | 1 | 1.465e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.417643997360507 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 336 [SPH][rank=0]
Info: time since start : 127.63879056900001 (s) [SPH][rank=0]
Info: dump to orztang_00019.vtk [VTK Dump][rank=0]
- took 2.58 ms, bandwidth = 258.76 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 959.77 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 955.43 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 952.22 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.005898085 s
Info: compute_slice took 958.72 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.16 us (2.0%)
patch tree reduce : 1663.00 ns (0.3%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 529.67 us (95.2%)
LB move op cnt : 0
LB apply : 4.64 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (75.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.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 | 8.3160e+04 | 12514 | 1 | 1.505e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.68378952352767 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.47674238549363135, dt = 0.0017425660505736267 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 379.56 us (95.3%)
LB move op cnt : 0
LB apply : 4.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 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.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 | 8.4504e+04 | 12514 | 1 | 1.481e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.36172831505137 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.47848495154420495, dt = 0.001731994125455547 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1252.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 370.17 us (95.3%)
LB move op cnt : 0
LB apply : 3.56 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.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 | 7.8024e+04 | 12514 | 1 | 1.604e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.87618908479309 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4802169456696605, dt = 0.001724880488904103 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 400.46 us (95.5%)
LB move op cnt : 0
LB apply : 4.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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.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 | 8.4392e+04 | 12514 | 1 | 1.483e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.87631232532217 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4819418261585646, dt = 0.0017145362722677461 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1072.00 ns (0.3%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 383.75 us (95.4%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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.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 | 8.4540e+04 | 12514 | 1 | 1.480e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.69797617135506 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4836563624308324, dt = 0.001738490629866708 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1163.00 ns (0.3%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 396.46 us (95.5%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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.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 | 8.4566e+04 | 12514 | 1 | 1.480e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.29359445929267 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.48539485306069907, dt = 0.0017642822997329265 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1303.00 ns (0.3%)
gen split merge : 1112.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 380.12 us (95.2%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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.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 | 8.4676e+04 | 12514 | 1 | 1.478e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.97662831627967 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.487159135360432, dt = 0.0017463357391540445 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 389.68 us (94.0%)
LB move op cnt : 0
LB apply : 10.74 us (2.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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.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 | 8.4843e+04 | 12514 | 1 | 1.475e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.62369210508151 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.48890547109958604, dt = 0.0017686790933585561 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1292.00 ns (0.3%)
LB compute : 408.92 us (95.5%)
LB move op cnt : 0
LB apply : 3.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (72.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.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.4884e+04 | 12514 | 1 | 1.474e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.190016225586625 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4906741501929446, dt = 0.0017770043317740937 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1182.00 ns (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 397.00 us (95.5%)
LB move op cnt : 0
LB apply : 3.70 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.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.4836e+04 | 12514 | 1 | 1.475e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.368659494739106 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.49245115452471866, dt = 0.0017177139522745264 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.2%)
LB compute : 434.64 us (95.8%)
LB move op cnt : 0
LB apply : 3.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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.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 | 8.4287e+04 | 12514 | 1 | 1.485e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.65043774821025 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4941688684769932, dt = 0.0017545385482825827 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1383.00 ns (0.3%)
LB compute : 410.88 us (95.5%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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.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 | 8.4849e+04 | 12514 | 1 | 1.475e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.82664897464017 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.49592340702527576, dt = 0.0017340305211563458 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1133.00 ns (0.3%)
LB compute : 409.38 us (95.7%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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.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 | 8.4884e+04 | 12514 | 1 | 1.474e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.34383659258722 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4976574375464321, dt = 0.0017683785869889168 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 390.25 us (95.5%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (74.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.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.4917e+04 | 12514 | 1 | 1.474e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.199388277844676 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.499425816133421, dt = 0.0005741838665790922 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1313.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 426.82 us (95.8%)
LB move op cnt : 0
LB apply : 3.73 us (0.8%)
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.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.6203e+04 | 12514 | 1 | 1.452e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.238952048963302 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 351 [SPH][rank=0]
Info: time since start : 133.904316512 (s) [SPH][rank=0]
Info: dump to orztang_00020.vtk [VTK Dump][rank=0]
- took 2.39 ms, bandwidth = 279.73 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 961.45 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 962.47 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 964.10 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.006950544 s
Info: compute_slice took 964.35 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.23 us (2.3%)
patch tree reduce : 1423.00 ns (0.3%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 467.49 us (95.0%)
LB move op cnt : 0
LB apply : 3.72 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 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.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 | 8.3623e+04 | 12514 | 1 | 1.496e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.79971813883812 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.501820701127207, dt = 0.0018135930657633731 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1152.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 394.22 us (95.5%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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.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 | 8.2290e+04 | 12514 | 1 | 1.521e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.93327411530333 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5036342941929703, dt = 0.001795425493479044 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.88 us (1.8%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.2%)
LB compute : 405.38 us (95.1%)
LB move op cnt : 0
LB apply : 3.58 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 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.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.3969e+04 | 12514 | 1 | 1.490e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.37057427071537 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5054297196864493, dt = 0.0018119703359947808 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1432.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 392.28 us (95.4%)
LB move op cnt : 0
LB apply : 4.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (73.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.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 | 8.4394e+04 | 12514 | 1 | 1.483e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.991609043053884 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5072416900224441, dt = 0.0017911884425443221 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 375.17 us (95.3%)
LB move op cnt : 0
LB apply : 3.96 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.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 | 8.4801e+04 | 12514 | 1 | 1.476e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.69694566088113 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5090328784649885, dt = 0.0018367376998159035 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1393.00 ns (0.3%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 398.19 us (95.4%)
LB move op cnt : 0
LB apply : 3.86 us (0.9%)
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.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 | 8.4179e+04 | 12514 | 1 | 1.487e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.479472261766425 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5108696161648043, dt = 0.001892197870099673 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 405.25 us (95.6%)
LB move op cnt : 0
LB apply : 4.26 us (1.0%)
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.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 | 8.4664e+04 | 12514 | 1 | 1.478e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.08639775249484 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.512761814034904, dt = 0.0018399219939925146 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1082.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 367.75 us (95.4%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.89 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.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.4391e+04 | 12514 | 1 | 1.483e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.6686976210378 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5146017360288965, dt = 0.0018916690498601986 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1403.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 451.58 us (96.0%)
LB move op cnt : 0
LB apply : 4.17 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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.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.4013e+04 | 12514 | 1 | 1.490e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.71899780200465 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5164934050787566, dt = 0.0019217034246859926 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 383.70 us (91.3%)
LB move op cnt : 0
LB apply : 4.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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.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 | 8.4822e+04 | 12514 | 1 | 1.475e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.89200050834331 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5184151085034426, dt = 0.0018566086079759784 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 388.86 us (95.2%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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.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.5279e+04 | 12514 | 1 | 1.467e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.5477503857081 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5202717171114186, dt = 0.0018889455126460414 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 992.00 ns (0.2%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.2%)
LB compute : 423.19 us (95.9%)
LB move op cnt : 0
LB apply : 3.64 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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.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.4566e+04 | 12514 | 1 | 1.480e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.95382916289324 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5221606626240647, dt = 0.0019375647833327788 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1022.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 383.81 us (95.5%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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.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 | 8.4572e+04 | 12514 | 1 | 1.480e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.140016990234976 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5240982274073974, dt = 0.000901772592602712 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 391.84 us (95.3%)
LB move op cnt : 0
LB apply : 4.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 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.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 | 8.4215e+04 | 12514 | 1 | 1.486e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.846943095948507 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 365 [SPH][rank=0]
Info: time since start : 140.05205372 (s) [SPH][rank=0]
Info: dump to orztang_00021.vtk [VTK Dump][rank=0]
- took 2.50 ms, bandwidth = 266.99 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 960.04 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 958.09 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 956.28 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.006807448000000001 s
Info: compute_slice took 960.60 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.85 us (2.1%)
patch tree reduce : 1383.00 ns (0.3%)
gen split merge : 1082.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1183.00 ns (0.2%)
LB compute : 501.64 us (95.0%)
LB move op cnt : 0
LB apply : 4.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.51 us (74.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.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 | 8.3763e+04 | 12514 | 1 | 1.494e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.287971750429534 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5270454227471901, dt = 0.0020637188923054335 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1142.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.3%)
LB compute : 389.45 us (95.4%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 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.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.3893e+04 | 12514 | 1 | 1.492e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.80582850138717 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5291091416394955, dt = 0.0020459139279036223 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 386.53 us (95.3%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 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.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.4295e+04 | 12514 | 1 | 1.485e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.61314714561238 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5311550555673992, dt = 0.0019801435189311075 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 452.05 us (96.0%)
LB move op cnt : 0
LB apply : 3.52 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 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.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 | 8.4145e+04 | 12514 | 1 | 1.487e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.93260483846448 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5331351990863302, dt = 0.0019933113143791093 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1553.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 442.79 us (95.8%)
LB move op cnt : 0
LB apply : 4.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (74.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.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.4863e+04 | 12514 | 1 | 1.475e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.66286935508747 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5351285104007093, dt = 0.0019926317457768464 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 410.24 us (95.6%)
LB move op cnt : 0
LB apply : 3.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 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.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.3918e+04 | 12514 | 1 | 1.491e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.10465623623962 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5371211421464861, dt = 0.0020082580400279213 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1193.00 ns (0.3%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 360.85 us (95.2%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 21.32 us (94.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.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 | 8.4154e+04 | 12514 | 1 | 1.487e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.61867350320956 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.539129400186514, dt = 0.0020081445369598975 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 396.82 us (95.6%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (73.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.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.4439e+04 | 12514 | 1 | 1.482e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.7800039013882 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5411375447234739, dt = 0.0020449059553807446 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1202.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 366.94 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.14 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.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.4931e+04 | 12514 | 1 | 1.473e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.96248697558265 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5431824506788546, dt = 0.0020930336876526993 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 402.36 us (95.6%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 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.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 | 8.5015e+04 | 12514 | 1 | 1.472e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.189407484670106 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5452754843665073, dt = 0.0020622916350910517 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 369.28 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.60 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.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.4811e+04 | 12514 | 1 | 1.476e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.31633798528809 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5473377760015984, dt = 0.0020655089138804416 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1113.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 367.45 us (95.3%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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.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 | 8.4859e+04 | 12514 | 1 | 1.475e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.42351138661691 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5494032849154789, dt = 0.0005967150845213043 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 376.07 us (95.1%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 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.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.6337e+04 | 12514 | 1 | 1.449e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.820771418697301 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 378 [SPH][rank=0]
Info: time since start : 146.02353507200002 (s) [SPH][rank=0]
Info: dump to orztang_00022.vtk [VTK Dump][rank=0]
- took 2.52 ms, bandwidth = 265.25 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 966.71 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 964.06 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 957.73 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.0060103660000000005 s
Info: compute_slice took 966.00 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.25 us (2.0%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 1002.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 476.62 us (95.0%)
LB move op cnt : 0
LB apply : 4.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (75.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.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 | 7.9854e+04 | 12514 | 1 | 1.567e-01 | 0.0% | 1.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.043131321477205 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5520478304594164, dt = 0.0020504820788799882 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1111.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 402.88 us (95.7%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
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.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 | 8.3357e+04 | 12514 | 1 | 1.501e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.170265558843205 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5540983125382964, dt = 0.002012676613636072 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1833.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 461.80 us (95.8%)
LB move op cnt : 0
LB apply : 4.12 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (76.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 | 8.3694e+04 | 12514 | 1 | 1.495e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.45919021860239 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5561109891519325, dt = 0.002060113997186065 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1062.00 ns (0.3%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 399.04 us (95.5%)
LB move op cnt : 0
LB apply : 4.08 us (1.0%)
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.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 | 8.4329e+04 | 12514 | 1 | 1.484e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.97740453484292 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5581711031491186, dt = 0.002114240846042125 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1072.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 366.07 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.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.3984e+04 | 12514 | 1 | 1.490e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.080896158427564 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5602853439951607, dt = 0.002093998379898644 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 391.11 us (95.4%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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.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.5113e+04 | 12514 | 1 | 1.470e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.272103103767826 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5623793423750594, dt = 0.002162054640638169 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1133.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 432.40 us (96.0%)
LB move op cnt : 0
LB apply : 3.77 us (0.8%)
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.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.4267e+04 | 12514 | 1 | 1.485e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.41206300225296 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5645413970156975, dt = 0.0021195314902052883 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 414.57 us (95.5%)
LB move op cnt : 0
LB apply : 4.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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.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.4876e+04 | 12514 | 1 | 1.474e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.75261451704339 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5666609285059028, dt = 0.0021057480040703957 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1273.00 ns (0.3%)
LB compute : 385.42 us (95.4%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (72.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 | 8.5026e+04 | 12514 | 1 | 1.472e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.50659508275754 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5687666765099731, dt = 0.0020048889802525907 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.4%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 415.26 us (95.5%)
LB move op cnt : 0
LB apply : 3.62 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 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.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.4593e+04 | 12514 | 1 | 1.479e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.78980046691765 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5707715654902258, dt = 0.002004833890827056 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.27 us (1.6%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 374.32 us (94.8%)
LB move op cnt : 0
LB apply : 4.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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.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 | 8.3987e+04 | 12514 | 1 | 1.490e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.439056027915825 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5727763993810528, dt = 0.0020100700086091486 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1533.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 427.32 us (95.5%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 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.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.4849e+04 | 12514 | 1 | 1.475e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.06408853349085 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.574786469389662, dt = 0.0002135306103381307 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1182.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 382.62 us (95.4%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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.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.6914e+04 | 12514 | 1 | 1.440e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.3389253572522986 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 391 [SPH][rank=0]
Info: time since start : 152.018115883 (s) [SPH][rank=0]
Info: dump to orztang_00023.vtk [VTK Dump][rank=0]
- took 2.50 ms, bandwidth = 267.91 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 969.32 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 968.65 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 961.21 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.005797516 s
Info: compute_slice took 971.18 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.70 us (1.8%)
patch tree reduce : 1893.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 511.83 us (95.3%)
LB move op cnt : 0
LB apply : 4.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (76.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.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 | 7.5592e+04 | 12514 | 1 | 1.655e-01 | 0.0% | 1.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.23308253319 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5769880703460283, dt = 0.002042692271882913 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1283.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 404.20 us (95.5%)
LB move op cnt : 0
LB apply : 4.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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.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.4039e+04 | 12514 | 1 | 1.489e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.38473757933435 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5790307626179112, dt = 0.0020388420697028064 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 415.00 us (95.5%)
LB move op cnt : 0
LB apply : 4.03 us (0.9%)
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.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 | 8.3712e+04 | 12514 | 1 | 1.495e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.09960791209855 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.581069604687614, dt = 0.0020257545806079556 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 385.07 us (95.4%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 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.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.3923e+04 | 12514 | 1 | 1.491e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.90715218213037 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.583095359268222, dt = 0.0020268466344360424 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1753.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 388.74 us (95.3%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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.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.4211e+04 | 12514 | 1 | 1.486e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.1015046455936 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5851222059026581, dt = 0.0019655265595510943 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.3%)
LB compute : 432.19 us (95.8%)
LB move op cnt : 0
LB apply : 3.83 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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.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 | 8.4480e+04 | 12514 | 1 | 1.481e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.7684398037351 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5870877324622091, dt = 0.00203439369509047 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1223.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 431.23 us (95.7%)
LB move op cnt : 0
LB apply : 3.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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.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.4013e+04 | 12514 | 1 | 1.490e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.16873264521278 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5891221261572996, dt = 0.002040118127231435 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1193.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 389.83 us (95.3%)
LB move op cnt : 0
LB apply : 4.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (11.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.4394e+04 | 12514 | 1 | 1.483e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.53084287221066 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5911622442845311, dt = 0.0019907603996879297 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 374.91 us (95.1%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 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.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.4115e+04 | 12514 | 1 | 1.488e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.17265517800436 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.593153004684219, dt = 0.00200481042696059 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 1072.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 366.73 us (94.9%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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.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.2425e+04 | 12514 | 1 | 1.518e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.53747128995531 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5951578151111796, dt = 0.0020321378474573238 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 378.98 us (91.4%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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.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 | 7.8893e+04 | 12514 | 1 | 1.586e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.120817810309426 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.597189952958637, dt = 0.0020714164515024235 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1183.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 402.58 us (95.5%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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.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.5329e+04 | 12514 | 1 | 1.467e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.847484589647976 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5992613694101394, dt = 0.0007386305898607892 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1062.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1061.00 ns (0.3%)
LB compute : 374.63 us (95.4%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 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.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.6102e+04 | 12514 | 1 | 1.453e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.295508900577424 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 404 [SPH][rank=0]
Info: time since start : 158.058183078 (s) [SPH][rank=0]
Info: dump to orztang_00024.vtk [VTK Dump][rank=0]
- took 2.40 ms, bandwidth = 278.89 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 970.19 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 990.13 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 962.89 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.005643541 s
Info: compute_slice took 970.25 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.87 us (2.2%)
patch tree reduce : 1563.00 ns (0.3%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.2%)
LB compute : 474.35 us (94.7%)
LB move op cnt : 0
LB apply : 5.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.87 us (73.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.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 | 7.9954e+04 | 12514 | 1 | 1.565e-01 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.788496081316026 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6020776675364382, dt = 0.00206687395842724 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.30 us (1.5%)
patch tree reduce : 1282.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 : 405.32 us (95.2%)
LB move op cnt : 0
LB apply : 4.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.05 us (78.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.3956e+04 | 12514 | 1 | 1.491e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.919956281602616 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6041445414948654, dt = 0.0020796046972926608 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.61 us (0.7%)
patch tree reduce : 1082.00 ns (0.1%)
gen split merge : 771.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.1%)
LB compute : 862.06 us (97.7%)
LB move op cnt : 0
LB apply : 3.87 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.66 us (78.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.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 | 7.9386e+04 | 12514 | 1 | 1.576e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.49317141774137 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.606224146192158, dt = 0.0020658906988045146 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1192.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 386.10 us (95.2%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (74.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.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.0316e+04 | 12514 | 1 | 1.558e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.7328805578661 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6082900368909625, dt = 0.0021422759249227195 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1002.00 ns (0.2%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 394.04 us (95.6%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (73.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.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.4172e+04 | 12514 | 1 | 1.487e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.87369924913014 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6104323128158852, dt = 0.0021139659590018738 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1363.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 399.43 us (95.4%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 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.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 | 8.3329e+04 | 12514 | 1 | 1.502e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.67557637608836 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6125462787748871, dt = 0.002078180613932908 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 389.06 us (95.4%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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.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 | 8.4318e+04 | 12514 | 1 | 1.484e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.40925329474127 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.61462445938882, dt = 0.0021417971716791336 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1263.00 ns (0.3%)
gen split merge : 1062.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 406.72 us (95.6%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (73.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.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.3512e+04 | 12514 | 1 | 1.498e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.455977409098345 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6167662565604992, dt = 0.00215480417723578 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 383.36 us (95.3%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
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.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.4545e+04 | 12514 | 1 | 1.480e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.4084604917481 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.618921060737735, dt = 0.002169692113761228 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 1082.00 ns (0.1%)
gen split merge : 801.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.1%)
LB compute : 735.03 us (97.5%)
LB move op cnt : 0
LB apply : 4.02 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (73.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.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.4126e+04 | 12514 | 1 | 1.488e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.50900784355648 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6210907528514963, dt = 0.0022080167847858215 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1223.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1033.00 ns (0.3%)
LB compute : 386.86 us (95.5%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (77.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.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.3843e+04 | 12514 | 1 | 1.493e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.257174071185055 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6232987696362821, dt = 0.0017012303637181647 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1282.00 ns (0.3%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 398.14 us (95.3%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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.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.4919e+04 | 12514 | 1 | 1.474e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.5597560859341 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 416 [SPH][rank=0]
Info: time since start : 163.97489105300002 (s) [SPH][rank=0]
Info: dump to orztang_00025.vtk [VTK Dump][rank=0]
- took 2.57 ms, bandwidth = 260.26 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 988.73 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 969.73 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 968.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.005906189 s
Info: compute_slice took 976.26 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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.0%)
patch tree reduce : 1382.00 ns (0.3%)
gen split merge : 1182.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 464.29 us (94.8%)
LB move op cnt : 0
LB apply : 5.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 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.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 | 7.9627e+04 | 12514 | 1 | 1.572e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.51416306196008 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6270742300229641, dt = 0.0021133120968476336 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1072.00 ns (0.3%)
gen split merge : 1112.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 405.11 us (95.3%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (77.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.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.3696e+04 | 12514 | 1 | 1.495e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.88293649294585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6291875421198118, dt = 0.0021665574315552234 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1292.00 ns (0.3%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 389.85 us (95.4%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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.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.2968e+04 | 12514 | 1 | 1.508e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.711454692553225 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.631354099551367, dt = 0.0022264327558186277 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 368.67 us (95.2%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 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.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.3758e+04 | 12514 | 1 | 1.494e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.646384850371064 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6335805323071856, dt = 0.0022252463287767573 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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 (1.6%)
patch tree reduce : 1383.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 367.23 us (95.1%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.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.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.4415e+04 | 12514 | 1 | 1.482e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.038870987818186 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6358057786359623, dt = 0.0022197934814128266 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1292.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 386.43 us (95.2%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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.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.3560e+04 | 12514 | 1 | 1.498e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.36010347191632 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6380255721173752, dt = 0.002287375633229389 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 392.69 us (95.7%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 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.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.3658e+04 | 12514 | 1 | 1.496e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.0494651493291 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6403129477506045, dt = 0.002256250116895039 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1322.00 ns (0.3%)
gen split merge : 671.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 437.08 us (95.9%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 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.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 | 8.3858e+04 | 12514 | 1 | 1.492e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.42970289694558 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6425691978674996, dt = 0.002288644554699801 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1072.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1423.00 ns (0.4%)
LB compute : 366.62 us (95.0%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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.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 | 8.4083e+04 | 12514 | 1 | 1.488e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.35932296247969 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6448578424221993, dt = 0.002323166100694014 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1062.00 ns (0.2%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 466.24 us (96.0%)
LB move op cnt : 0
LB apply : 3.88 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.56 us (78.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.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.002320326306206175 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002320326306206175 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3486e+04 | 12514 | 1 | 1.499e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.79550972392437 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6471810085228934, dt = 0.002320326306206175 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1392.00 ns (0.4%)
LB compute : 366.75 us (93.2%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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.522614671567844
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7263528814668413e-05,-5.571165061515116e-06,-6.096517199572303e-09)
sum a = (7.1289530878816084e-06,-3.642244936026302e-05,-1.455296364255084e-08)
sum e = 0.0099202697735171
sum de = -3.461040586333705e-05
Info: CFL hydro = 0.0022922274689128304 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022922274689128304 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4304e+04 | 12514 | 1 | 1.484e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.27378930813244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6495013348290996, dt = 0.0004986651709006917 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1542.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 363.04 us (95.2%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 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.522135208566406
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7260620262440003e-05,-5.589883227195331e-06,-6.100774299932128e-09)
sum a = (7.022972901784929e-06,-3.652273866330441e-05,-1.445819663530415e-08)
sum e = 0.009921113671799904
sum de = -3.4212077071697864e-05
Info: CFL hydro = 0.0022832911425266006 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022832911425266006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.6125e+04 | 12514 | 1 | 1.453e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.355087627217989 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 428 [SPH][rank=0]
Info: time since start : 169.885210984 (s) [SPH][rank=0]
Info: dump to orztang_00026.vtk [VTK Dump][rank=0]
- took 2.68 ms, bandwidth = 249.52 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 968.00 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 966.74 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 1004.71 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.005674349 s
Info: compute_slice took 970.36 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.0022832911425266006 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.56 us (2.0%)
patch tree reduce : 1543.00 ns (0.3%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 454.26 us (95.0%)
LB move op cnt : 0
LB apply : 4.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 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.521655745564968
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7244611194932813e-05,-5.673300278277504e-06,-6.133762943743241e-09)
sum a = (6.503827423201699e-06,-3.707461390174389e-05,-1.2587077927477018e-08)
sum e = 0.009926749119595724
sum de = -2.851098514018366e-05
Info: CFL hydro = 0.00229497238234892 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00229497238234892 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3611e+04 | 12514 | 1 | 1.497e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.91982568242659 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6522832911425268, dt = 0.00229497238234892 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 407.50 us (95.6%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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.5259709125779137
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7230277770753413e-05,-5.759015539189953e-06,-6.160513785575438e-09)
sum a = (6.1204223962247045e-06,-3.764238374182857e-05,-1.3917794351457124e-08)
sum e = 0.009932387383992585
sum de = -2.449181293047743e-05
Info: CFL hydro = 0.002322655181517557 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002322655181517557 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1005e+04 | 12514 | 1 | 1.545e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.48041952544879 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6545782635248757, dt = 0.002322655181517557 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 369.96 us (95.3%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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.5290874220872626
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7216502091936034e-05,-5.8470973248836285e-06,-6.194367001462129e-09)
sum a = (5.829520425181573e-06,-3.821293349616639e-05,-1.72255663372091e-08)
sum e = 0.009938333517562445
sum de = -1.969218936023043e-05
Info: CFL hydro = 0.002285847665436326 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002285847665436326 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4512e+04 | 12514 | 1 | 1.481e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.46901387649139 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6569009187063932, dt = 0.002285847665436326 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 408.95 us (95.6%)
LB move op cnt : 0
LB apply : 4.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 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.5302860795908586
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7203514528766698e-05,-5.935108864876779e-06,-6.237583428930812e-09)
sum a = (5.610879993475382e-06,-3.876327670589926e-05,-2.125422261661492e-08)
sum e = 0.009944398631974296
sum de = -1.5093501983986292e-05
Info: CFL hydro = 0.0022457027085855674 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022457027085855674 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3966e+04 | 12514 | 1 | 1.490e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.21497132631027 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6591867663718296, dt = 0.0022457027085855674 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1082.00 ns (0.3%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 373.10 us (95.2%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (74.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.5319642000958935
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.71911640497279e-05,-6.022788660739347e-06,-6.289918541505503e-09)
sum a = (5.4020197198353144e-06,-3.925040403354325e-05,-2.4563190897021104e-08)
sum e = 0.00995056659253287
sum de = -1.0503542624240331e-05
Info: CFL hydro = 0.0021917414696143774 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021917414696143774 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3707e+04 | 12514 | 1 | 1.495e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.077939940670554 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6614324690804152, dt = 0.0021917414696143774 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 374.79 us (95.2%)
LB move op cnt : 0
LB apply : 4.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 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.5329231260987695
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7179558738129466e-05,-6.109362370538274e-06,-6.347470185135447e-09)
sum a = (5.1843450187216756e-06,-3.961907418819803e-05,-2.9406766777906838e-08)
sum e = 0.009956773238829916
sum de = -5.983148306280519e-06
Info: CFL hydro = 0.0021637675890553644 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021637675890553644 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3336e+04 | 12514 | 1 | 1.502e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.54457912823513 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6636242105500296, dt = 0.0021637675890553644 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1113.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 391.69 us (95.3%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 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.5377177561131523
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7168579563742246e-05,-6.195492854007963e-06,-6.4164075270479915e-09)
sum a = (4.925079592328713e-06,-3.988860961199059e-05,-3.45582276607358e-08)
sum e = 0.009963080182260647
sum de = -1.480926465098018e-06
Info: CFL hydro = 0.0021431003451195248 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021431003451195248 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4530e+04 | 12514 | 1 | 1.480e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.61738169376843 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.665787978139085, dt = 0.0021431003451195248 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1303.00 ns (0.3%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 382.54 us (95.3%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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.5413137286239396
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7158305119031417e-05,-6.28126975304152e-06,-6.496042558721866e-09)
sum a = (4.641085817596053e-06,-4.004012616122611e-05,-4.1205833145423806e-08)
sum e = 0.009969486922533662
sum de = 2.99096436182821e-06
Info: CFL hydro = 0.0021844557971471596 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021844557971471596 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3757e+04 | 12514 | 1 | 1.494e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.63781860089273 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6679310784842045, dt = 0.0021844557971471596 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 431.06 us (95.9%)
LB move op cnt : 0
LB apply : 3.71 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (76.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.5429918491289754
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7148471185790454e-05,-6.368897996337573e-06,-6.593178122616958e-09)
sum a = (4.380406254847463e-06,-4.002190249523143e-05,-4.7739389466223044e-08)
sum e = 0.009976183719553689
sum de = 7.54753253298364e-06
Info: CFL hydro = 0.002224070015843677 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002224070015843677 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3626e+04 | 12514 | 1 | 1.496e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.55242837454837 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6701155342813517, dt = 0.002224070015843677 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 393.27 us (95.3%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (77.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.5470672846412015
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7139013577072788e-05,-6.457889605257295e-06,-6.7064899997938696e-09)
sum a = (4.210459110375993e-06,-3.9816405766257386e-05,-5.647331330495465e-08)
sum e = 0.009983146566951687
sum de = 1.2094917226732293e-05
Info: CFL hydro = 0.0022306941082033942 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022306941082033942 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3652e+04 | 12514 | 1 | 1.496e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.522071153364365 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6723396042971954, dt = 0.0022306941082033942 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1332.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 379.67 us (95.4%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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.547307016141922
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7129810317916694e-05,-6.546479307453488e-06,-6.842177116119121e-09)
sum a = (4.1834789215737944e-06,-3.9377524861384903e-05,-6.43262831635953e-08)
sum e = 0.009990254352646276
sum de = 1.6570681874516783e-05
Info: CFL hydro = 0.00225776143485413 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00225776143485413 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3681e+04 | 12514 | 1 | 1.495e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.70016701341058 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6745702984053988, dt = 0.0004297015946014282 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1172.00 ns (0.3%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 364.08 us (95.1%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 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.5470672846412024
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7128042762626976e-05,-6.56291038815373e-06,-6.878577009367194e-09)
sum a = (4.231031629193107e-06,-3.9217007989271206e-05,-6.520085078297068e-08)
sum e = 0.00999134053375548
sum de = 1.6975878705833254e-05
Info: CFL hydro = 0.0022629533648103467 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022629533648103467 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.6952e+04 | 12514 | 1 | 1.439e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.74864292956244 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 440 [SPH][rank=0]
Info: time since start : 175.801755506 (s) [SPH][rank=0]
Info: dump to orztang_00027.vtk [VTK Dump][rank=0]
- took 2.52 ms, bandwidth = 265.24 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 989.87 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 970.34 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 969.86 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.005815402000000001 s
Info: compute_slice took 974.35 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.0022629533648103467 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.29 us (2.2%)
patch tree reduce : 1403.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 495.06 us (95.0%)
LB move op cnt : 0
LB apply : 4.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 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.551861914655586
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7118457918627876e-05,-6.651622161162554e-06,-7.026311395585363e-09)
sum a = (4.369888353834648e-06,-3.853986835605808e-05,-6.771543058447966e-08)
sum e = 0.009998986729806482
sum de = 2.255727847053039e-05
Info: CFL hydro = 0.002254861343310636 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002254861343310636 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2219e+04 | 12514 | 1 | 1.522e-01 | 0.0% | 1.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.524961611777954 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6772629533648106, dt = 0.002254861343310636 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 400.50 us (95.4%)
LB move op cnt : 0
LB apply : 3.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.97 us (78.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.5528208406584634
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.710844731315812e-05,-6.737758052788936e-06,-7.18184549076747e-09)
sum a = (4.723333556500598e-06,-3.76046288172162e-05,-6.822595291854334e-08)
sum e = 0.010006428282145933
sum de = 2.6284101275708842e-05
Info: CFL hydro = 0.002240210793429375 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002240210793429375 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf 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.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.862057212872394 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6795178147081212, dt = 0.002240210793429375 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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 (1.2%)
patch tree reduce : 1623.00 ns (0.3%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1203.00 ns (0.2%)
LB compute : 499.78 us (96.2%)
LB move op cnt : 0
LB apply : 3.59 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 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.5561770816685305
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.709746756538179e-05,-6.820945930407189e-06,-7.3352615854258e-09)
sum a = (5.209761434415098e-06,-3.652892349398287e-05,-6.42527229085384e-08)
sum e = 0.010013904858901017
sum de = 3.04803260917799e-05
Info: CFL hydro = 0.0021376294993345393 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021376294993345393 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2318e+04 | 12514 | 1 | 1.520e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.05024727841627 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6817580255015506, dt = 0.0021376294993345393 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 382.21 us (95.2%)
LB move op cnt : 0
LB apply : 4.05 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.554259229662778
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7085786175163947e-05,-6.897826331509022e-06,-7.46815966495107e-09)
sum a = (5.824495562766456e-06,-3.5307007500736386e-05,-5.949650823409412e-08)
sum e = 0.010021090558984366
sum de = 3.4141308281951816e-05
Info: CFL hydro = 0.002147456688219428 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002147456688219428 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3820e+04 | 12514 | 1 | 1.493e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.54524348346731 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6838956550008851, dt = 0.002147456688219428 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.37 us (5.3%)
patch tree reduce : 1273.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.2%)
LB compute : 422.78 us (91.8%)
LB move op cnt : 0
LB apply : 3.94 us (0.9%)
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.5583346651750034
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7072621286308697e-05,-6.972340599070835e-06,-7.59084232708724e-09)
sum a = (6.551152660692838e-06,-3.3934050064878184e-05,-5.524362138520477e-08)
sum e = 0.010028405354383776
sum de = 3.760722851050358e-05
Info: CFL hydro = 0.0021207131109817106 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021207131109817106 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3588e+04 | 12514 | 1 | 1.497e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.63882622032913 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6860431116891046, dt = 0.0021207131109817106 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 394.12 us (95.3%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
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.5609717116829156
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7057947938646564e-05,-7.042830800638094e-06,-7.703431754103086e-09)
sum a = (7.358421717167735e-06,-3.2466015727811506e-05,-5.111337107470476e-08)
sum e = 0.010035675788326684
sum de = 4.054571491900109e-05
Info: CFL hydro = 0.0021101617246656354 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021101617246656354 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4020e+04 | 12514 | 1 | 1.489e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.25901114193818 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6881638248000863, dt = 0.0021101617246656354 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 405.73 us (95.5%)
LB move op cnt : 0
LB apply : 4.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (74.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.5638484896915443
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7041564485748937e-05,-7.1097827045460856e-06,-7.806909695371097e-09)
sum a = (8.256241527246164e-06,-3.091689755321129e-05,-4.629633873004769e-08)
sum e = 0.010042962467153659
sum de = 4.301130192562983e-05
Info: CFL hydro = 0.0021144616870277665 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021144616870277665 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3514e+04 | 12514 | 1 | 1.498e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.69694791523604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6902739865247519, dt = 0.0021144616870277665 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 375.78 us (95.3%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 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.568882851206647
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.702315970686149e-05,-7.1735208549646575e-06,-7.899719171225349e-09)
sum a = (9.205495707291779e-06,-2.937051904518206e-05,-3.7149512196928736e-08)
sum e = 0.010050310434475232
sum de = 4.4871075388747895e-05
Info: CFL hydro = 0.002096854394140056 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002096854394140056 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3278e+04 | 12514 | 1 | 1.503e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.656931750635835 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6923884482117797, dt = 0.002096854394140056 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 383.68 us (95.2%)
LB move op cnt : 0
LB apply : 3.72 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.5722390922167166
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.70028535419399e-05,-7.233471677828585e-06,-7.967945981984522e-09)
sum a = (1.0181189912840002e-05,-2.7856086323518675e-05,-2.317305064305173e-08)
sum e = 0.010057626857354568
sum de = 4.6065407073088725e-05
Info: CFL hydro = 0.002110252044479503 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002110252044479503 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3507e+04 | 12514 | 1 | 1.499e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.37280491963048 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6944853026059198, dt = 0.002110252044479503 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 367.82 us (95.0%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 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.575835064727505
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.698034572076973e-05,-7.290667268490123e-06,-8.002193657068984e-09)
sum a = (1.1176330337762205e-05,-2.6426965066794142e-05,-7.173031131940964e-09)
sum e = 0.010065029634124272
sum de = 4.6664623965150746e-05
Info: CFL hydro = 0.002109691218232549 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002109691218232549 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4003e+04 | 12514 | 1 | 1.490e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.995652825190334 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6965955546503992, dt = 0.002109691218232549 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1192.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 408.49 us (95.6%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 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.578232379734697
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6955717116246084e-05,-7.3449121015893295e-06,-8.000444500913498e-09)
sum a = (1.206898907597026e-05,-2.5072894337901116e-05,1.0741259601903707e-08)
sum e = 0.010072453668981187
sum de = 4.671242335008307e-05
Info: CFL hydro = 0.0020934320239879315 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020934320239879315 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3946e+04 | 12514 | 1 | 1.491e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.94758661751765 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6987052458686318, dt = 0.0012947541313684807 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1372.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 367.33 us (95.2%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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.5779926482339786
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6939149125628148e-05,-7.375946999555758e-06,-7.96764039974664e-09)
sum a = (1.2536506856891058e-05,-2.429825375613265e-05,2.1092523742211024e-08)
sum e = 0.010076832828414302
sum de = 4.640373172589831e-05
Info: CFL hydro = 0.0020751676687381488 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020751676687381488 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3848e+04 | 12514 | 1 | 1.492e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.231010411767812 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 452 [SPH][rank=0]
Info: time since start : 181.718251971 (s) [SPH][rank=0]
Info: dump to orztang_00028.vtk [VTK Dump][rank=0]
- took 2.59 ms, bandwidth = 257.67 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 976.83 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 976.19 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 939.70 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.005764518000000001 s
Info: compute_slice took 944.93 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.0020751676687381488 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.57 us (2.0%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 461.72 us (95.1%)
LB move op cnt : 0
LB apply : 3.97 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 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.5815886207447662
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6912831111630665e-05,-7.425868465610509e-06,-7.91716870541966e-09)
sum a = (1.325924031279942e-05,-2.3108311568357492e-05,4.1505704282994296e-08)
sum e = 0.010084344094842284
sum de = 4.643088888569606e-05
Info: CFL hydro = 0.0020502390472872576 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020502390472872576 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0419e+04 | 12514 | 1 | 1.556e-01 | 0.0% | 1.7% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.00857503616827 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7020751676687385, dt = 0.0020502390472872576 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1173.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 397.19 us (95.5%)
LB move op cnt : 0
LB apply : 3.95 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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.5847051302541173
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.688489660285345e-05,-7.472011363527382e-06,-7.810891703676214e-09)
sum a = (1.3840168320153384e-05,-2.2048868148045304e-05,6.3567985768708e-08)
sum e = 0.010091606780461981
sum de = 4.549784490490033e-05
Info: CFL hydro = 0.0019861439257974436 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019861439257974436 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4980e+04 | 12514 | 1 | 1.473e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.122072200332134 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7041254067160257, dt = 0.0019861439257974436 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 383.39 us (95.3%)
LB move op cnt : 0
LB apply : 3.99 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.5892600287677805
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6856812515970198e-05,-7.514717532935522e-06,-7.662020059379522e-09)
sum a = (1.4277101567484286e-05,-2.1133885870371233e-05,8.36080767071245e-08)
sum e = 0.010098642406645212
sum de = 4.4832035424017595e-05
Info: CFL hydro = 0.0019955800762994674 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019955800762994674 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4768e+04 | 12514 | 1 | 1.476e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.433863276421775 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7061115506418232, dt = 0.0019955800762994674 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1372.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.3%)
LB compute : 394.71 us (95.2%)
LB move op cnt : 0
LB apply : 4.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 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.591897075275692
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6827887510377252e-05,-7.555983251266761e-06,-7.475272194839925e-09)
sum a = (1.4543703312248068e-05,-2.030868005020226e-05,1.0360095229529481e-07)
sum e = 0.01010574389141737
sum de = 4.4194897524928704e-05
Info: CFL hydro = 0.0020162449764552616 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020162449764552616 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6394e+04 | 12514 | 1 | 1.638e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.85681274968107 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7081071307181227, dt = 0.0020162449764552616 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1263.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 429.46 us (95.8%)
LB move op cnt : 0
LB apply : 3.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 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.5971711682915126
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6798297829069947e-05,-7.596107143249842e-06,-7.2464386031226805e-09)
sum a = (1.4679865511557289e-05,-1.9541598525098544e-05,1.2030518189456832e-07)
sum e = 0.01011293339912838
sum de = 4.364091841126224e-05
Info: CFL hydro = 0.0020484486867042677 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020484486867042677 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4585e+04 | 12514 | 1 | 1.479e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.06174702553126 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.710123375694578, dt = 0.0020484486867042677 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.3%)
LB compute : 363.19 us (94.9%)
LB move op cnt : 0
LB apply : 4.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (73.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.595972510787918
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6768089609666583e-05,-7.63536379294956e-06,-6.983159701759287e-09)
sum a = (1.4676154251990553e-05,-1.880243288625589e-05,1.3371354019069165e-07)
sum e = 0.010120250361435752
sum de = 4.321082791006818e-05
Info: CFL hydro = 0.002072483286218984 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002072483286218984 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4370e+04 | 12514 | 1 | 1.483e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.718899228219676 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7121718243812822, dt = 0.002072483286218984 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.40 us (1.5%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 420.04 us (95.3%)
LB move op cnt : 0
LB apply : 3.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 us (76.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.601006872303021
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.673767732643561e-05,-7.67357444940464e-06,-6.692307457601648e-09)
sum a = (1.449508049852348e-05,-1.8148930679434174e-05,1.451638770502146e-07)
sum e = 0.010127658832605932
sum de = 4.28701870922152e-05
Info: CFL hydro = 0.0019496694058113054 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019496694058113054 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4844e+04 | 12514 | 1 | 1.475e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.58486316469471 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7142443076675012, dt = 0.0019496694058113054 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1582.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 376.38 us (95.2%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 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.601726066805178
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6709604347616966e-05,-7.70828167809809e-06,-6.3974205718067e-09)
sum a = (1.416333087717555e-05,-1.762486821647066e-05,1.4850406889580997e-07)
sum e = 0.010134593333334132
sum de = 4.2603618181833995e-05
Info: CFL hydro = 0.0019654042560242587 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019654042560242587 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.5001e+04 | 12514 | 1 | 1.472e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.67509656792089 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7161939770733126, dt = 0.0019654042560242587 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.3%)
LB compute : 388.21 us (95.1%)
LB move op cnt : 0
LB apply : 4.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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.6093974748281923
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6682091077874887e-05,-7.742410794827604e-06,-6.102293907836516e-09)
sum a = (1.3659644297011499e-05,-1.7158527546574757e-05,1.461920404858486e-07)
sum e = 0.010141621813260287
sum de = 4.2509998993708295e-05
Info: CFL hydro = 0.001992817954322248 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001992817954322248 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4601e+04 | 12514 | 1 | 1.479e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.833697969554905 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7181593813293368, dt = 0.001992817954322248 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 1152.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 399.27 us (95.4%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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.613472910340419
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.66553648673444e-05,-7.77614634262267e-06,-5.813231820015945e-09)
sum a = (1.2999858941013054e-05,-1.6763186596991675e-05,1.4005950419040864e-07)
sum e = 0.01014874952323871
sum de = 4.245376046856355e-05
Info: CFL hydro = 0.002021948473262011 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002021948473262011 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4233e+04 | 12514 | 1 | 1.486e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.28981725169957 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.720152199283659, dt = 0.002021948473262011 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1292.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 417.21 us (95.5%)
LB move op cnt : 0
LB apply : 4.05 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (73.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.6132331788397
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6629737238457676e-05,-7.8096467208987e-06,-5.536149233569758e-09)
sum a = (1.2215687750967858e-05,-1.6378939585507998e-05,1.3148155018253814e-07)
sum e = 0.010155974130154566
sum de = 4.2374461838927424e-05
Info: CFL hydro = 0.0020164575310268685 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020164575310268685 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4140e+04 | 12514 | 1 | 1.487e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.941543263725286 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.722174147756921, dt = 0.0020164575310268685 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.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 : 972.00 ns (0.2%)
LB compute : 419.56 us (95.4%)
LB move op cnt : 0
LB apply : 4.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (77.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.6158702253476105
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.660589759976584e-05,-7.842285693147193e-06,-5.279694362018116e-09)
sum a = (1.1370317502435978e-05,-1.5967036242458953e-05,1.1525859312262107e-07)
sum e = 0.010163155838399553
sum de = 4.2221306472223834e-05
Info: CFL hydro = 0.001933074778948419 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001933074778948419 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1718e+04 | 12514 | 1 | 1.531e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.40365342256719 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7241906052879479, dt = 0.0008093947120524358 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1483.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 427.98 us (95.5%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (73.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.617068882851208
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6597546851506993e-05,-7.854794035049903e-06,-5.2027611181954426e-09)
sum a = (1.099462747843472e-05,-1.5827303893051968e-05,1.0520846726296181e-07)
sum e = 0.010165795303057485
sum de = 4.171092816695358e-05
Info: CFL hydro = 0.0019445290084722398 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019445290084722398 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.5841e+04 | 12514 | 1 | 1.458e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.987674539347672 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 465 [SPH][rank=0]
Info: time since start : 187.71802792600002 (s) [SPH][rank=0]
Info: dump to orztang_00029.vtk [VTK Dump][rank=0]
- took 2.61 ms, bandwidth = 256.14 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 945.29 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 943.35 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 937.89 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.0056906000000000005 s
Info: compute_slice took 942.97 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.0019445290084722398 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.49 us (2.2%)
patch tree reduce : 1473.00 ns (0.3%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 454.65 us (94.6%)
LB move op cnt : 0
LB apply : 4.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 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.6209045868627134
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.65763195201972e-05,-7.885514137283508e-06,-5.002247461029159e-09)
sum a = (1.0095779066692825e-05,-1.540308432966519e-05,7.894986254705007e-08)
sum e = 0.010172905916644177
sum de = 4.204657810411091e-05
Info: CFL hydro = 0.0019649324567285334 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019649324567285334 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1078e+04 | 12514 | 1 | 1.543e-01 | 0.0% | 2.0% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.355026268068066 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7269445290084725, dt = 0.0019649324567285334 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1362.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 397.66 us (95.5%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 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.6233019018699055
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6557355914638616e-05,-7.915367703993135e-06,-4.872646622951867e-09)
sum a = (9.150806901100331e-06,-1.497414891714363e-05,5.151719272089957e-08)
sum e = 0.010179856610221206
sum de = 4.1665073408134255e-05
Info: CFL hydro = 0.0019919732733611134 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019919732733611134 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.5643e+04 | 12514 | 1 | 1.461e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.411270716164246 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7289094614652011, dt = 0.0019919732733611134 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 373.56 us (95.4%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (75.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.6233019018699046
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6540056155101383e-05,-7.944774393870128e-06,-4.796977423591415e-09)
sum a = (8.208832737978705e-06,-1.4547275222662175e-05,1.916761638510195e-08)
sum e = 0.010186866108468983
sum de = 4.1226605525471996e-05
Info: CFL hydro = 0.0019760691508806418 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019760691508806418 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.5281e+04 | 12514 | 1 | 1.467e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.8697631014082 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7309014347385622, dt = 0.0019760691508806418 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 415.43 us (95.6%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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.6259389483778177
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.652477312764151e-05,-7.973095655171888e-06,-4.791320633889822e-09)
sum a = (7.273172430478149e-06,-1.4158137887057873e-05,-1.5407028394103012e-08)
sum e = 0.010193766008405221
sum de = 4.052340840259849e-05
Info: CFL hydro = 0.0019796286667795523 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019796286667795523 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3435e+04 | 12514 | 1 | 1.500e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.43011741977129 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7328775038894428, dt = 0.0019796286667795523 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.6%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1352.00 ns (0.3%)
LB compute : 376.19 us (95.0%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 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.6276170688828517
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6511299411734408e-05,-8.000739029659615e-06,-4.855981773444006e-09)
sum a = (6.368238464355299e-06,-1.3829078966376385e-05,-4.910162088684276e-08)
sum e = 0.010200635626628828
sum de = 3.9480903718585434e-05
Info: CFL hydro = 0.001964742489359693 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001964742489359693 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4473e+04 | 12514 | 1 | 1.481e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.1069967478308 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7348571325562224, dt = 0.001964742489359693 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.02 us (1.5%)
patch tree reduce : 1303.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 374.11 us (95.1%)
LB move op cnt : 0
LB apply : 3.76 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.630973309892921
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6499683179651718e-05,-8.027583901457078e-06,-4.9858052049034695e-09)
sum a = (5.521608714794723e-06,-1.3493694745794063e-05,-7.763629543632738e-08)
sum e = 0.010207394548073142
sum de = 3.8051509649849536e-05
Info: CFL hydro = 0.0019525215037522051 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019525215037522051 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4804e+04 | 12514 | 1 | 1.476e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.93232311562616 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7368218750455822, dt = 0.0019525215037522051 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 381.33 us (95.3%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
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.6374460604123384
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6489733824621624e-05,-8.053601158799255e-06,-5.165423384968141e-09)
sum a = (4.738783441874944e-06,-1.3178565108755024e-05,-9.60761625724324e-08)
sum e = 0.010214053188830594
sum de = 3.628566369585153e-05
Info: CFL hydro = 0.0019859920671913543 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019859920671913543 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4483e+04 | 12514 | 1 | 1.481e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.45394859699573 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7387743965493344, dt = 0.0019859920671913543 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1413.00 ns (0.3%)
gen split merge : 1243.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 435.33 us (95.8%)
LB move op cnt : 0
LB apply : 3.67 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 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.639124180917372
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.648108687988751e-05,-8.079466035865587e-06,-5.374232000238063e-09)
sum a = (4.0224656711993404e-06,-1.2918224413838153e-05,-1.1108548842174997e-07)
sum e = 0.010220773978050367
sum de = 3.4149340700061955e-05
Info: CFL hydro = 0.001990537714695391 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001990537714695391 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4125e+04 | 12514 | 1 | 1.488e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.06298423175343 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7407603886165257, dt = 0.001990537714695391 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1012.00 ns (0.2%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 388.04 us (95.4%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (74.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.6410420329231252
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6473791310967777e-05,-8.104921731490886e-06,-5.610256055532448e-09)
sum a = (3.370609807020168e-06,-1.2726728636179063e-05,-1.1594330578700887e-07)
sum e = 0.01022742995651053
sum de = 3.162110183145577e-05
Info: CFL hydro = 0.0020155479662810356 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020155479662810356 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4687e+04 | 12514 | 1 | 1.478e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.49445413577559 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7427509263312211, dt = 0.0020155479662810356 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 386.45 us (95.2%)
LB move op cnt : 0
LB apply : 4.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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.6434393479303187
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6467646457067297e-05,-8.130382473726774e-06,-5.848780184053439e-09)
sum a = (2.7645594365754043e-06,-1.2583436691107364e-05,-1.157447586936896e-07)
sum e = 0.010234097447970707
sum de = 2.8768880371217366e-05
Info: CFL hydro = 0.0020143346184798155 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020143346184798155 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4953e+04 | 12514 | 1 | 1.473e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.258002574172956 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7447664742975021, dt = 0.0020143346184798155 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.92 us (1.3%)
patch tree reduce : 1163.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 368.61 us (95.4%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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.6463161259389483
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6462688471085124e-05,-8.15558531997949e-06,-6.081728767802647e-09)
sum a = (2.2943541346835317e-06,-1.2456297104777418e-05,-1.1098769285329436e-07)
sum e = 0.010240669639845056
sum de = 2.5550225688492808e-05
Info: CFL hydro = 0.0019569305341890085 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019569305341890085 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4844e+04 | 12514 | 1 | 1.475e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.16524081069099 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7467808089159819, dt = 0.0019569305341890085 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 393.82 us (95.3%)
LB move op cnt : 0
LB apply : 4.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 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.645836662937509
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6458672154831472e-05,-8.179833377291302e-06,-6.294132811663942e-09)
sum a = (1.999563371778973e-06,-1.239359592118827e-05,-9.876416749539583e-08)
sum e = 0.010246953154937986
sum de = 2.2105595189265596e-05
Info: CFL hydro = 0.0019217523006644832 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019217523006644832 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0544e+04 | 12514 | 1 | 1.554e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.34354828988621 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7487377394501709, dt = 0.0012622605498294748 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.14 us (1.6%)
patch tree reduce : 1062.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 368.30 us (95.0%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (73.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.6443982739331946
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6456436627392936e-05,-8.195415973562487e-06,-6.4068386290261355e-09)
sum a = (1.9052084714208086e-06,-1.2395495443766729e-05,-8.373630280321777e-08)
sum e = 0.010250794432485614
sum de = 1.9504317189675778e-05
Info: CFL hydro = 0.0018939964680733056 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018939964680733056 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.5148e+04 | 12514 | 1 | 1.470e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.91922977111693 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 478 [SPH][rank=0]
Info: time since start : 193.63095780100002 (s) [SPH][rank=0]
Info: dump to orztang_00030.vtk [VTK Dump][rank=0]
- took 2.70 ms, bandwidth = 247.84 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 962.02 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 963.37 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 950.02 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.007084637 s
Info: compute_slice took 955.66 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.0018939964680733056 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.2%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 480.02 us (94.9%)
LB move op cnt : 0
LB apply : 4.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 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.6489531724468582
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6452887719511416e-05,-8.21889419699942e-06,-6.5559503504101095e-09)
sum a = (1.8036228692418868e-06,-1.2430196786142035e-05,-5.812036358031428e-08)
sum e = 0.010256913151974406
sum de = 1.6492780349348186e-05
Info: CFL hydro = 0.0018542238912612095 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018542238912612095 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4023e+04 | 12514 | 1 | 1.489e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.780798671531855 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7518939964680736, dt = 0.0018542238912612095 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1213.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 365.90 us (95.2%)
LB move op cnt : 0
LB apply : 3.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 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.65159021895477
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6449639600282264e-05,-8.24197542696376e-06,-6.639460267922286e-09)
sum a = (1.8182363181120506e-06,-1.2485286318548087e-05,-2.5891437448470657e-08)
sum e = 0.010262659453713073
sum de = 1.279941887285762e-05
Info: CFL hydro = 0.0020556478767025013 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020556478767025013 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4412e+04 | 12514 | 1 | 1.482e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.027112051851674 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7537482203593349, dt = 0.0020556478767025013 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.3%)
LB compute : 370.90 us (95.1%)
LB move op cnt : 0
LB apply : 4.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (64.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.6554259229662778
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6445888398352773e-05,-8.267691853437752e-06,-6.662804123926536e-09)
sum a = (1.9729549625928857e-06,-1.2552573479850092e-05,1.0633103315528883e-08)
sum e = 0.01026900781550298
sum de = 9.049231842630639e-06
Info: CFL hydro = 0.002033703032392673 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002033703032392673 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2895e+04 | 12514 | 1 | 1.510e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.020903145126695 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7558038682360374, dt = 0.002033703032392673 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1142.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.3%)
LB compute : 425.42 us (95.8%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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.656624580469874
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6441716970335844e-05,-8.293289219542878e-06,-6.6036387521354195e-09)
sum a = (2.2129771085337923e-06,-1.264232746788822e-05,4.3882346276638075e-08)
sum e = 0.010275118876111732
sum de = 5.320832951801645e-06
Info: CFL hydro = 0.002038397925839176 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002038397925839176 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2622e+04 | 12514 | 1 | 1.515e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.33806039146502 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7578375712684301, dt = 0.002038397925839176 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.32 us (1.2%)
patch tree reduce : 1242.00 ns (0.2%)
gen split merge : 812.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 527.06 us (96.4%)
LB move op cnt : 0
LB apply : 4.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (75.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.6590218954770664
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.643696197550487e-05,-8.319150580111015e-06,-6.480379525386512e-09)
sum a = (2.495773480906977e-06,-1.2670616182018897e-05,7.527235525676078e-08)
sum e = 0.01028114742169795
sum de = 1.981674304644924e-06
Info: CFL hydro = 0.0020223721080047234 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020223721080047234 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4010e+04 | 12514 | 1 | 1.490e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.26337267039838 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7598759691942693, dt = 0.0020223721080047234 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.10 us (1.0%)
patch tree reduce : 1172.00 ns (0.2%)
gen split merge : 821.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 604.47 us (96.8%)
LB move op cnt : 0
LB apply : 4.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 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.6595013584785043
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6431626367059788e-05,-8.344804112696107e-06,-6.296158149012809e-09)
sum a = (2.8300408551205727e-06,-1.2639596922756806e-05,1.0837843413938501e-07)
sum e = 0.010287015952133095
sum de = -1.0595179600936028e-06
Info: CFL hydro = 0.0020567257185320526 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020567257185320526 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1244e+04 | 12514 | 1 | 1.540e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.26722761014472 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.761898341302274, dt = 0.0020567257185320526 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.39 us (0.4%)
patch tree reduce : 1192.00 ns (0.1%)
gen split merge : 771.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1213.00 ns (0.1%)
LB compute : 1642.77 us (98.8%)
LB move op cnt : 0
LB apply : 3.72 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 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.6638165254914505
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6425467742741338e-05,-8.370768930517682e-06,-6.039777030914934e-09)
sum a = (3.2088830549295446e-06,-1.2482468459156912e-05,1.3955399664690436e-07)
sum e = 0.0102928892314411
sum de = -3.8024878385316306e-06
Info: CFL hydro = 0.002036697037621409 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002036697037621409 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0871e+04 | 12514 | 1 | 1.547e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.849402908525484 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7639550670208061, dt = 0.002036697037621409 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1423.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 : 377.76 us (95.4%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 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.665015182995046
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6418542632881707e-05,-8.396030351974244e-06,-5.723488028756691e-09)
sum a = (3.587541191895751e-06,-1.2250720000749598e-05,1.7055606674615824e-07)
sum e = 0.010298574593783085
sum de = -6.226130453198622e-06
Info: CFL hydro = 0.0020000157505221266 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020000157505221266 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4374e+04 | 12514 | 1 | 1.483e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.436058317666216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7659917640584275, dt = 0.0020000157505221266 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.6%)
patch tree reduce : 1492.00 ns (0.2%)
gen split merge : 791.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.1%)
LB compute : 831.81 us (97.8%)
LB move op cnt : 0
LB apply : 3.53 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (75.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.665974108997922
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.641098188803901e-05,-8.42029598423099e-06,-5.350802296751775e-09)
sum a = (3.964757032916009e-06,-1.1942451746483574e-05,2.017478645064398e-07)
sum e = 0.01030404008045577
sum de = -8.297025726306006e-06
Info: CFL hydro = 0.00200685439235223 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00200685439235223 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf 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 : 48.34249462415319 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7679917798089496, dt = 0.00200685439235223 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1413.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.2%)
LB compute : 443.94 us (95.9%)
LB move op cnt : 0
LB apply : 4.12 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (76.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.6707687390123067
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6402647979161342e-05,-8.443954475291732e-06,-4.914731665315408e-09)
sum a = (4.34681847767236e-06,-1.1578650263624276e-05,2.2910930728457178e-07)
sum e = 0.010309425106103288
sum de = -1.0070022520591867e-05
Info: CFL hydro = 0.0020305584497253724 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020305584497253724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3689e+04 | 12514 | 1 | 1.495e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.31587777309321 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7699986342013019, dt = 0.0020305584497253724 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1443.00 ns (0.3%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1713.00 ns (0.4%)
LB compute : 397.86 us (95.2%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 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.670529007511586
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6393438139327882e-05,-8.467100553118893e-06,-4.4220566096879274e-09)
sum a = (4.7089688369266856e-06,-1.1158113697124527e-05,2.604567166505443e-07)
sum e = 0.010314762953651834
sum de = -1.1639347440767564e-05
Info: CFL hydro = 0.001961943762930043 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001961943762930043 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4388e+04 | 12514 | 1 | 1.483e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.294958804688775 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7720291926510272, dt = 0.001961943762930043 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 387.70 us (95.5%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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.6736455170209377
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.638383172355246e-05,-8.488565182653976e-06,-3.879228805459572e-09)
sum a = (5.004225220176031e-06,-1.0715753293434535e-05,2.91874889141531e-07)
sum e = 0.010319779587841353
sum de = -1.3024721923444503e-05
Info: CFL hydro = 0.0019767100104237244 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019767100104237244 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf 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 : 47.73578764629933 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7739911364139572, dt = 0.0010088635860431294 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 982.00 ns (0.2%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 385.77 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 (74.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.67580310052741
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.637849350474175e-05,-8.498941972831073e-06,-3.5539465143437083e-09)
sum a = (5.1388012734681175e-06,-1.0464425218165097e-05,3.1087014841725207e-07)
sum e = 0.010322104013983176
sum de = -1.3838306202809634e-05
Info: CFL hydro = 0.0019454250604376549 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019454250604376549 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4822e+04 | 12514 | 1 | 1.475e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.61762994950823 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 491 [SPH][rank=0]
Info: time since start : 199.630318625 (s) [SPH][rank=0]
Info: dump to orztang_00031.vtk [VTK Dump][rank=0]
- took 2.52 ms, bandwidth = 264.82 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 952.33 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 953.30 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 944.92 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.005772794 s
Info: compute_slice took 953.39 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.0019454250604376549 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.01 us (1.9%)
patch tree reduce : 1593.00 ns (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 490.79 us (95.3%)
LB move op cnt : 0
LB apply : 3.83 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.82 us (77.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.636842846752377e-05,-8.519172950021926e-06,-2.9395901243748907e-09)
sum a = (5.342931148998054e-06,-1.0014117186704957e-05,3.5076320765274486e-07)
sum e = 0.010327149221690462
sum de = -1.4600204483505313e-05
Info: CFL hydro = 0.0018886918318914542 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018886918318914542 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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 : 44.204926233386644 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.776945425060438, dt = 0.0018886918318914542 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1193.00 ns (0.3%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1263.00 ns (0.3%)
LB compute : 379.60 us (95.1%)
LB move op cnt : 0
LB apply : 4.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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.6762825635288476
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.635813875741648e-05,-8.53764851109144e-06,-2.2383020405665075e-09)
sum a = (5.508317264988818e-06,-9.553782538749267e-06,3.829566351052541e-07)
sum e = 0.01033171904255332
sum de = -1.572070233605343e-05
Info: CFL hydro = 0.00184380720520599 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00184380720520599 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3350e+04 | 12514 | 1 | 1.501e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.286825359439966 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7788341168923294, dt = 0.00184380720520599 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1492.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.2%)
LB compute : 440.58 us (95.7%)
LB move op cnt : 0
LB apply : 3.82 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (76.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.6755633690266913
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6347826300651516e-05,-8.554829129029414e-06,-1.5018021057430194e-09)
sum a = (5.65876955529267e-06,-9.080521004639917e-06,4.0405131800645803e-07)
sum e = 0.010336083045321054
sum de = -1.6592643047208072e-05
Info: CFL hydro = 0.0020120170828056842 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020120170828056842 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3576e+04 | 12514 | 1 | 1.497e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.330578961448566 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7806779240975353, dt = 0.0020120170828056842 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1423.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 388.21 us (95.3%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (73.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.6805977305417934
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6336302057130292e-05,-8.57266299089798e-06,-6.693966874213689e-10)
sum a = (5.802906023143453e-06,-8.556208317407572e-06,4.2109280152176554e-07)
sum e = 0.010340798372209917
sum de = -1.7461213733924684e-05
Info: CFL hydro = 0.002040200666055492 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002040200666055492 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0844e+04 | 12514 | 1 | 1.548e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.79344096896527 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7826899411803411, dt = 0.002040200666055492 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1333.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 386.14 us (95.2%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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.685392360556177
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.632431796187903e-05,-8.589591909764262e-06,2.0686100468927547e-10)
sum a = (5.92098860112661e-06,-8.06964433788241e-06,4.377932222777105e-07)
sum e = 0.010345420636978169
sum de = -1.8415272016639173e-05
Info: CFL hydro = 0.002044562464815327 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002044562464815327 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.0661e+04 | 12514 | 1 | 1.551e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.34150604172491 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7847301418463966, dt = 0.002044562464815327 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1173.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 392.40 us (95.4%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (76.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.6844334345533016
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6312091674753498e-05,-8.605594457604156e-06,1.1189926990837766e-09)
sum a = (5.987387811284991e-06,-7.6180365864648e-06,4.466336301087049e-07)
sum e = 0.010349926204584437
sum de = -1.9382092870702324e-05
Info: CFL hydro = 0.002015636646602349 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002015636646602349 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2949e+04 | 12514 | 1 | 1.509e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.78849013738395 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7867747043112119, dt = 0.002015636646602349 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.5%)
patch tree reduce : 1793.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 382.29 us (95.0%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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.6829950455489846
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6299955397797182e-05,-8.620487981194548e-06,2.028281194548028e-09)
sum a = (5.986403522247154e-06,-7.190544351252296e-06,4.4427451179823294e-07)
sum e = 0.010354241873407992
sum de = -2.0408000303556386e-05
Info: CFL hydro = 0.001982017472083052 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001982017472083052 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2698e+04 | 12514 | 1 | 1.513e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.952975881994476 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7887903409578142, dt = 0.001982017472083052 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 12514
max = 12514
avg = 12514
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.35 us (2.1%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 383.44 us (94.4%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (77.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.6844334345532994
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6288091233405746e-05,-8.634308931224812e-06,2.906463476673271e-09)
sum a = (5.966536843818598e-06,-6.8009244526744616e-06,4.313940155454413e-07)
sum e = 0.010358373066905813
sum de = -2.153627582518411e-05
Info: CFL hydro = 0.0019514386332397347 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019514386332397347 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3440e+04 | 12514 | 1 | 1.500e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.57621675474457 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7907723584298972, dt = 0.0019514386332397347 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1433.00 ns (0.3%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 407.64 us (95.5%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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.685632092056895
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.627646759095384e-05,-8.647194401220069e-06,3.735537740445848e-09)
sum a = (5.9737895664613305e-06,-6.4427031349837024e-06,4.12112399995242e-07)
sum e = 0.01036233513334734
sum de = -2.28104994521635e-05
Info: CFL hydro = 0.0019229178210702364 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019229178210702364 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3823e+04 | 12514 | 1 | 1.493e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.05699667867152 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.792723797063137, dt = 0.0019229178210702364 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 1122.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1103.00 ns (0.3%)
LB compute : 412.05 us (95.6%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (75.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.6870704810612107
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6264973407915825e-05,-8.6592336664349e-06,4.5091825739327574e-09)
sum a = (5.9859923869675014e-06,-6.0683755298955695e-06,3.806316278438163e-07)
sum e = 0.010366138218438447
sum de = -2.427842761330799e-05
Info: CFL hydro = 0.002039682759409228 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002039682759409228 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4051e+04 | 12514 | 1 | 1.489e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.49519688853893 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7946467148842072, dt = 0.002039682759409228 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1012.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 376.77 us (95.3%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (76.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.6901869905705613
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6252752149935514e-05,-8.67125132676942e-06,5.2552828740359964e-09)
sum a = (5.965614097952076e-06,-5.611802029016518e-06,3.4963865298543017e-07)
sum e = 0.010370105243032519
sum de = -2.6055505099598086e-05
Info: CFL hydro = 0.001995901430910961 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001995901430910961 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3635e+04 | 12514 | 1 | 1.496e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.074570127542216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7966863976436165, dt = 0.001995901430910961 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 1092.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 357.85 us (94.8%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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.690906185072719
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6240866154843223e-05,-8.681986297920257e-06,5.921519243590312e-09)
sum a = (5.934842465086404e-06,-5.132000289900606e-06,3.019898273807148e-07)
sum e = 0.0103738357656426
sum de = -2.8094254017759564e-05
Info: CFL hydro = 0.0019620613239163336 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019620613239163336 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4271e+04 | 12514 | 1 | 1.485e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.38618521327323 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7986822990745275, dt = 0.0013177009254728977 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1022.00 ns (0.2%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.2%)
LB compute : 412.93 us (95.5%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.76 us (75.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.6233076516007748e-05,-8.68826992096272e-06,6.2719003390105444e-09)
sum a = (5.884471061766312e-06,-4.8184051428348904e-06,2.713161429802432e-07)
sum e = 0.010376093486950165
sum de = -2.9574921299261204e-05
Info: CFL hydro = 0.0019462792591814365 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019462792591814365 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4347e+04 | 12514 | 1 | 1.484e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.9735763400071 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 504 [SPH][rank=0]
Info: time since start : 205.61023533600002 (s) [SPH][rank=0]
Info: dump to orztang_00032.vtk [VTK Dump][rank=0]
- took 2.58 ms, bandwidth = 259.03 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 959.54 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 955.88 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 948.43 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.0057499510000000005 s
Info: compute_slice took 982.81 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.0019462792591814365 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.46 us (1.8%)
patch tree reduce : 1483.00 ns (0.3%)
gen split merge : 851.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 545.84 us (95.5%)
LB move op cnt : 0
LB apply : 4.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (78.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.6889883330669644
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.622165687925146e-05,-8.697441270647138e-06,6.779747949612743e-09)
sum a = (5.7599778546179955e-06,-4.309652864130241e-06,2.2851161292137988e-07)
sum e = 0.01037972247647193
sum de = -3.164667088371199e-05
Info: CFL hydro = 0.0020689810115099767 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020689810115099767 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3835e+04 | 12514 | 1 | 1.493e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.939589987845 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8019462792591818, dt = 0.0020689810115099767 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1012.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 383.57 us (95.4%)
LB move op cnt : 0
LB apply : 4.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 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.68754994406265
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.620986074371707e-05,-8.705862773584827e-06,7.210879353130624e-09)
sum a = (5.631732989872821e-06,-3.7338237890276636e-06,1.8964688267214428e-07)
sum e = 0.0103833628104894
sum de = -3.421085122934985e-05
Info: CFL hydro = 0.002051896893181783 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002051896893181783 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3763e+04 | 12514 | 1 | 1.494e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.855889503463914 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8040152602706918, dt = 0.002051896893181783 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 408.64 us (95.6%)
LB move op cnt : 0
LB apply : 4.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (75.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.685632092056896
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6198437676386754e-05,-8.712928505306006e-06,7.559810008035557e-09)
sum a = (5.524097144045518e-06,-3.131570267361385e-06,1.5035841524944596e-07)
sum e = 0.010386835220787118
sum de = -3.668251046671503e-05
Info: CFL hydro = 0.0020518681480777203 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020518681480777203 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3058e+04 | 12514 | 1 | 1.507e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.027995086085134 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8060671571638736, dt = 0.0020518681480777203 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1233.00 ns (0.3%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 392.52 us (95.5%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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.6887486015662465
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.618721338623898e-05,-8.718736193525985e-06,7.828017708959901e-09)
sum a = (5.433965975603129e-06,-2.4741284557928437e-06,1.1684194441007503e-07)
sum e = 0.01039021782233623
sum de = -3.900686842983739e-05
Info: CFL hydro = 0.0020409007799316054 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020409007799316054 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1513e+04 | 12514 | 1 | 1.535e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.11508689815176 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8081190253119512, dt = 0.0020409007799316054 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 394.61 us (95.5%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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.6925843055777534
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6176215669477966e-05,-8.723111152264877e-06,8.032094834959703e-09)
sum a = (5.406446153120555e-06,-1.804865774589776e-06,8.992166752029618e-08)
sum e = 0.010393490070521524
sum de = -4.111502339347155e-05
Info: CFL hydro = 0.0020374884885959433 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020374884885959433 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2058e+04 | 12514 | 1 | 1.525e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.17786419808428 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8101599260918828, dt = 0.0020374884885959433 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 381.01 us (95.4%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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.6916253795748766
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.616522818029036e-05,-8.726105596140155e-06,8.187838390357312e-09)
sum a = (5.436574659128519e-06,-1.107641506497073e-06,7.042037418693146e-08)
sum e = 0.01039667415813326
sum de = -4.29615094814027e-05
Info: CFL hydro = 0.002010126036517586 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002010126036517586 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3188e+04 | 12514 | 1 | 1.504e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.759730962994276 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8121974145804788, dt = 0.002010126036517586 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.04 us (1.6%)
patch tree reduce : 1203.00 ns (0.3%)
gen split merge : 1011.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 357.63 us (94.9%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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.6940226945820687
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6154269286776364e-05,-8.727621801961506e-06,8.309525387672217e-09)
sum a = (5.49959070658543e-06,-3.8269397083165093e-07,5.241540305646417e-08)
sum e = 0.010399730783541906
sum de = -4.452768189302595e-05
Info: CFL hydro = 0.0019715287977648465 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019715287977648465 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3727e+04 | 12514 | 1 | 1.495e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.41662170521367 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8142075406169964, dt = 0.0019715287977648465 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1091.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 354.10 us (94.8%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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.694022694582069
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6143363350223777e-05,-8.727647676187294e-06,8.39476773361639e-09)
sum a = (5.5497230425657874e-06,3.5876066183906605e-07,3.769289088829633e-08)
sum e = 0.010402654106523352
sum de = -4.577085750363548e-05
Info: CFL hydro = 0.0019338884532394862 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019338884532394862 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3724e+04 | 12514 | 1 | 1.495e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.48522634483576 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8161790694147613, dt = 0.0019338884532394862 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.10 us (1.5%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 394.00 us (95.4%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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.692824037078473
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6132581386240946e-05,-8.726222973505691e-06,8.453148651716913e-09)
sum a = (5.603855404322001e-06,1.089561260402487e-06,3.4949331008158304e-08)
sum e = 0.01040545718835765
sum de = -4.668228576975504e-05
Info: CFL hydro = 0.001981830272063663 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001981830272063663 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4127e+04 | 12514 | 1 | 1.488e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.80295309397942 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8181129578680008, dt = 0.001981830272063663 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 393.16 us (95.3%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (73.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.687549944062651
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6121423152985586e-05,-8.723357004597315e-06,8.519759424511045e-09)
sum a = (5.640230148059943e-06,1.84119628145025e-06,3.339708919715208e-08)
sum e = 0.010408288545550677
sum de = -4.727176080571179e-05
Info: CFL hydro = 0.00194543302082011 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00194543302082011 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3733e+04 | 12514 | 1 | 1.495e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.73850305262448 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8200947881400644, dt = 0.00194543302082011 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1193.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 374.67 us (95.2%)
LB move op cnt : 0
LB apply : 3.96 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.6906664535719997
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.61104144187265e-05,-8.719030274034311e-06,8.583193084728742e-09)
sum a = (5.665735473879728e-06,2.5646192251190155e-06,3.42377221302233e-08)
sum e = 0.01041099060239456
sum de = -4.750002891857797e-05
Info: CFL hydro = 0.0020388927166273933 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020388927166273933 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3131e+04 | 12514 | 1 | 1.505e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.52505115256264 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8220402211608845, dt = 0.0020388927166273933 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 392.43 us (95.4%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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.6868307495604924
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6098837782482867e-05,-8.7130976051338e-06,8.65381782454714e-09)
sum a = (5.642378621822399e-06,3.3294425138809916e-06,5.558134656753826e-08)
sum e = 0.010413797291405463
sum de = -4.737775375098949e-05
Info: CFL hydro = 0.002039206600019255 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002039206600019255 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3401e+04 | 12514 | 1 | 1.500e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.918422571100514 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8240791138775119, dt = 0.000920886122488529 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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 : 1092.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1073.00 ns (0.3%)
LB compute : 366.90 us (95.1%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.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: 2.688508870065526
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.609366560536996e-05,-8.709251871410892e-06,8.726760595476114e-09)
sum a = (5.595057979051434e-06,3.6841665833659934e-06,6.364259469966169e-08)
sum e = 0.010414840402847233
sum de = -4.710063709432455e-05
Info: CFL hydro = 0.0020439193520263815 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020439193520263815 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4888e+04 | 12514 | 1 | 1.474e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.48834380948821 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 517 [SPH][rank=0]
Info: time since start : 211.624214803 (s) [SPH][rank=0]
Info: dump to orztang_00033.vtk [VTK Dump][rank=0]
- took 2.35 ms, bandwidth = 284.12 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 975.24 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 955.56 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 951.42 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.005709806 s
Info: compute_slice took 957.59 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.0020439193520263815 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.53 us (1.9%)
patch tree reduce : 1473.00 ns (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 527.38 us (95.5%)
LB move op cnt : 0
LB apply : 4.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 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.69042672207128
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.608225154655247e-05,-8.701558401798449e-06,8.860552672163364e-09)
sum a = (5.49340213129799e-06,4.5010075845580975e-06,7.982620348696866e-08)
sum e = 0.010417750272207048
sum de = -4.637143255988372e-05
Info: CFL hydro = 0.002030402285470416 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002030402285470416 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3888e+04 | 12514 | 1 | 1.492e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.325226262829794 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8270439193520268, dt = 0.002030402285470416 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 399.79 us (95.5%)
LB move op cnt : 0
LB apply : 3.95 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (75.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.6861115550583348
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6071201618487377e-05,-8.691584767146839e-06,9.03917097375666e-09)
sum a = (5.288373845707792e-06,5.32533605381482e-06,9.99170029723526e-08)
sum e = 0.010420398658740584
sum de = -4.540226941292812e-05
Info: CFL hydro = 0.0020530912636401405 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020530912636401405 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6052e+04 | 12514 | 1 | 1.645e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.4220676787772 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8290743216374973, dt = 0.0020530912636401405 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1071.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 392.76 us (95.5%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (75.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.6853923605561785
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6060552249295595e-05,-8.679814507015012e-06,9.264705902244238e-09)
sum a = (4.989947291897203e-06,6.1589732185790096e-06,1.254111102593113e-07)
sum e = 0.010423039145675387
sum de = -4.3846768421055776e-05
Info: CFL hydro = 0.00206878909754304 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00206878909754304 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4522e+04 | 12514 | 1 | 1.481e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.92114136199853 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8311274129011375, dt = 0.00206878909754304 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1022.00 ns (0.2%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 393.66 us (95.6%)
LB move op cnt : 0
LB apply : 3.60 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.683714240051143
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6050535449216233e-05,-8.666217123778282e-06,9.550325904332195e-09)
sum a = (4.665343614398244e-06,6.957934433898241e-06,1.4717303957697224e-07)
sum e = 0.010425657840103675
sum de = -4.182990180882975e-05
Info: CFL hydro = 0.0020979762130056917 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020979762130056917 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2109e+04 | 12514 | 1 | 1.524e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.86699318641933 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8331962019986805, dt = 0.0020979762130056917 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 386.26 us (95.4%)
LB move op cnt : 0
LB apply : 4.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (73.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.6041083437562036e-05,-8.650793101718919e-06,9.88160186161734e-09)
sum a = (4.344679152727617e-06,7.694698272046729e-06,1.5385480041146607e-07)
sum e = 0.010428279200275817
sum de = -3.926859019354672e-05
Info: CFL hydro = 0.002131197303513559 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002131197303513559 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7111e+04 | 12514 | 1 | 1.623e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.53943947228879 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8352941782116862, dt = 0.002131197303513559 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 361.23 us (95.1%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (74.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.681077193543232
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.603216044227366e-05,-8.633621325006327e-06,1.0216505885033025e-08)
sum a = (4.0696861950491035e-06,8.372101465984114e-06,1.553756890084283e-07)
sum e = 0.010430908563777555
sum de = -3.613297963121123e-05
Info: CFL hydro = 0.002095493043067891 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002095493043067891 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4209e+04 | 12514 | 1 | 1.486e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.62843017340604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8374253755151997, dt = 0.002095493043067891 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1072.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 398.07 us (95.4%)
LB move op cnt : 0
LB apply : 3.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 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.683234777049704
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6023925475289414e-05,-8.615355804698035e-06,1.0543715217250071e-08)
sum a = (3.8514311952476486e-06,8.940429478804514e-06,1.6390088406161938e-07)
sum e = 0.01043344771676359
sum de = -3.2478061159997866e-05
Info: CFL hydro = 0.0020634010635985343 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020634010635985343 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4015e+04 | 12514 | 1 | 1.489e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.64652584810139 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8395208685582676, dt = 0.0020634010635985343 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1403.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 369.11 us (95.1%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (74.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.6841937030525815
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6016207103981704e-05,-8.596312649304628e-06,1.0890840719210284e-08)
sum a = (3.68892869871162e-06,9.415289005445733e-06,1.8277303651382915e-07)
sum e = 0.010435922949430224
sum de = -2.8352900166893562e-05
Info: CFL hydro = 0.002033980273478971 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002033980273478971 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3716e+04 | 12514 | 1 | 1.495e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.6931390768755 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.841584269621866, dt = 0.002033980273478971 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1002.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 373.21 us (95.4%)
LB move op cnt : 0
LB apply : 4.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 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.68179638804539
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6008871549690396e-05,-8.576672224371773e-06,1.1282067879724647e-08)
sum a = (3.5652352570403464e-06,9.799416406540324e-06,2.016916994700257e-07)
sum e = 0.010438341481222394
sum de = -2.3886357420563704e-05
Info: CFL hydro = 0.0020073337001032684 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020073337001032684 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3131e+04 | 12514 | 1 | 1.505e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.642293520760255 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8436182498953451, dt = 0.0020073337001032684 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 382.90 us (95.2%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 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.682036119546108
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6001840727820164e-05,-8.556610871799683e-06,1.1706170518728736e-08)
sum a = (3.530208046446174e-06,1.0051252341824637e-05,2.1999576929638134e-07)
sum e = 0.010440710248242899
sum de = -1.920282772981785e-05
Info: CFL hydro = 0.0019832779934671227 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019832779934671227 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2599e+04 | 12514 | 1 | 1.515e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.69802687516244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8456255835954484, dt = 0.0019832779934671227 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.6%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1223.00 ns (0.3%)
LB compute : 368.32 us (95.0%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (74.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.6808374620425117
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5994874499539565e-05,-8.536423684843165e-06,1.2160854474735684e-08)
sum a = (3.608839559115736e-06,1.018159641468397e-05,2.3801431936377052e-07)
sum e = 0.010443035172764426
sum de = -1.4418547595183651e-05
Info: CFL hydro = 0.0019613198391338934 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019613198391338934 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3523e+04 | 12514 | 1 | 1.498e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.65356302939324 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8476088615889155, dt = 0.0019613198391338934 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 402.50 us (95.6%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 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.6791593415374786
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.598771843684148e-05,-8.516325063534952e-06,1.2645544578213345e-08)
sum a = (3.757861993642634e-06,1.0271670403147023e-05,2.5198430362287775e-07)
sum e = 0.010445320518540165
sum de = -9.620815909307042e-06
Info: CFL hydro = 0.0019415205551235456 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019415205551235456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3329e+04 | 12514 | 1 | 1.502e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.016717984117015 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8495701814280494, dt = 0.0004298185719510128 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 395.45 us (95.5%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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.679638804538917
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5985957097637164e-05,-8.51182177688081e-06,1.2767551915390822e-08)
sum a = (3.7760429955957383e-06,1.0285606626337678e-05,2.5587833926359554e-07)
sum e = 0.010445616652483794
sum de = -8.424731379332903e-06
Info: CFL hydro = 0.0019376029631109626 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019376029631109626 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9729e+04 | 12514 | 1 | 1.570e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.858400618816164 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 530 [SPH][rank=0]
Info: time since start : 217.658098762 (s) [SPH][rank=0]
Info: dump to orztang_00034.vtk [VTK Dump][rank=0]
- took 2.56 ms, bandwidth = 261.23 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 955.95 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 956.50 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 950.94 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.005820073 s
Info: compute_slice took 957.41 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.0019376029631109626 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.78 us (2.4%)
patch tree reduce : 1703.00 ns (0.3%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 459.99 us (94.4%)
LB move op cnt : 0
LB apply : 4.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 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.6774812210324446
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.597863671827401e-05,-8.491889359980618e-06,1.3264179408162803e-08)
sum a = (4.019409349979693e-06,1.0308083789240901e-05,2.6533246828141877e-07)
sum e = 0.010448057995437379
sum de = -3.64826813164894e-06
Info: CFL hydro = 0.0019196513603262583 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019196513603262583 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2439e+04 | 12514 | 1 | 1.518e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.95185939274979 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8519376029631114, dt = 0.0019196513603262583 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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 (1.4%)
patch tree reduce : 1012.00 ns (0.2%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 413.61 us (94.4%)
LB move op cnt : 0
LB apply : 6.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 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.676282563528849
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.597068507996289e-05,-8.47207965700327e-06,1.3782684416037347e-08)
sum a = (4.285529706718337e-06,1.022771115112623e-05,2.8793199668514594e-07)
sum e = 0.010450270714724284
sum de = 9.381132051891771e-07
Info: CFL hydro = 0.001904463265928275 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001904463265928275 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2035e+04 | 12514 | 1 | 1.525e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.30291140375324 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8538572543234376, dt = 0.001904463265928275 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.10 us (1.4%)
patch tree reduce : 1173.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 401.26 us (95.3%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (77.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.6724468595173416
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.596226801690894e-05,-8.452678500543452e-06,1.4352731934531475e-08)
sum a = (4.585680066563865e-06,1.0060781306545613e-05,3.09608871842107e-07)
sum e = 0.010452451927345391
sum de = 5.595754826333189e-06
Info: CFL hydro = 0.002107969232453613 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002107969232453613 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3380e+04 | 12514 | 1 | 1.501e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.6815622890716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8557617175893659, dt = 0.002107969232453613 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.3%)
LB compute : 377.69 us (95.0%)
LB move op cnt : 0
LB apply : 4.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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.671967396515904
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.595231573175139e-05,-8.431629638973776e-06,1.502601931669761e-08)
sum a = (4.96746910013165e-06,9.788483923107104e-06,3.2059600196576325e-07)
sum e = 0.010454901176812071
sum de = 1.0681361262877206e-05
Info: CFL hydro = 0.0020648579144325937 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020648579144325937 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2132e+04 | 12514 | 1 | 1.524e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.80624738362435 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8578696868218195, dt = 0.0020648579144325937 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1303.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 366.93 us (95.2%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
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.6695700815087116
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5941656214097464e-05,-8.411704807727847e-06,1.5699584774818447e-08)
sum a = (5.359507587159607e-06,9.458634595962535e-06,3.160369726993191e-07)
sum e = 0.010457232422829534
sum de = 1.568590017101217e-05
Info: CFL hydro = 0.002064640469494853 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002064640469494853 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3924e+04 | 12514 | 1 | 1.491e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.85208218126181 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8599345447362521, dt = 0.002064640469494853 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1203.00 ns (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 401.31 us (95.5%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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.66980981300943
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.593018600594998e-05,-8.392516673951761e-06,1.6347380624678745e-08)
sum a = (5.7573771959914645e-06,9.049940352701228e-06,3.010108876728978e-07)
sum e = 0.010459556289831856
sum de = 2.0825369784680854e-05
Info: CFL hydro = 0.0020364369897496906 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020364369897496906 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4904e+04 | 12514 | 1 | 1.474e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.428689944969626 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8619991852057469, dt = 0.0020364369897496906 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1292.00 ns (0.3%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 409.74 us (95.6%)
LB move op cnt : 0
LB apply : 3.63 us (0.8%)
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.6681316925043945
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5918050741216217e-05,-8.374508943999513e-06,1.6944858599031585e-08)
sum a = (6.104911506487353e-06,8.596042903610293e-06,2.8395787312336116e-07)
sum e = 0.010461825815448278
sum de = 2.60012344103051e-05
Info: CFL hydro = 0.0020100162554468194 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020100162554468194 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4757e+04 | 12514 | 1 | 1.476e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.65412975515034 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8640356221954966, dt = 0.0020100162554468194 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1362.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 373.64 us (95.2%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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.6678919610036744
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5905425903987328e-05,-8.35769292480816e-06,1.74982548450641e-08)
sum a = (6.4442543150439405e-06,8.065256175979143e-06,2.646406168524242e-07)
sum e = 0.010464049103758203
sum de = 3.121347033207396e-05
Info: CFL hydro = 0.0019895802107717823 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019895802107717823 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4438e+04 | 12514 | 1 | 1.482e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.82542878756489 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8660456384509434, dt = 0.0019895802107717823 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1233.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 378.79 us (95.0%)
LB move op cnt : 0
LB apply : 4.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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.66957008150871
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5892263500848575e-05,-8.342179895700786e-06,1.8005364579762456e-08)
sum a = (6.736117678230583e-06,7.531319381505136e-06,2.3633738239938352e-07)
sum e = 0.010466233893684106
sum de = 3.6463249841010605e-05
Info: CFL hydro = 0.0021512777546404795 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021512777546404795 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4289e+04 | 12514 | 1 | 1.485e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.24356576677552 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8680352186617152, dt = 0.0021512777546404795 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 381.25 us (95.2%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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.6683714240051137
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5877481897948846e-05,-8.326509090892477e-06,1.8485636155524392e-08)
sum a = (7.045354077409808e-06,6.949838503192625e-06,1.9538265740145169e-07)
sum e = 0.010468618354066178
sum de = 4.218072241099946e-05
Info: CFL hydro = 0.002138747309596411 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002138747309596411 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3289e+04 | 12514 | 1 | 1.502e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.54547793090465 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8701864964163557, dt = 0.002138747309596411 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1392.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 436.32 us (95.6%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (73.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.6652549144957662
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5862081039177283e-05,-8.312270605930643e-06,1.8859457793965556e-08)
sum a = (7.332886716343097e-06,6.403882559467543e-06,1.6051760230110546e-07)
sum e = 0.010470928693712236
sum de = 4.780609041411608e-05
Info: CFL hydro = 0.002147855383187704 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002147855383187704 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3975e+04 | 12514 | 1 | 1.490e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.66706752371864 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8723252437259521, dt = 0.002147855383187704 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1273.00 ns (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1013.00 ns (0.2%)
LB compute : 390.54 us (95.0%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 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.6611794789835383
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.584602357914031e-05,-8.299099823205132e-06,1.916694261876716e-08)
sum a = (7.650821011649702e-06,5.933411373594169e-06,1.3516524014193864e-07)
sum e = 0.01047323092156765
sum de = 5.335922641554785e-05
Info: CFL hydro = 0.002189943361235874 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002189943361235874 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3620e+04 | 12514 | 1 | 1.497e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.6682648891038 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8744730991091398, dt = 0.0005269008908606043 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 415.01 us (95.5%)
LB move op cnt : 0
LB apply : 4.11 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (74.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.6604602844813816
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.58416509162898e-05,-8.296478755500902e-06,1.9210934700441006e-08)
sum a = (7.740978395506967e-06,5.843877924231241e-06,1.3322734829453797e-07)
sum e = 0.010473551380997344
sum de = 5.472376141274623e-05
Info: CFL hydro = 0.0021823533607730154 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021823533607730154 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4007e+04 | 12514 | 1 | 1.490e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.733521644578326 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 543 [SPH][rank=0]
Info: time since start : 223.637180395 (s) [SPH][rank=0]
Info: dump to orztang_00035.vtk [VTK Dump][rank=0]
- took 2.63 ms, bandwidth = 254.31 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 962.60 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 957.00 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 961.57 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.0067239940000000005 s
Info: compute_slice took 961.34 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.0021823533607730154 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.61 us (2.0%)
patch tree reduce : 1503.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 504.24 us (95.2%)
LB move op cnt : 0
LB apply : 4.45 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.6628575994885724
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5824733614069743e-05,-8.283748936500258e-06,1.9501173313267958e-08)
sum a = (8.12398895914359e-06,5.439592086977095e-06,1.2189067964787667e-07)
sum e = 0.010476102132901201
sum de = 6.0306062437399545e-05
Info: CFL hydro = 0.0021616218487913105 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021616218487913105 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3385e+04 | 12514 | 1 | 1.501e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.35062015020643 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8771823533607734, dt = 0.0021616218487913105 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 372.88 us (95.1%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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.6616589419849768
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5806754689840898e-05,-8.272431742674253e-06,1.9752284561098353e-08)
sum a = (8.579906941514452e-06,5.147664646569639e-06,1.2215056184861313e-07)
sum e = 0.010478361402324023
sum de = 6.523792411178877e-05
Info: CFL hydro = 0.0021292462254188975 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021292462254188975 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2828e+04 | 12514 | 1 | 1.511e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.50672441872787 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8793439752095648, dt = 0.0021292462254188975 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.6%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 389.29 us (95.2%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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.6642959884928885
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5787993194235188e-05,-8.261786615522715e-06,2.001265406736915e-08)
sum a = (9.080727222330406e-06,4.967373614018781e-06,1.234746760108119e-07)
sum e = 0.010480556085484143
sum de = 6.990250211772196e-05
Info: CFL hydro = 0.002188432054297743 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002188432054297743 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3750e+04 | 12514 | 1 | 1.494e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.299940175114315 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8814732214349836, dt = 0.002188432054297743 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.30 us (1.6%)
patch tree reduce : 1492.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 : 369.85 us (94.9%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 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.665254914495765
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5767587454859192e-05,-8.251107797880319e-06,2.0284279688785806e-08)
sum a = (9.661214327301835e-06,4.879385715952539e-06,1.2473365359005487e-07)
sum e = 0.010482807769565195
sum de = 7.42092857440027e-05
Info: CFL hydro = 0.002166099990029746 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002166099990029746 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4052e+04 | 12514 | 1 | 1.489e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.91585441878281 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8836616534892814, dt = 0.002166099990029746 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1072.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 356.02 us (95.1%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
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.6645357199936077
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.574602512030742e-05,-8.24063483829777e-06,2.0555842848028586e-08)
sum a = (1.028706644677212e-05,4.894320822443289e-06,1.3216892017157692e-07)
sum e = 0.010484991734363356
sum de = 7.7909831570166e-05
Info: CFL hydro = 0.002145006503680397 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002145006503680397 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2874e+04 | 12514 | 1 | 1.510e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.641720881748206 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8858277534793111, dt = 0.002145006503680397 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1253.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 362.61 us (95.2%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 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.6654946459964854
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5723281466740372e-05,-8.23012031283582e-06,2.0847398806815514e-08)
sum a = (1.0898047208899357e-05,5.011507700433198e-06,1.3207786152597162e-07)
sum e = 0.010487128664424816
sum de = 8.098981308444123e-05
Info: CFL hydro = 0.0021222088690921316 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021222088690921316 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4635e+04 | 12514 | 1 | 1.479e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.22547524615291 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8879727599829915, dt = 0.0021222088690921316 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.2%)
LB compute : 436.63 us (95.9%)
LB move op cnt : 0
LB apply : 4.01 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (74.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.667891961003677
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5699498255443984e-05,-8.219359163438803e-06,2.1127597955263038e-08)
sum a = (1.14763124632433e-05,5.230882686980646e-06,1.3160470630262403e-07)
sum e = 0.010489217020785892
sum de = 8.343706665370662e-05
Info: CFL hydro = 0.002096410790407096 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002096410790407096 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.5047e+04 | 12514 | 1 | 1.471e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.92213012947268 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8900949688520836, dt = 0.002096410790407096 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1132.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 374.47 us (95.3%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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.6712482020137442
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5674825590335997e-05,-8.208160304759411e-06,2.1402993414518324e-08)
sum a = (1.2007089920747388e-05,5.523460259241311e-06,1.3767990130469555e-07)
sum e = 0.010491254562790566
sum de = 8.528429426559374e-05
Info: CFL hydro = 0.002157113555220984 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002157113555220984 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4363e+04 | 12514 | 1 | 1.483e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.8784709292646 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8921913796424907, dt = 0.002157113555220984 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1442.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 404.75 us (95.4%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (74.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.67292632251878
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5648368570114492e-05,-8.195938892372408e-06,2.1706352648082503e-08)
sum a = (1.2519182366373542e-05,5.845682406837647e-06,1.4359948773930905e-07)
sum e = 0.010493345478530305
sum de = 8.66487469045672e-05
Info: CFL hydro = 0.0021663372233707476 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021663372233707476 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4892e+04 | 12514 | 1 | 1.474e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.68014012589033 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8943484931977117, dt = 0.0021663372233707476 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 369.42 us (95.1%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 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.6717276650151836
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5620695478570133e-05,-8.18292763809716e-06,2.202382217369887e-08)
sum a = (1.2986342567547152e-05,6.19032982786241e-06,1.455859126251312e-07)
sum e = 0.01049540960739605
sum de = 8.746931716824265e-05
Info: CFL hydro = 0.002160904192939525 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002160904192939525 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3619e+04 | 12514 | 1 | 1.497e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.11179484848885 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8965148304210825, dt = 0.002160904192939525 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1453.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 : 363.49 us (95.0%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 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.6724468595173407
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5592127223198338e-05,-8.169177617148314e-06,2.234057101580946e-08)
sum a = (1.3421510140650989e-05,6.527219399968613e-06,1.4486272800537036e-07)
sum e = 0.010497442144170544
sum de = 8.78060847186635e-05
Info: CFL hydro = 0.002156707374984896 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002156707374984896 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9361e+04 | 12514 | 1 | 1.577e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.334598009124676 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8986757346140221, dt = 0.001324265385978407 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 952.00 ns (0.2%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 408.58 us (95.6%)
LB move op cnt : 0
LB apply : 4.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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.6760428320281293
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5573883404174978e-05,-8.160169853385436e-06,2.253162634588658e-08)
sum a = (1.3661746490815744e-05,6.7166216426772746e-06,1.4324160525130626e-07)
sum e = 0.010498529008139952
sum de = 8.776006592220872e-05
Info: CFL hydro = 0.0021564653845836806 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021564653845836806 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.5021e+04 | 12514 | 1 | 1.472e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.38987813645962 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 555 [SPH][rank=0]
Info: time since start : 229.489373988 (s) [SPH][rank=0]
Info: dump to orztang_00036.vtk [VTK Dump][rank=0]
- took 2.60 ms, bandwidth = 257.25 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 965.44 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 964.63 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 973.01 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.005700068 s
Info: compute_slice took 968.98 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.0021564653845836806 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.89 us (2.1%)
patch tree reduce : 1603.00 ns (0.3%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 443.99 us (94.8%)
LB move op cnt : 0
LB apply : 4.07 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (64.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.6758031005274105
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5544263252433174e-05,-8.145560281894772e-06,2.283944851086822e-08)
sum a = (1.4030227999052922e-05,7.016854960719715e-06,1.4280908357358274e-07)
sum e = 0.01050067030552894
sum de = 8.770879204071937e-05
Info: CFL hydro = 0.0021791217918891766 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021791217918891766 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4355e+04 | 12514 | 1 | 1.483e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.3312099073093 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9021564653845842, dt = 0.0021791217918891766 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1112.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 377.66 us (95.2%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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.6748441745245333
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.551329236804638e-05,-8.129945978960217e-06,2.3150180537950512e-08)
sum a = (1.4317557239871625e-05,7.289667699620359e-06,1.4464693898267765e-07)
sum e = 0.010502676656225365
sum de = 8.716154140919798e-05
Info: CFL hydro = 0.0021994757163844385 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021994757163844385 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2763e+04 | 12514 | 1 | 1.512e-01 | 0.0% | 1.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.883034481017646 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9043355871764733, dt = 0.0021994757163844385 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1372.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 418.85 us (95.6%)
LB move op cnt : 0
LB apply : 3.63 us (0.8%)
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.677241489531726
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5481488185874378e-05,-8.113615285782761e-06,2.3470330423078475e-08)
sum a = (1.452789825026602e-05,7.537872391868683e-06,1.5167397702985488e-07)
sum e = 0.010504683186896915
sum de = 8.653918850629204e-05
Info: CFL hydro = 0.0021676498262503687 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021676498262503687 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2764e+04 | 12514 | 1 | 1.512e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.367980739174314 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9065350628928578, dt = 0.0021676498262503687 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 1031.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 413.52 us (95.5%)
LB move op cnt : 0
LB apply : 3.60 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (72.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.5449765469784134e-05,-8.097002857905018e-06,2.3806834392805464e-08)
sum a = (1.4665011506657612e-05,7.75660992031253e-06,1.6459614758599953e-07)
sum e = 0.010506635740912798
sum de = 8.578227876325109e-05
Info: CFL hydro = 0.002112207980318454 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002112207980318454 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3930e+04 | 12514 | 1 | 1.491e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.33752327293636 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9087027127191082, dt = 0.002112207980318454 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.33 us (1.5%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 413.49 us (95.3%)
LB move op cnt : 0
LB apply : 3.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (74.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.6817963880453903
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5418641308685102e-05,-8.080382211348055e-06,2.4168501059646842e-08)
sum a = (1.4761622074550388e-05,7.951394588107574e-06,1.8188437235408687e-07)
sum e = 0.010508522074227998
sum de = 8.49706264052224e-05
Info: CFL hydro = 0.0020670764797542465 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020670764797542465 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3970e+04 | 12514 | 1 | 1.490e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.023443498837956 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9108149206994266, dt = 0.0020670764797542465 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.10 us (1.4%)
patch tree reduce : 1322.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 413.09 us (95.6%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 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.6813169250439506
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5388025876085633e-05,-8.063740357749757e-06,2.4562728130935235e-08)
sum a = (1.4820432512913737e-05,8.103614437148337e-06,1.9638478748926218e-07)
sum e = 0.010510361574674344
sum de = 8.413291305204069e-05
Info: CFL hydro = 0.0021773274370307043 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021773274370307043 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9765e+04 | 12514 | 1 | 1.569e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.432335871305526 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9128819971791808, dt = 0.0021773274370307043 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1073.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 384.64 us (95.3%)
LB move op cnt : 0
LB apply : 4.10 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.679159341537478
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5355696158909522e-05,-8.045938810661372e-06,2.5005308850487432e-08)
sum a = (1.4864416667568197e-05,8.193590131043742e-06,2.0846812228408927e-07)
sum e = 0.010512324586351096
sum de = 8.32082458753582e-05
Info: CFL hydro = 0.002154484457212528 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002154484457212528 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.5231e+04 | 12514 | 1 | 1.468e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.38624750432739 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9150593246162115, dt = 0.002154484457212528 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1332.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 382.77 us (95.3%)
LB move op cnt : 0
LB apply : 4.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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.6798785360396358
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5323623120280284e-05,-8.02818789480179e-06,2.5467604867962436e-08)
sum a = (1.4909663001087032e-05,8.198987273912613e-06,2.3168887943523773e-07)
sum e = 0.01051423585854811
sum de = 8.218356140448553e-05
Info: CFL hydro = 0.0021823018096148515 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021823018096148515 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4422e+04 | 12514 | 1 | 1.482e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.32451839410198 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9172138090734241, dt = 0.0021823018096148515 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.2%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 387.95 us (95.5%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 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.6834745085504235
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5291036994471237e-05,-8.010289416006629e-06,2.5998234309005124e-08)
sum a = (1.4943354349337605e-05,8.147498655946642e-06,2.483653148049042e-07)
sum e = 0.010516180143511734
sum de = 8.108580627379862e-05
Info: CFL hydro = 0.0021477716193741728 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021477716193741728 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4026e+04 | 12514 | 1 | 1.489e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.75119947101303 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.919396110883039, dt = 0.0021477716193741728 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 373.69 us (95.0%)
LB move op cnt : 0
LB apply : 4.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 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.6846731660540195
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.525890531975642e-05,-7.99284663147667e-06,2.6549862790922274e-08)
sum a = (1.4995080132242357e-05,8.034256419842075e-06,2.64519408089572e-07)
sum e = 0.01051808177380769
sum de = 7.985134438370208e-05
Info: CFL hydro = 0.002165400199237021 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002165400199237021 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3944e+04 | 12514 | 1 | 1.491e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.865857294112374 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9215438825024131, dt = 0.002165400199237021 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1442.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 398.50 us (95.4%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 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.683474508550423
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5226379422666223e-05,-7.975570860255043e-06,2.7140000821448268e-08)
sum a = (1.505947310402275e-05,7.85827170302199e-06,2.691343792851974e-07)
sum e = 0.010520012900738816
sum de = 7.849238975707574e-05
Info: CFL hydro = 0.0021480739848479848 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021480739848479848 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3393e+04 | 12514 | 1 | 1.501e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.94886817881467 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9237092827016502, dt = 0.0012907172983502857 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1352.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.2%)
LB compute : 366.21 us (95.1%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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.6822758510468274
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5206872181949899e-05,-7.965618591703298e-06,2.749237385014553e-08)
sum a = (1.5094268741726841e-05,7.717739205890418e-06,2.7639451261201514e-07)
sum e = 0.01052102554931507
sum de = 7.754560159022969e-05
Info: CFL hydro = 0.0021405868100034544 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021405868100034544 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.5187e+04 | 12514 | 1 | 1.469e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.63087908557172 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 567 [SPH][rank=0]
Info: time since start : 235.36490812600002 (s) [SPH][rank=0]
Info: dump to orztang_00037.vtk [VTK Dump][rank=0]
- took 2.55 ms, bandwidth = 262.39 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 973.03 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 970.94 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 965.03 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.005775328000000001 s
Info: compute_slice took 972.29 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.0021405868100034544 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.98 us (2.1%)
patch tree reduce : 1483.00 ns (0.3%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 490.20 us (95.2%)
LB move op cnt : 0
LB apply : 3.72 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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.680118267540354
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5174539133708701e-05,-7.949188794817961e-06,2.8088705688036938e-08)
sum a = (1.513085427714626e-05,7.456830759989121e-06,2.948483706456477e-07)
sum e = 0.010523074989808893
sum de = 7.627804872712111e-05
Info: CFL hydro = 0.002134932850487793 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002134932850487793 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9437e+04 | 12514 | 1 | 1.575e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.917348845694285 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.927140586810004, dt = 0.002134932850487793 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 374.40 us (95.2%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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.6784401470353205
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5142196618599301e-05,-7.933548210456763e-06,2.8737938202991667e-08)
sum a = (1.5163452834888235e-05,7.213660107608584e-06,3.1298571280193306e-07)
sum e = 0.010524998003468513
sum de = 7.47488942430496e-05
Info: CFL hydro = 0.0020852946215350753 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020852946215350753 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3476e+04 | 12514 | 1 | 1.499e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.26852507611728 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9292755196604918, dt = 0.0020852946215350753 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 385.54 us (95.1%)
LB move op cnt : 0
LB apply : 4.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (74.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.5110541554093058e-05,-7.918765180340513e-06,2.9409966630309538e-08)
sum a = (1.515879000125541e-05,6.986299369808237e-06,3.279336369744793e-07)
sum e = 0.010526879758467535
sum de = 7.342878387117349e-05
Info: CFL hydro = 0.0021153113729946767 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021153113729946767 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.2764e+04 | 12514 | 1 | 1.512e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.64927431115757 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9313608142820269, dt = 0.0021153113729946767 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 369.95 us (95.2%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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.6805977305417934
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5078480854893403e-05,-7.904224038890002e-06,3.011923379512897e-08)
sum a = (1.5109279167011225e-05,6.782119008400456e-06,3.353293699213062e-07)
sum e = 0.01052881937522964
sum de = 7.228778072673842e-05
Info: CFL hydro = 0.0020909847877815836 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020909847877815836 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4224e+04 | 12514 | 1 | 1.486e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.25257998819598 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9334761256550216, dt = 0.0020909847877815836 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 384.08 us (95.2%)
LB move op cnt : 0
LB apply : 4.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.70 us (78.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.5046939947416162e-05,-7.890258683734853e-06,3.082822454553763e-08)
sum a = (1.5031436347362072e-05,6.571102397099425e-06,3.4232286733040355e-07)
sum e = 0.010530744852848245
sum de = 7.136609705465099e-05
Info: CFL hydro = 0.0020501051993544097 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020501051993544097 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3073e+04 | 12514 | 1 | 1.506e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.97119104968339 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9355671104428032, dt = 0.0020501051993544097 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 412.85 us (95.5%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (75.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.501620530568264e-05,-7.877007848807144e-06,3.153733408405716e-08)
sum a = (1.4933213722224989e-05,6.352132240313054e-06,3.4909509406165025e-07)
sum e = 0.010532649273779391
sum de = 7.0698577500041e-05
Info: CFL hydro = 0.002120058974247879 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002120058974247879 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1035e+04 | 12514 | 1 | 1.544e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.791720832214196 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9376172156421576, dt = 0.002120058974247879 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1272.00 ns (0.3%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 401.45 us (95.4%)
LB move op cnt : 0
LB apply : 3.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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.6849128975547405
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4984646695273613e-05,-7.863765409774018e-06,3.2284378159705026e-08)
sum a = (1.4790728096080732e-05,6.14367831569621e-06,3.485138211956797e-07)
sum e = 0.010534661244120587
sum de = 7.024478199521306e-05
Info: CFL hydro = 0.0021048995228550933 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021048995228550933 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4420e+04 | 12514 | 1 | 1.482e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.4871156456105 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9397372746164054, dt = 0.0021048995228550933 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1073.00 ns (0.3%)
LB compute : 407.65 us (95.6%)
LB move op cnt : 0
LB apply : 4.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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.685392360556177
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4953664737726798e-05,-7.85105455152601e-06,3.3017348569270054e-08)
sum a = (1.4590025195528492e-05,5.978717484253369e-06,3.4862519448833085e-07)
sum e = 0.010536669157905422
sum de = 6.996956070939196e-05
Info: CFL hydro = 0.0021540584105911144 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021540584105911144 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.5280e+04 | 12514 | 1 | 1.467e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.639960365483454 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9418421741392605, dt = 0.0021540584105911144 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 992.00 ns (0.3%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 376.90 us (95.3%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 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.6863512865590544
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4922448200963308e-05,-7.838349657831555e-06,3.3768424816396835e-08)
sum a = (1.4341880670135252e-05,5.823286952909571e-06,3.542800538948175e-07)
sum e = 0.010538763334419003
sum de = 6.98597446007295e-05
Info: CFL hydro = 0.0021285323309547443 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021285323309547443 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.5249e+04 | 12514 | 1 | 1.468e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.8269131008855 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9439962325498517, dt = 0.0021285323309547443 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1163.00 ns (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 384.33 us (95.4%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
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.686830749560493
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4892188303171262e-05,-7.826122006501511e-06,3.452861181405707e-08)
sum a = (1.4023485036978908e-05,5.716695152036715e-06,3.6515361485769057e-07)
sum e = 0.010540849939053033
sum de = 6.985640872871254e-05
Info: CFL hydro = 0.0021803156745112354 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021803156745112354 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4901e+04 | 12514 | 1 | 1.474e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.987354043558746 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9461247648808064, dt = 0.0021803156745112354 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.60 us (2.6%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1693.00 ns (0.4%)
LB compute : 374.28 us (93.5%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (72.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.6834745085504252
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4861951536633465e-05,-7.81377124850284e-06,3.533633432716688e-08)
sum a = (1.3604629633647788e-05,5.637574336855862e-06,3.6136030202737556e-07)
sum e = 0.01054303384619761
sum de = 6.997155916854633e-05
Info: CFL hydro = 0.0022158787309682557 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022158787309682557 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4871e+04 | 12514 | 1 | 1.474e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.23318949979004 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9483050805553177, dt = 0.0016949194446828075 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 392.40 us (95.3%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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.6822758510468274
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4839349403830347e-05,-7.804302268314794e-06,3.5944675619898496e-08)
sum a = (1.3228033565045296e-05,5.569458760020641e-06,3.48714187072746e-07)
sum e = 0.010544674051087633
sum de = 7.008337366513171e-05
Info: CFL hydro = 0.002186710234886854 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002186710234886854 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4851e+04 | 12514 | 1 | 1.475e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.3724211192971 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 579 [SPH][rank=0]
Info: time since start : 241.25325246900002 (s) [SPH][rank=0]
Info: dump to orztang_00038.vtk [VTK Dump][rank=0]
- took 2.52 ms, bandwidth = 265.81 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 982.82 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 966.90 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 958.15 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.005796087 s
Info: compute_slice took 969.00 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.002186710234886854 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.39 us (1.9%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 462.77 us (95.0%)
LB move op cnt : 0
LB apply : 4.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (74.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.6827553140482667
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4810742677445937e-05,-7.792181201048768e-06,3.669649542875226e-08)
sum a = (1.2695657637008863e-05,5.47207123996506e-06,3.36263623839892e-07)
sum e = 0.010546994063641096
sum de = 7.044832301500168e-05
Info: CFL hydro = 0.002250376381076811 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002250376381076811 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.1552e+04 | 12514 | 1 | 1.534e-01 | 0.0% | 1.8% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.30156820459848 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9521867102348873, dt = 0.002250376381076811 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 389.43 us (95.5%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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.681316925043951
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4782754745302616e-05,-7.779973460318796e-06,3.7439602258630944e-08)
sum a = (1.2092372665660572e-05,5.347464175209101e-06,3.1859653973358665e-07)
sum e = 0.010549356652680286
sum de = 7.082327941096748e-05
Info: CFL hydro = 0.002236849538017866 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002236849538017866 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3805e+04 | 12514 | 1 | 1.493e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.25373049125432 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9544370866159642, dt = 0.002236849538017866 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1142.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 375.99 us (95.1%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 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.6813169250439506
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4756384736217288e-05,-7.768152193946445e-06,3.813237598695095e-08)
sum a = (1.141818462157146e-05,5.224743080635012e-06,2.863237470828634e-07)
sum e = 0.010551732211499524
sum de = 7.143025865272576e-05
Info: CFL hydro = 0.0022140234758959093 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022140234758959093 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4917e+04 | 12514 | 1 | 1.474e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.64352855463884 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.956673936153982, dt = 0.0022140234758959093 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1493.00 ns (0.4%)
LB compute : 392.79 us (95.3%)
LB move op cnt : 0
LB apply : 4.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 19.65 us (94.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.68131692504395
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4731858636020486e-05,-7.756721744422342e-06,3.873020879403279e-08)
sum a = (1.0705375803747137e-05,5.059402299388054e-06,2.504514130868562e-07)
sum e = 0.010554123352884031
sum de = 7.22015294264716e-05
Info: CFL hydro = 0.0021930660164685973 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021930660164685973 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3772e+04 | 12514 | 1 | 1.494e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.356590706017435 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9588879596298779, dt = 0.0021930660164685973 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1022.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 379.33 us (95.3%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 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.681077193543231
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4709170127879936e-05,-7.745809175361813e-06,3.923975418204902e-08)
sum a = (1.0017408937683316e-05,4.833216569351809e-06,1.8556084202474076e-07)
sum e = 0.010556533616282508
sum de = 7.310668721043511e-05
Info: CFL hydro = 0.002239319562289494 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002239319562289494 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.5224e+04 | 12514 | 1 | 1.468e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.767742882578865 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9610810256463466, dt = 0.002239319562289494 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.1%)
patch tree reduce : 1002.00 ns (0.2%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 418.49 us (95.9%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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.6808374620425126
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.46874923264597e-05,-7.73523407906791e-06,3.958412955249727e-08)
sum a = (9.375005185373162e-06,4.536606341125184e-06,1.116634314912963e-07)
sum e = 0.010559048879447213
sum de = 7.41301416908172e-05
Info: CFL hydro = 0.0022631972177352914 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022631972177352914 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3160e+04 | 12514 | 1 | 1.505e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.57195067853555 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9633203452086361, dt = 0.0022631972177352914 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.9%)
patch tree reduce : 1062.00 ns (0.2%)
gen split merge : 852.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.2%)
LB compute : 590.64 us (96.7%)
LB move op cnt : 0
LB apply : 4.35 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.89 us (80.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.6779606840338825
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.466699411445266e-05,-7.72529894676218e-06,3.975410596146598e-08)
sum a = (8.746149213366068e-06,4.207667737480593e-06,4.1518442857297634e-08)
sum e = 0.010561631223831854
sum de = 7.512409316960493e-05
Info: CFL hydro = 0.0022212386429946184 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022212386429946184 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.2986e+04 | 12514 | 1 | 1.715e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.51941289632912 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9655835424263713, dt = 0.0022212386429946184 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1452.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 411.12 us (95.6%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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.675323637525971
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.464827844238536e-05,-7.716324939053004e-06,3.976695235958026e-08)
sum a = (8.200379684766828e-06,3.896786416701909e-06,-5.4389203322711324e-09)
sum e = 0.010564197337675317
sum de = 7.593399819764121e-05
Info: CFL hydro = 0.002180655817738968 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002180655817738968 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4377e+04 | 12514 | 1 | 1.483e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.91677350925024 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.967804781069366, dt = 0.002180655817738968 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.4%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 410.82 us (95.4%)
LB move op cnt : 0
LB apply : 4.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (66.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.6741249800223743
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4631002378901952e-05,-7.708172659884562e-06,3.9702940191470874e-08)
sum a = (7.764187876347354e-06,3.564678725977207e-06,-4.042832925229778e-08)
sum e = 0.01056675711971236
sum de = 7.648616011290872e-05
Info: CFL hydro = 0.002158448901685179 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002158448901685179 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf 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 : 53.36803032048704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9699854368871049, dt = 0.002158448901685179 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1202.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 : 380.24 us (95.2%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 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.6719673965159023
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4614719368209913e-05,-7.700840589287454e-06,3.957752777953889e-08)
sum a = (7.470287290855305e-06,3.2379039521180263e-06,-5.731190972132006e-08)
sum e = 0.010569332310150151
sum de = 7.669742796218374e-05
Info: CFL hydro = 0.002135250128538917 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002135250128538917 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4628e+04 | 12514 | 1 | 1.479e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.54861043158666 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9721438857887901, dt = 0.002135250128538917 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 1272.00 ns (0.2%)
gen split merge : 752.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.1%)
LB compute : 761.04 us (97.5%)
LB move op cnt : 0
LB apply : 3.88 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (73.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.6683714240051133
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4599085621010058e-05,-7.694279517783749e-06,3.943693134407963e-08)
sum a = (7.3178406486124045e-06,2.950359453105474e-06,-6.044764946325448e-08)
sum e = 0.010571916629129185
sum de = 7.651557050002124e-05
Info: CFL hydro = 0.0021163817442837103 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021163817442837103 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4778e+04 | 12514 | 1 | 1.476e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.07608864731987 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.974279135917329, dt = 0.0007208640826715795 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 403.70 us (95.7%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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.6678919610036758
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4593973208379902e-05,-7.692459699337304e-06,3.93900090103564e-08)
sum a = (7.3172869883021985e-06,2.8589651755571737e-06,-6.250493489400831e-08)
sum e = 0.010572660165849177
sum de = 7.632679568523158e-05
Info: CFL hydro = 0.0021118421420440077 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021118421420440077 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.6679e+04 | 12514 | 1 | 1.444e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.975250885132077 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 591 [SPH][rank=0]
Info: time since start : 247.14371269900002 (s) [SPH][rank=0]
Info: dump to orztang_00039.vtk [VTK Dump][rank=0]
- took 2.47 ms, bandwidth = 270.37 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 973.65 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 970.46 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 967.35 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.005646900000000001 s
Info: compute_slice took 973.39 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.0021118421420440077 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.17 us (1.8%)
patch tree reduce : 1563.00 ns (0.3%)
gen split merge : 1312.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 487.82 us (95.1%)
LB move op cnt : 0
LB apply : 4.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (77.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.668131692504396
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4578520452909461e-05,-7.686454957622396e-06,3.925726694317389e-08)
sum a = (7.379037767300524e-06,2.6307338115787158e-06,-7.796529234921102e-08)
sum e = 0.010575398536628462
sum de = 7.578226771785242e-05
Info: CFL hydro = 0.002099116592681376 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002099116592681376 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.5009e+04 | 12514 | 1 | 1.472e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.64567308198699 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9771118421420445, dt = 0.002099116592681376 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.28 us (1.6%)
patch tree reduce : 1233.00 ns (0.3%)
gen split merge : 1142.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 420.80 us (95.1%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 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.6642959884928894
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.456296578834537e-05,-7.681173734933978e-06,3.9077283787147785e-08)
sum a = (7.5973450919135905e-06,2.4501369042869295e-06,-8.883372782532353e-08)
sum e = 0.010578022241463168
sum de = 7.46905710789039e-05
Info: CFL hydro = 0.0022404861247659236 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022404861247659236 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3066e+04 | 12514 | 1 | 1.507e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.161298832614804 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9792109587347259, dt = 0.0022404861247659236 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 454.83 us (95.8%)
LB move op cnt : 0
LB apply : 3.94 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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.661658941984977
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4545714915818176e-05,-7.675873784178637e-06,3.8866845995922036e-08)
sum a = (7.954017993946599e-06,2.3439101577672713e-06,-9.438594826144013e-08)
sum e = 0.010580878705191662
sum de = 7.330996061637891e-05
Info: CFL hydro = 0.0022347807338437982 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022347807338437982 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4858e+04 | 12514 | 1 | 1.475e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.69414426560797 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9814514448594918, dt = 0.0022347807338437982 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 391.58 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.56 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.661658941984976
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4527539869304582e-05,-7.670754658692028e-06,3.864969426077752e-08)
sum a = (8.436145844652158e-06,2.313019311516013e-06,-1.0608924865726451e-07)
sum e = 0.01058374278532399
sum de = 7.16339089502379e-05
Info: CFL hydro = 0.0022311463552160144 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022311463552160144 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.5610e+04 | 12514 | 1 | 1.462e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.03861490101328 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9836862255933355, dt = 0.0022311463552160144 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 381.30 us (95.2%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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.6621384049864143
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4508178868235347e-05,-7.665628491219383e-06,3.839991646518467e-08)
sum a = (8.992016578245858e-06,2.3394896165610893e-06,-1.1707887217767462e-07)
sum e = 0.010586636096832174
sum de = 6.972705719643267e-05
Info: CFL hydro = 0.002211525523936539 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002211525523936539 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4506e+04 | 12514 | 1 | 1.481e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.240152400924856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9859173719485516, dt = 0.002211525523936539 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1403.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 350.98 us (94.8%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 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.660700015982099
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4487672679580123e-05,-7.660425120657165e-06,3.812873382181881e-08)
sum a = (9.523668782955263e-06,2.3999688645540095e-06,-1.0732741171784007e-07)
sum e = 0.010589533809842549
sum de = 6.761644841119085e-05
Info: CFL hydro = 0.0021943899000151116 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021943899000151116 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.5402e+04 | 12514 | 1 | 1.465e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.333586780033094 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9881288974724881, dt = 0.0021943899000151116 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.75 us (1.6%)
patch tree reduce : 1362.00 ns (0.3%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.3%)
LB compute : 394.75 us (94.9%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 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.6607000159821013
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4466186155781643e-05,-7.655091777520153e-06,3.790399843540167e-08)
sum a = (1.0025647309481339e-05,2.4581054624727375e-06,-9.393074264682059e-08)
sum e = 0.010592439503796333
sum de = 6.536221649166944e-05
Info: CFL hydro = 0.002179300415472747 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002179300415472747 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.5030e+04 | 12514 | 1 | 1.472e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.67726566739311 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9903232873725032, dt = 0.002179300415472747 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.2%)
patch tree reduce : 1193.00 ns (0.2%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1332.00 ns (0.3%)
LB compute : 486.99 us (96.0%)
LB move op cnt : 0
LB apply : 4.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.94 us (79.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.659741089979224
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4443786490130283e-05,-7.649671040082581e-06,3.771399388657746e-08)
sum a = (1.0490437299978273e-05,2.485628270767025e-06,-7.558014383366091e-08)
sum e = 0.010595353516675296
sum de = 6.301701345998689e-05
Info: CFL hydro = 0.002166207511464429 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002166207511464429 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3334e+04 | 12514 | 1 | 1.502e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.24517463815321 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.992502587787976, dt = 0.002166207511464429 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 393.94 us (95.5%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 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.6609397474828196
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4420555567542565e-05,-7.644256663218297e-06,3.7570267345096424e-08)
sum a = (1.089372258783328e-05,2.500658870794264e-06,-4.3713384596726015e-08)
sum e = 0.010598275987554548
sum de = 6.061290792578109e-05
Info: CFL hydro = 0.0022543753934392593 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022543753934392593 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.4470e+04 | 12514 | 1 | 1.481e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.63907424579045 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9946687952994404, dt = 0.0022543753934392593 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 1243.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 376.76 us (95.1%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 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.658782163976346
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4395560227588085e-05,-7.63860295969344e-06,3.7506235973109855e-08)
sum a = (1.1250702401678083e-05,2.4849853039778988e-06,-1.231876932531632e-08)
sum e = 0.010601356665352942
sum de = 5.811604868730991e-05
Info: CFL hydro = 0.002205845279732849 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002205845279732849 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.5253e+04 | 12514 | 1 | 1.468e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.2894721177561 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9969231706928797, dt = 0.002205845279732849 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1684.00 ns (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 379.80 us (95.2%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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.6547067284641193
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4370340535547375e-05,-7.633139133641634e-06,3.751445029801879e-08)
sum a = (1.1583953044779224e-05,2.4344038896000326e-06,2.625045153454139e-08)
sum e = 0.010604374373389371
sum de = 5.5695617558706594e-05
Info: CFL hydro = 0.002250635652991855 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002250635652991855 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.3742e+04 | 12514 | 1 | 1.494e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.14050099074113 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9991290159726126, dt = 0.0008709840273878333 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 12514 min = 12514 [LoadBalance][rank=0]
Info: Loadbalance 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.4%)
patch tree reduce : 1183.00 ns (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 409.70 us (95.5%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 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.651110755953333
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.43598835477924e-05,-7.631074594124768e-06,3.757985288890582e-08)
sum a = (1.1705624527808314e-05,2.4125535881306516e-06,4.462712550673787e-08)
sum e = 0.01060544143235012
sum de = 5.4741533068522466e-05
Info: CFL hydro = 0.0022452469792345864 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022452469792345864 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 8.7975e+04 | 12514 | 1 | 1.422e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.043206803499444 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 603 [SPH][rank=0]
Info: time since start : 253.009165469 (s) [SPH][rank=0]
Info: dump to orztang_00040.vtk [VTK Dump][rank=0]
- took 2.61 ms, bandwidth = 256.17 MB/s
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 969.63 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: unity, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 971.27 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 962.91 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.006684173000000001 s
Info: compute_slice took 976.25 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 19.451 seconds)
Estimated memory usage: 1550 MB