Skip to content

Commit

Permalink
fix: remove parallel profiling (#172)
Browse files Browse the repository at this point in the history
* fix: remove parallel profiling

* fix: remove parallel profiling
  • Loading branch information
eigmax authored Dec 20, 2023
1 parent df72909 commit 76a542a
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions starky/src/stark_gen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,6 @@ impl<'a, M: MerkleTree> StarkProof<M> {
}
}

#[time_profiler()]
pub fn build_Zh_Inv<T: FieldExtension>(
nBits: usize,
extend_bits: usize,
Expand Down Expand Up @@ -655,7 +654,6 @@ fn calculate_H1H2<F: FieldExtension>(f: Vec<F>, t: Vec<F>) -> (Vec<F>, Vec<F>) {
(h1, h2)
}

#[time_profiler()]
fn calculate_Z<F: FieldExtension>(num: Vec<F>, den: Vec<F>) -> Vec<F> {
let N = num.len();
assert_eq!(N, den.len());
Expand Down Expand Up @@ -753,7 +751,6 @@ pub fn merkelize<M: MerkleTree>(
Ok(tree)
}

#[time_profiler()]
pub fn calculate_exps<F: FieldExtension>(
ctx: &mut StarkContext<F>,
starkinfo: &StarkInfo,
Expand Down

0 comments on commit 76a542a

Please sign in to comment.