#[repr(u8)]pub enum FillMode {
Lower = 0,
Upper = 1,
}Expand description
Fill-mode tag for triangular linalg ops (Cholesky / triangular solve).
Selects whether the factor lives in the lower or upper triangle of the in-place output matrix. The row-major-input → column-major-cuSOLVER adapter at the plan layer flips this when handing the descriptor down to cuSOLVER (a row-major lower-L is bit-identical to a column-major upper-U^T over the same byte storage).
Variants§
Trait Implementations§
impl Copy for FillMode
impl Eq for FillMode
impl StructuralPartialEq for FillMode
Auto Trait Implementations§
impl Freeze for FillMode
impl RefUnwindSafe for FillMode
impl Send for FillMode
impl Sync for FillMode
impl Unpin for FillMode
impl UnsafeUnpin for FillMode
impl UnwindSafe for FillMode
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