diff --git a/README.md b/README.md index 1d40c12..9d973ff 100644 --- a/README.md +++ b/README.md @@ -139,7 +139,7 @@ With these parameters, a scene with 13353401 particles is reconstructed in less [23:45:01.188][INFO] surface reconstruction: 100.00%, 2756.54ms avg, 1 call (total: 2.757s) [23:45:01.188][INFO] loading particle positions: 3.00%, 82.68ms avg, 1 call (total: 0.083s) [23:45:01.188][INFO] compute minimum enclosing aabb: 0.21%, 5.91ms avg, 1 call (total: 0.006s) -[23:45:01.188][INFO] surface reconstruction prototype: 88.17%, 2430.35ms avg, 1 call (total: 2.430s) +[23:45:01.188][INFO] surface reconstruction subdomain-grid: 88.17%, 2430.35ms avg, 1 call (total: 2.430s) [23:45:01.188][INFO] decomposition: 3.29%, 80.06ms avg, 1 call (total: 0.080s) [23:45:01.188][INFO] classifying particles: 21.22%, 16.99ms avg, 1 call (total: 0.017s) [23:45:01.188][INFO] merging TL per cell particle counters: 0.18%, 0.14ms avg, 1 call (total: 0.000s) diff --git a/splashsurf/README.md b/splashsurf/README.md index 47f0d3a..739bb6e 100644 --- a/splashsurf/README.md +++ b/splashsurf/README.md @@ -133,7 +133,7 @@ With these parameters, a scene with 13353401 particles is reconstructed in less [23:45:01.188][INFO] surface reconstruction: 100.00%, 2756.54ms avg, 1 call (total: 2.757s) [23:45:01.188][INFO] loading particle positions: 3.00%, 82.68ms avg, 1 call (total: 0.083s) [23:45:01.188][INFO] compute minimum enclosing aabb: 0.21%, 5.91ms avg, 1 call (total: 0.006s) -[23:45:01.188][INFO] surface reconstruction prototype: 88.17%, 2430.35ms avg, 1 call (total: 2.430s) +[23:45:01.188][INFO] surface reconstruction subdomain-grid: 88.17%, 2430.35ms avg, 1 call (total: 2.430s) [23:45:01.188][INFO] decomposition: 3.29%, 80.06ms avg, 1 call (total: 0.080s) [23:45:01.188][INFO] classifying particles: 21.22%, 16.99ms avg, 1 call (total: 0.017s) [23:45:01.188][INFO] merging TL per cell particle counters: 0.18%, 0.14ms avg, 1 call (total: 0.000s) diff --git a/splashsurf_lib/src/reconstruction.rs b/splashsurf_lib/src/reconstruction.rs index 4cbeb7b..a3b6d2e 100644 --- a/splashsurf_lib/src/reconstruction.rs +++ b/splashsurf_lib/src/reconstruction.rs @@ -14,7 +14,7 @@ pub(crate) fn reconstruct_surface_subdomain_grid<'a, I: Index, R: Real>( output_surface: &'a mut SurfaceReconstruction, ) -> Result<(), anyhow::Error> { let mesh = { - profile!("surface reconstruction prototype"); + profile!("surface reconstruction subdomain-grid"); let parameters = initialize_parameters(parameters, &particle_positions, output_surface)?;