pub struct VectorizationAnalysis {
pub vectorization_rate: f64,
pub lane_utilization: f64,
pub throughput_efficiency: f64,
pub theoretical_simd_ops: usize,
pub actual_simd_ops: usize,
pub scalar_fallback_ops: usize,
}Expand description
Vectorization analysis results
Fields§
§vectorization_rate: f64§lane_utilization: f64§throughput_efficiency: f64§theoretical_simd_ops: usize§actual_simd_ops: usize§scalar_fallback_ops: usizeTrait Implementations§
Source§impl Clone for VectorizationAnalysis
impl Clone for VectorizationAnalysis
Source§fn clone(&self) -> VectorizationAnalysis
fn clone(&self) -> VectorizationAnalysis
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for VectorizationAnalysis
impl RefUnwindSafe for VectorizationAnalysis
impl Send for VectorizationAnalysis
impl Sync for VectorizationAnalysis
impl Unpin for VectorizationAnalysis
impl UnsafeUnpin for VectorizationAnalysis
impl UnwindSafe for VectorizationAnalysis
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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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