pub enum BatchAlgorithm {
Lu,
Qr,
Cholesky,
}Expand description
Selects the batched factorization algorithm.
Variants§
Lu
LU factorization with partial pivoting.
Qr
QR factorization via Householder reflections.
Cholesky
Cholesky factorization for SPD matrices.
Trait Implementations§
Source§impl Clone for BatchAlgorithm
impl Clone for BatchAlgorithm
Source§fn clone(&self) -> BatchAlgorithm
fn clone(&self) -> BatchAlgorithm
Returns a duplicate 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 Debug for BatchAlgorithm
impl Debug for BatchAlgorithm
Source§impl PartialEq for BatchAlgorithm
impl PartialEq for BatchAlgorithm
impl Copy for BatchAlgorithm
impl Eq for BatchAlgorithm
impl StructuralPartialEq for BatchAlgorithm
Auto Trait Implementations§
impl Freeze for BatchAlgorithm
impl RefUnwindSafe for BatchAlgorithm
impl Send for BatchAlgorithm
impl Sync for BatchAlgorithm
impl Unpin for BatchAlgorithm
impl UnsafeUnpin for BatchAlgorithm
impl UnwindSafe for BatchAlgorithm
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