Skip to content

Commit

Permalink
chore: fix rayon wasm
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanpwang committed Feb 1, 2024
1 parent 9fc1f8d commit 26a20be
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion halo2_proofs/src/plonk/evaluation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@
#[cfg(feature = "profile")]
use ark_std::{end_timer, start_timer};
use ff::{Field, PrimeField, WithSmallOrderMulGroup};
use rayon::iter::{IntoParallelIterator, ParallelIterator};
#[cfg(not(feature = "logup_skip_inv"))]
use rayon::slice::ParallelSlice;

#[cfg(not(feature = "logup_skip_inv"))]
use crate::arithmetic::par_invert;
use crate::multicore::{self, IntoParallelIterator, ParallelIterator};
use crate::{
arithmetic::{parallelize, CurveAffine},
multicore,
plonk::{mv_lookup, permutation, Any, ProvingKey},
poly::{Basis, Coeff, ExtendedLagrangeCoeff, LagrangeCoeff, Polynomial, Rotation},
};
Expand Down

0 comments on commit 26a20be

Please sign in to comment.