pub struct ParallelDecomposition { /* private fields */ }Expand description
Parallel decomposition algorithms
Implementations§
Source§impl ParallelDecomposition
impl ParallelDecomposition
Sourcepub fn with_config(self, config: AccelerationConfig) -> Self
pub fn with_config(self, config: AccelerationConfig) -> Self
Set configuration
Sourcepub fn parallel_svd(
&self,
matrix: &Array2<Float>,
) -> Result<(Array2<Float>, Array1<Float>, Array2<Float>)>
pub fn parallel_svd( &self, matrix: &Array2<Float>, ) -> Result<(Array2<Float>, Array1<Float>, Array2<Float>)>
Parallel SVD computation for large matrices
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ParallelDecomposition
impl RefUnwindSafe for ParallelDecomposition
impl Send for ParallelDecomposition
impl Sync for ParallelDecomposition
impl Unpin for ParallelDecomposition
impl UnwindSafe for ParallelDecomposition
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