pub struct MemoizedQueries<P: PackedField, Backend: ComputationBackend> { /* private fields */ }
Implementations§
Source§impl<P: PackedField, Backend: ComputationBackend> MemoizedQueries<P, Backend>
impl<P: PackedField, Backend: ComputationBackend> MemoizedQueries<P, Backend>
pub fn new() -> Self
Sourcepub fn new_from_known_queries(
data: Vec<(Vec<P::Scalar>, MultilinearQuery<P, Backend::Vec<P>>)>,
) -> Self
pub fn new_from_known_queries( data: Vec<(Vec<P::Scalar>, MultilinearQuery<P, Backend::Vec<P>>)>, ) -> Self
Constructs MemoizedQueries
from a list of eval_points and corresponding MultilinearQueries.
Assumes that each eval_point
is given at most once.
Does not check that the input is valid.
pub fn full_query( &mut self, eval_point: &[P::Scalar], backend: &Backend, ) -> Result<&MultilinearQuery<P, Backend::Vec<P>>, Error>
Sourcepub fn full_query_readonly(
&self,
eval_point: &[P::Scalar],
) -> Option<&MultilinearQuery<P, Backend::Vec<P>>>
pub fn full_query_readonly( &self, eval_point: &[P::Scalar], ) -> Option<&MultilinearQuery<P, Backend::Vec<P>>>
Finds a MultilinearQuery
corresponding to the given eval_point
.
pub fn memoize_query_par( &mut self, eval_points: Vec<&[P::Scalar]>, backend: &Backend, ) -> Result<(), Error>
Auto Trait Implementations§
impl<P, Backend> Freeze for MemoizedQueries<P, Backend>
impl<P, Backend> RefUnwindSafe for MemoizedQueries<P, Backend>where
<Backend as ComputationBackend>::Vec<P>: RefUnwindSafe,
<P as PackedField>::Scalar: RefUnwindSafe,
impl<P, Backend> Send for MemoizedQueries<P, Backend>
impl<P, Backend> Sync for MemoizedQueries<P, Backend>
impl<P, Backend> Unpin for MemoizedQueries<P, Backend>
impl<P, Backend> UnwindSafe for MemoizedQueries<P, Backend>
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