From 76a542a53dc0ee0f713e13890df047e9b7cdee67 Mon Sep 17 00:00:00 2001 From: Stephen <81497928+eigmax@users.noreply.github.com> Date: Wed, 20 Dec 2023 11:29:33 +0800 Subject: [PATCH] fix: remove parallel profiling (#172) * fix: remove parallel profiling * fix: remove parallel profiling --- starky/src/stark_gen.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/starky/src/stark_gen.rs b/starky/src/stark_gen.rs index ef451d22..a7992919 100644 --- a/starky/src/stark_gen.rs +++ b/starky/src/stark_gen.rs @@ -576,7 +576,6 @@ impl<'a, M: MerkleTree> StarkProof { } } -#[time_profiler()] pub fn build_Zh_Inv( nBits: usize, extend_bits: usize, @@ -655,7 +654,6 @@ fn calculate_H1H2(f: Vec, t: Vec) -> (Vec, Vec) { (h1, h2) } -#[time_profiler()] fn calculate_Z(num: Vec, den: Vec) -> Vec { let N = num.len(); assert_eq!(N, den.len()); @@ -753,7 +751,6 @@ pub fn merkelize( Ok(tree) } -#[time_profiler()] pub fn calculate_exps( ctx: &mut StarkContext, starkinfo: &StarkInfo,