pub struct UnivariateZerocheck<'a, 'm, FDomain, PBase, P, CompositionBase, Composition, M, Backend>{ /* private fields */ }
Expand description
A prover that is capable of performing univariate skip.
By recasting skip_rounds
first variables in a multilinear sumcheck into a univariate domain,
it becomes possible to compute all of these rounds in small fields, unlocking significant
performance gains. See zerocheck_univariate_evals
rustdoc for a more detailed explanation.
This struct is an entrypoint to proving all zerochecks instances, univariatized and regular.
“Regular” multilinear case is covered by calling Self::into_regular_zerocheck
right away,
producing a ZerocheckProver
. Univariatized case is handled by using methods from a
UnivariateZerocheckProver
trait, where folding results in a reduced multilinear zerocheck
prover for the remaining rounds.
Implementations§
source§impl<'a, 'm, FDomain, PBase, P, CompositionBase, Composition, M, Backend> UnivariateZerocheck<'a, 'm, FDomain, PBase, P, CompositionBase, Composition, M, Backend>
impl<'a, 'm, FDomain, PBase, P, CompositionBase, Composition, M, Backend> UnivariateZerocheck<'a, 'm, FDomain, PBase, P, CompositionBase, Composition, M, Backend>
pub fn multilinears(&self) -> &Vec<M>
source§impl<'a, 'm, F, FDomain, PBase, P, CompositionBase, Composition, M, Backend> UnivariateZerocheck<'a, 'm, FDomain, PBase, P, CompositionBase, Composition, M, Backend>where
F: Field + ExtensionField<PBase::Scalar> + ExtensionField<FDomain>,
FDomain: Field,
PBase: PackedField<Scalar: ExtensionField<FDomain>> + PackedExtension<FDomain>,
P: PackedFieldIndexable<Scalar = F> + PackedExtension<FDomain>,
CompositionBase: CompositionPolyOS<PBase>,
Composition: CompositionPolyOS<P>,
M: MultilinearPoly<P> + Send + Sync + 'm,
Backend: ComputationBackend,
impl<'a, 'm, F, FDomain, PBase, P, CompositionBase, Composition, M, Backend> UnivariateZerocheck<'a, 'm, FDomain, PBase, P, CompositionBase, Composition, M, Backend>where
F: Field + ExtensionField<PBase::Scalar> + ExtensionField<FDomain>,
FDomain: Field,
PBase: PackedField<Scalar: ExtensionField<FDomain>> + PackedExtension<FDomain>,
P: PackedFieldIndexable<Scalar = F> + PackedExtension<FDomain>,
CompositionBase: CompositionPolyOS<PBase>,
Composition: CompositionPolyOS<P>,
M: MultilinearPoly<P> + Send + Sync + 'm,
Backend: ComputationBackend,
pub fn new( multilinears: Vec<M>, zero_claims: impl IntoIterator<Item = (CompositionBase, Composition)>, zerocheck_challenges: &[F], evaluation_domain_factory: impl EvaluationDomainFactory<FDomain>, switchover_fn: impl Fn(usize) -> usize, backend: &'a Backend, ) -> Result<Self, Error>
pub fn into_regular_zerocheck( self, ) -> Result<ZerocheckProver<'a, FDomain, PBase, P, CompositionBase, Composition, MultilinearWitness<'m, P>, Backend>, Error>
Trait Implementations§
source§impl<'a, 'm, FDomain, PBase, P, CompositionBase: Debug, Composition: Debug, M: Debug, Backend> Debug for UnivariateZerocheck<'a, 'm, FDomain, PBase, P, CompositionBase, Composition, M, Backend>where
FDomain: Field + Debug,
PBase: PackedField + Debug,
P: PackedField + Debug,
Backend: ComputationBackend + Debug,
P::Scalar: Debug,
impl<'a, 'm, FDomain, PBase, P, CompositionBase: Debug, Composition: Debug, M: Debug, Backend> Debug for UnivariateZerocheck<'a, 'm, FDomain, PBase, P, CompositionBase, Composition, M, Backend>where
FDomain: Field + Debug,
PBase: PackedField + Debug,
P: PackedField + Debug,
Backend: ComputationBackend + Debug,
P::Scalar: Debug,
source§impl<'a, 'm, F, FDomain, PBase, P, CompositionBase, Composition, M, Backend> UnivariateZerocheckProver<F> for UnivariateZerocheck<'a, 'm, FDomain, PBase, P, CompositionBase, Composition, M, Backend>where
F: TowerField + ExtensionField<PBase::Scalar> + ExtensionField<FDomain>,
FDomain: TowerField,
PBase: PackedFieldIndexable<Scalar: ExtensionField<FDomain>> + PackedExtension<FDomain, PackedSubfield: PackedFieldIndexable>,
P: PackedFieldIndexable<Scalar = F> + RepackedExtension<PBase> + PackedExtension<FDomain>,
CompositionBase: CompositionPolyOS<PBase>,
Composition: CompositionPolyOS<P>,
M: MultilinearPoly<P> + Send + Sync + 'm,
Backend: ComputationBackend,
impl<'a, 'm, F, FDomain, PBase, P, CompositionBase, Composition, M, Backend> UnivariateZerocheckProver<F> for UnivariateZerocheck<'a, 'm, FDomain, PBase, P, CompositionBase, Composition, M, Backend>where
F: TowerField + ExtensionField<PBase::Scalar> + ExtensionField<FDomain>,
FDomain: TowerField,
PBase: PackedFieldIndexable<Scalar: ExtensionField<FDomain>> + PackedExtension<FDomain, PackedSubfield: PackedFieldIndexable>,
P: PackedFieldIndexable<Scalar = F> + RepackedExtension<PBase> + PackedExtension<FDomain>,
CompositionBase: CompositionPolyOS<PBase>,
Composition: CompositionPolyOS<P>,
M: MultilinearPoly<P> + Send + Sync + 'm,
Backend: ComputationBackend,
source§type RegularZerocheckProver = ZerocheckProver<'a, FDomain, PBase, P, CompositionBase, Composition, Arc<dyn MultilinearPoly<P> + Sync + Send + 'm>, Backend>
type RegularZerocheckProver = ZerocheckProver<'a, FDomain, PBase, P, CompositionBase, Composition, Arc<dyn MultilinearPoly<P> + Sync + Send + 'm>, Backend>
“Regular” prover for the multilinear rounds remaining after the univariate skip.
source§fn domain_size(&self, skip_rounds: usize) -> usize
fn domain_size(&self, skip_rounds: usize) -> usize
Maximal required Lagrange domain size among compositions in this prover.
source§fn execute_univariate_round(
&mut self,
skip_rounds: usize,
max_domain_size: usize,
batch_coeff: F,
) -> Result<LagrangeRoundEvals<F>, Error>
fn execute_univariate_round( &mut self, skip_rounds: usize, max_domain_size: usize, batch_coeff: F, ) -> Result<LagrangeRoundEvals<F>, Error>
Computes the prover message for the univariate round as a univariate polynomial. Read more
source§fn fold_univariate_round(
self,
challenge: F,
) -> Result<Self::RegularZerocheckProver, Error>
fn fold_univariate_round( self, challenge: F, ) -> Result<Self::RegularZerocheckProver, Error>
Folds into a regular multilinear prover for the remaining rounds.
Auto Trait Implementations§
impl<'a, 'm, FDomain, PBase, P, CompositionBase, Composition, M, Backend> Freeze for UnivariateZerocheck<'a, 'm, FDomain, PBase, P, CompositionBase, Composition, M, Backend>where
<FDomain as WithUnderlier>::Underlier: Sized,
<Backend as ComputationBackend>::Vec<P>: Freeze,
impl<'a, 'm, FDomain, PBase, P, CompositionBase, Composition, M, Backend> RefUnwindSafe for UnivariateZerocheck<'a, 'm, FDomain, PBase, P, CompositionBase, Composition, M, Backend>where
<FDomain as WithUnderlier>::Underlier: Sized,
Backend: RefUnwindSafe,
PBase: RefUnwindSafe,
<Backend as ComputationBackend>::Vec<P>: RefUnwindSafe,
M: RefUnwindSafe,
<P as PackedField>::Scalar: RefUnwindSafe,
CompositionBase: RefUnwindSafe,
Composition: RefUnwindSafe,
FDomain: RefUnwindSafe,
impl<'a, 'm, FDomain, PBase, P, CompositionBase, Composition, M, Backend> Send for UnivariateZerocheck<'a, 'm, FDomain, PBase, P, CompositionBase, Composition, M, Backend>
impl<'a, 'm, FDomain, PBase, P, CompositionBase, Composition, M, Backend> Sync for UnivariateZerocheck<'a, 'm, FDomain, PBase, P, CompositionBase, Composition, M, Backend>
impl<'a, 'm, FDomain, PBase, P, CompositionBase, Composition, M, Backend> Unpin for UnivariateZerocheck<'a, 'm, FDomain, PBase, P, CompositionBase, Composition, M, Backend>where
<FDomain as WithUnderlier>::Underlier: Sized,
PBase: Unpin,
<Backend as ComputationBackend>::Vec<P>: Unpin,
M: Unpin,
<P as PackedField>::Scalar: Unpin,
CompositionBase: Unpin,
Composition: Unpin,
FDomain: Unpin,
impl<'a, 'm, FDomain, PBase, P, CompositionBase, Composition, M, Backend> UnwindSafe for UnivariateZerocheck<'a, 'm, FDomain, PBase, P, CompositionBase, Composition, M, Backend>where
<FDomain as WithUnderlier>::Underlier: Sized,
Backend: RefUnwindSafe,
PBase: UnwindSafe,
<Backend as ComputationBackend>::Vec<P>: UnwindSafe,
M: UnwindSafe,
<P as PackedField>::Scalar: UnwindSafe,
CompositionBase: UnwindSafe,
Composition: UnwindSafe,
FDomain: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more