pub struct DcSvdConfig {
pub crossover_size: usize,
pub compute_u: bool,
pub compute_vt: bool,
pub use_divide_conquer: bool,
pub bidiagonalization: bool,
pub deflation_tol: f64,
pub n_threshold: usize,
}Expand description
Divide-and-conquer SVD configuration.
Fields§
§crossover_size: usizeSwitch to QR iteration below this matrix size (default: 25).
compute_u: boolWhether to compute U (left singular vectors).
compute_vt: boolWhether to compute V^T (right singular vectors transposed).
use_divide_conquer: boolWhether the divide-and-conquer algorithm is active (true for n >= n_threshold).
bidiagonalization: boolWhether to use Householder bidiagonalization before D&C (true for n >= 256).
deflation_tol: f64Deflation tolerance: n as f64 * eps where eps = machine epsilon.
n_threshold: usizeMinimum matrix size for the D&C path (default: 1024).
Implementations§
Trait Implementations§
Source§impl Clone for DcSvdConfig
impl Clone for DcSvdConfig
Source§fn clone(&self) -> DcSvdConfig
fn clone(&self) -> DcSvdConfig
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 DcSvdConfig
impl Debug for DcSvdConfig
Auto Trait Implementations§
impl Freeze for DcSvdConfig
impl RefUnwindSafe for DcSvdConfig
impl Send for DcSvdConfig
impl Sync for DcSvdConfig
impl Unpin for DcSvdConfig
impl UnsafeUnpin for DcSvdConfig
impl UnwindSafe for DcSvdConfig
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