From 2c10bba29807fc2b068a4598dc32e5579386d662 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20L=C3=B6schner?= Date: Tue, 11 Jul 2023 23:52:39 +0200 Subject: [PATCH] Change profile label --- README.md | 2 +- splashsurf/README.md | 2 +- splashsurf_lib/src/reconstruction.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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)?;