openvm_stark_backend::interaction::stark_log_up

Struct StarkLogUpPhase

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

Implementations§

Source§

impl<F, Challenge, Challenger> StarkLogUpPhase<F, Challenge, Challenger>

Source

pub fn new() -> Self

Source§

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

Source

pub fn generate_after_challenge_trace( all_interactions: &[Interaction<SymbolicExpression<F>>], trace_view: &PairTraceView<'_, F>, permutation_randomness: &[Challenge; 2], interaction_chunk_size: 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: Default, Challenge: Default, Challenger: Default> Default for StarkLogUpPhase<F, Challenge, Challenger>

Source§

fn default() -> StarkLogUpPhase<F, Challenge, Challenger>

Returns the “default value” for a type. Read more
Source§

impl<F, Challenge, Challenger> RapPhaseSeq<F, Challenge, Challenger> for StarkLogUpPhase<F, Challenge, Challenger>
where F: Field, Challenge: ExtensionField<F>, Challenger: FieldChallenger<F>,

Source§

const ID: RapPhaseSeqKind = RapPhaseSeqKind::StarkLogUp

Source§

type PartialProof = ()

Source§

type ProvingKey = StarkLogUpProvingKey

Source§

type Error = StarkLogUpError

Source§

fn generate_pk_per_air( &self, symbolic_constraints_per_air: Vec<SymbolicConstraints<F>>, ) -> Vec<Self::ProvingKey>

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

fn partially_prove( &self, challenger: &mut Challenger, rap_pk_per_air: &[Self::ProvingKey], constraints_per_air: &[&SymbolicConstraints<F>], trace_view_per_air: &[PairTraceView<'_, 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 StarkLogUpPhase<F, Challenge, Challenger>

§

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

§

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

§

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

§

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

§

impl<F, Challenge, Challenger> UnwindSafe for StarkLogUpPhase<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.

§

impl<T> Instrument for T

§

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

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

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
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

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

Initializes a with the given initializer. Read more
§

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

Dereferences the given pointer. Read more
§

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

Mutably dereferences the given pointer. Read more
§

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

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

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

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
§

fn with_current_subscriber(self) -> WithDispatch<Self>

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