#[repr(u32)]pub enum FillMode {
Lower = 0,
Upper = 1,
Full = 2,
}Expand description
Selects which filled part of a dense matrix is used by the operation.
This corresponds to BLAS L/l (lower) and U/u (upper) arguments.
Variants§
Lower = 0
The lower part of the matrix is filled.
Upper = 1
The upper part of the matrix is filled.
Full = 2
The full matrix is filled.
Trait Implementations§
Source§impl From<FillMode> for cublasFillMode_t
impl From<FillMode> for cublasFillMode_t
Source§impl From<cublasFillMode_t> for FillMode
impl From<cublasFillMode_t> for FillMode
Source§fn from(value: cublasFillMode_t) -> Self
fn from(value: cublasFillMode_t) -> Self
Converts to this type from the input type.
Source§impl TryFromPrimitive for FillMode
impl TryFromPrimitive for FillMode
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