openvm_stark_backend::interaction::fri_log_up

Struct FriLogUpPhase

Source
pub struct FriLogUpPhase<F, Challenge, Challenger> { /* private fields */ }

Implementations§

Source§

impl<F, Challenge, Challenger> FriLogUpPhase<F, Challenge, Challenger>

Source

pub fn new(log_up_params: LogUpSecurityParameters) -> Self

Source§

impl<F, Challenge, Challenger> FriLogUpPhase<F, Challenge, Challenger>
where F: Field, Challenge: ExtensionField<F>, Challenger: FieldChallenger<F>,

Source

pub fn generate_after_challenge_trace( all_interactions: &[SymbolicInteraction<F>], trace_view: &PairView<&'_ RowMajorMatrix<F>, F>, permutation_randomness: &[Challenge; 2], interaction_partitions: &[Vec<usize>], ) -> Option<RowMajorMatrix<Challenge>>
where F: Field, Challenge: ExtensionField<F>,

Generate the permutation trace for a chip given the main trace. The permutation randomness is only available after the main trace from all chips involved in interactions have been committed.

  • partitioned_main is the main trace, partitioned into several matrices of the same height

Returns the permutation trace as a matrix of extension field elements.

§Panics
  • If partitioned_main is empty.

Trait Implementations§

Source§

impl<F, Challenge, Challenger> RapPhaseSeq<F, Challenge, Challenger> for FriLogUpPhase<F, Challenge, Challenger>
where F: Field, Challenge: ExtensionField<F>, Challenger: FieldChallenger<F> + GrindingChallenger<Witness = F>,

Source§

const ID: RapPhaseSeqKind = RapPhaseSeqKind::FriLogUp

Source§

type PartialProof = FriLogUpPartialProof<F>

Source§

type PartialProvingKey = FriLogUpProvingKey

Preprocessed data necessary for the RAP partial proving
Source§

type Error = FriLogUpError

Source§

fn log_up_security_params(&self) -> &LogUpSecurityParameters

Source§

fn generate_pk_per_air( &self, symbolic_constraints_per_air: &[SymbolicConstraints<F>], max_constraint_degree: usize, ) -> Vec<Self::PartialProvingKey>

The protocol parameters for the challenge phases may depend on the AIR constraints.
Source§

fn partially_prove( &self, challenger: &mut Challenger, constraints_per_air: &[&SymbolicConstraints<F>], params_per_air: &[&FriLogUpProvingKey], trace_view_per_air: &[PairView<&'_ RowMajorMatrix<F>, F>], ) -> Option<(Self::PartialProof, RapPhaseProverData<Challenge>)>

Partially prove the challenge phases, Read more
Source§

fn partially_verify<Commitment: Clone>( &self, challenger: &mut Challenger, partial_proof: Option<&Self::PartialProof>, exposed_values_per_phase_per_air: &[Vec<Vec<Challenge>>], commitment_per_phase: &[Commitment], _permutation_opened_values: &[Vec<Vec<Vec<Challenge>>>], ) -> (RapPhaseVerifierData<Challenge>, Result<(), Self::Error>)
where Challenger: CanObserve<Commitment>,

Partially verifies the challenge phases. Read more

Auto Trait Implementations§

§

impl<F, Challenge, Challenger> Freeze for FriLogUpPhase<F, Challenge, Challenger>

§

impl<F, Challenge, Challenger> RefUnwindSafe for FriLogUpPhase<F, Challenge, Challenger>
where F: RefUnwindSafe, Challenge: RefUnwindSafe, Challenger: RefUnwindSafe,

§

impl<F, Challenge, Challenger> Send for FriLogUpPhase<F, Challenge, Challenger>
where F: Send, Challenge: Send, Challenger: Send,

§

impl<F, Challenge, Challenger> Sync for FriLogUpPhase<F, Challenge, Challenger>
where F: Sync, Challenge: Sync, Challenger: Sync,

§

impl<F, Challenge, Challenger> Unpin for FriLogUpPhase<F, Challenge, Challenger>
where F: Unpin, Challenge: Unpin, Challenger: Unpin,

§

impl<F, Challenge, Challenger> UnwindSafe for FriLogUpPhase<F, Challenge, Challenger>
where F: UnwindSafe, Challenge: UnwindSafe, Challenger: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize = _

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more