mirror of
https://github.com/arnaucube/hyperplonk.git
synced 2026-01-10 16:11:29 +01:00
more parallelization
This commit is contained in:
@@ -160,16 +160,9 @@ fn fix_one_variable_helper<F: Field>(data: &[F], nv: usize, point: &F) -> Vec<F>
|
||||
}
|
||||
|
||||
#[cfg(feature = "parallel")]
|
||||
if nv >= 13 {
|
||||
// on my computer we parallelization doesn't help till nv >= 13
|
||||
res.par_iter_mut().enumerate().for_each(|(i, x)| {
|
||||
*x = data[i << 1] + (data[(i << 1) + 1] - data[i << 1]) * point;
|
||||
});
|
||||
} else {
|
||||
for i in 0..(1 << (nv - 1)) {
|
||||
res[i] = data[i << 1] + (data[(i << 1) + 1] - data[i << 1]) * point;
|
||||
}
|
||||
}
|
||||
res.par_iter_mut().enumerate().for_each(|(i, x)| {
|
||||
*x = data[i << 1] + (data[(i << 1) + 1] - data[i << 1]) * point;
|
||||
});
|
||||
|
||||
res
|
||||
}
|
||||
@@ -279,16 +272,9 @@ fn fix_last_variable_helper<F: Field>(data: &[F], nv: usize, point: &F) -> Vec<F
|
||||
}
|
||||
|
||||
#[cfg(feature = "parallel")]
|
||||
if nv >= 13 {
|
||||
// on my computer we parallelization doesn't help till nv >= 13
|
||||
res.par_iter_mut().enumerate().for_each(|(i, x)| {
|
||||
*x = data[i] + (data[i + half_len] - data[i]) * point;
|
||||
});
|
||||
} else {
|
||||
for b in 0..(1 << (nv - 1)) {
|
||||
res[b] = data[b] + (data[b + half_len] - data[b]) * point;
|
||||
}
|
||||
}
|
||||
res.par_iter_mut().enumerate().for_each(|(i, x)| {
|
||||
*x = data[i] + (data[i + half_len] - data[i]) * point;
|
||||
});
|
||||
|
||||
res
|
||||
}
|
||||
|
||||
@@ -17,6 +17,7 @@ use arithmetic::{build_eq_x_r_vec, DenseMultilinearExtension, VPAuxInfo, Virtual
|
||||
use ark_ec::{msm::VariableBaseMSM, PairingEngine, ProjectiveCurve};
|
||||
use ark_ff::PrimeField;
|
||||
use ark_std::{end_timer, log2, start_timer, One, Zero};
|
||||
use rayon::prelude::{IntoParallelRefIterator, ParallelIterator};
|
||||
use std::{marker::PhantomData, sync::Arc};
|
||||
use transcript::IOPTranscript;
|
||||
|
||||
@@ -87,13 +88,15 @@ where
|
||||
end_timer!(timer);
|
||||
|
||||
let timer = start_timer!(|| format!("compute tilde eq for {} points", points.len()));
|
||||
let mut tilde_eqs = vec![];
|
||||
for point in points.iter() {
|
||||
let eq_b_zi = build_eq_x_r_vec(point)?;
|
||||
tilde_eqs.push(Arc::new(DenseMultilinearExtension::from_evaluations_vec(
|
||||
num_var, eq_b_zi,
|
||||
)));
|
||||
}
|
||||
let tilde_eqs: Vec<Arc<DenseMultilinearExtension<<E as PairingEngine>::Fr>>> = points
|
||||
.par_iter()
|
||||
.map(|point| {
|
||||
let eq_b_zi = build_eq_x_r_vec(point).unwrap();
|
||||
Arc::new(DenseMultilinearExtension::from_evaluations_vec(
|
||||
num_var, eq_b_zi,
|
||||
))
|
||||
})
|
||||
.collect();
|
||||
end_timer!(timer);
|
||||
|
||||
// built the virtual polynomial for SumCheck
|
||||
|
||||
Reference in New Issue
Block a user