#[repr(u32)]pub enum cublasFillMode_t {
CUBLAS_FILL_MODE_LOWER = 0,
CUBLAS_FILL_MODE_UPPER = 1,
CUBLAS_FILL_MODE_FULL = 2,
}Expand description
The type indicates which part (lower or upper) of the dense matrix was filled and consequently should be used by the function.
Notice that BLAS implementations often use Fortran characters ‘L’ or ‘l’ (lower) and ‘U’ or ‘u’ (upper) to describe which part of the matrix is filled.
Variants§
CUBLAS_FILL_MODE_LOWER = 0
The lower part of the matrix is filled.
CUBLAS_FILL_MODE_UPPER = 1
The upper part of the matrix is filled.
CUBLAS_FILL_MODE_FULL = 2
The full matrix is filled.
Trait Implementations§
Source§impl Clone for cublasFillMode_t
impl Clone for cublasFillMode_t
Source§fn clone(&self) -> cublasFillMode_t
fn clone(&self) -> cublasFillMode_t
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 moreSource§impl Debug for cublasFillMode_t
impl Debug for cublasFillMode_t
Source§impl Hash for cublasFillMode_t
impl Hash for cublasFillMode_t
Source§impl Ord for cublasFillMode_t
impl Ord for cublasFillMode_t
Source§fn cmp(&self, other: &cublasFillMode_t) -> Ordering
fn cmp(&self, other: &cublasFillMode_t) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for cublasFillMode_t
impl PartialEq for cublasFillMode_t
Source§fn eq(&self, other: &cublasFillMode_t) -> bool
fn eq(&self, other: &cublasFillMode_t) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for cublasFillMode_t
impl PartialOrd for cublasFillMode_t
impl Copy for cublasFillMode_t
impl Eq for cublasFillMode_t
impl StructuralPartialEq for cublasFillMode_t
Auto Trait Implementations§
impl Freeze for cublasFillMode_t
impl RefUnwindSafe for cublasFillMode_t
impl Send for cublasFillMode_t
impl Sync for cublasFillMode_t
impl Unpin for cublasFillMode_t
impl UnsafeUnpin for cublasFillMode_t
impl UnwindSafe for cublasFillMode_t
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