From f88dc6850a35077f0d17c835007b319b72d1ae2a Mon Sep 17 00:00:00 2001 From: Jan Ferdinand Sauer Date: Thu, 10 Aug 2023 15:13:55 +0200 Subject: [PATCH] remove placeholder profiling reports --- triton-vm/src/profiler.rs | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/triton-vm/src/profiler.rs b/triton-vm/src/profiler.rs index d4930919..bbc91711 100644 --- a/triton-vm/src/profiler.rs +++ b/triton-vm/src/profiler.rs @@ -417,18 +417,6 @@ pub struct Report { } impl Report { - pub fn placeholder() -> Self { - Report { - name: "".to_string(), - tasks: vec![], - total_time: Duration::ZERO, - category_times: HashMap::new(), - cycle_count: None, - padded_height: None, - fri_domain_len: None, - } - } - fn display_time_aligned(time: Duration) -> String { let unaligned_time = format!("{time:.2?}"); let time_components: Vec<_> = unaligned_time.split('.').collect();