pub struct CompositionScalarAdapter<P, Composition> { /* private fields */ }
Expand description
An adapter that constructs a CompositionPolyOS
for a field from a CompositionPolyOS
for a
packing of that field.
This is not intended for use in performance-critical code sections.
Implementations§
Source§impl<P, Composition> CompositionScalarAdapter<P, Composition>where
P: PackedField,
Composition: CompositionPolyOS<P>,
impl<P, Composition> CompositionScalarAdapter<P, Composition>where
P: PackedField,
Composition: CompositionPolyOS<P>,
Trait Implementations§
Source§impl<P: Clone, Composition: Clone> Clone for CompositionScalarAdapter<P, Composition>
impl<P: Clone, Composition: Clone> Clone for CompositionScalarAdapter<P, Composition>
Source§fn clone(&self) -> CompositionScalarAdapter<P, Composition>
fn clone(&self) -> CompositionScalarAdapter<P, Composition>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<F, P, Composition> CompositionPolyOS<F> for CompositionScalarAdapter<P, Composition>
impl<F, P, Composition> CompositionPolyOS<F> for CompositionScalarAdapter<P, Composition>
Source§fn expression(&self) -> ArithExpr<F>
fn expression(&self) -> ArithExpr<F>
Returns the arithmetic expression representing the polynomial.
Source§fn evaluate(&self, query: &[F]) -> Result<F, Error>
fn evaluate(&self, query: &[F]) -> Result<F, Error>
Evaluates the polynomial using packed values, where each packed value may contain multiple scalar values.
The evaluation follows SIMD semantics, meaning that operations are performed
element-wise across corresponding scalar values in the packed values. Read more
Source§fn binary_tower_level(&self) -> usize
fn binary_tower_level(&self) -> usize
Returns the maximum binary tower level of all constants in the arithmetic expression.
Auto Trait Implementations§
impl<P, Composition> Freeze for CompositionScalarAdapter<P, Composition>where
Composition: Freeze,
impl<P, Composition> RefUnwindSafe for CompositionScalarAdapter<P, Composition>where
Composition: RefUnwindSafe,
P: RefUnwindSafe,
impl<P, Composition> Send for CompositionScalarAdapter<P, Composition>
impl<P, Composition> Sync for CompositionScalarAdapter<P, Composition>
impl<P, Composition> Unpin for CompositionScalarAdapter<P, Composition>
impl<P, Composition> UnwindSafe for CompositionScalarAdapter<P, Composition>where
Composition: UnwindSafe,
P: 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§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