#[repr(u32)]pub enum cuvsPcaSolver {
CUVS_PCA_COV_EIG_DQ = 0,
CUVS_PCA_COV_EIG_JACOBI = 1,
}Expand description
@brief Solver algorithm for PCA eigen decomposition.
Variants§
CUVS_PCA_COV_EIG_DQ = 0
Covariance + divide-and-conquer eigen decomposition
CUVS_PCA_COV_EIG_JACOBI = 1
Covariance + Jacobi eigen decomposition
Trait Implementations§
Source§impl Clone for cuvsPcaSolver
impl Clone for cuvsPcaSolver
Source§fn clone(&self) -> cuvsPcaSolver
fn clone(&self) -> cuvsPcaSolver
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 moreimpl Copy for cuvsPcaSolver
Source§impl Debug for cuvsPcaSolver
impl Debug for cuvsPcaSolver
impl Eq for cuvsPcaSolver
Source§impl Hash for cuvsPcaSolver
impl Hash for cuvsPcaSolver
Source§impl PartialEq for cuvsPcaSolver
impl PartialEq for cuvsPcaSolver
Source§fn eq(&self, other: &cuvsPcaSolver) -> bool
fn eq(&self, other: &cuvsPcaSolver) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for cuvsPcaSolver
Auto Trait Implementations§
impl Freeze for cuvsPcaSolver
impl RefUnwindSafe for cuvsPcaSolver
impl Send for cuvsPcaSolver
impl Sync for cuvsPcaSolver
impl Unpin for cuvsPcaSolver
impl UnsafeUnpin for cuvsPcaSolver
impl UnwindSafe for cuvsPcaSolver
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