pub struct SimdMatrixOps;Expand description
Optimized matrix operations using SIMD
Implementations§
Source§impl SimdMatrixOps
impl SimdMatrixOps
Sourcepub fn matrix_vector_multiply_simd(
matrix: &Array2<f64>,
vector: &Array1<f64>,
) -> SklResult<Array1<f64>>
pub fn matrix_vector_multiply_simd( matrix: &Array2<f64>, vector: &Array1<f64>, ) -> SklResult<Array1<f64>>
Optimized matrix-vector multiplication using SIMD
Sourcepub fn dot_product_simd(x: &[f64], y: &[f64]) -> f64
pub fn dot_product_simd(x: &[f64], y: &[f64]) -> f64
Optimized dot product using SIMD
Auto Trait Implementations§
impl Freeze for SimdMatrixOps
impl RefUnwindSafe for SimdMatrixOps
impl Send for SimdMatrixOps
impl Sync for SimdMatrixOps
impl Unpin for SimdMatrixOps
impl UnwindSafe for SimdMatrixOps
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> 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