Enum rcublas_sys::cublasComputeType_t
source · #[non_exhaustive]#[repr(u32)]pub enum cublasComputeType_t {
CUBLAS_COMPUTE_16F = 64,
CUBLAS_COMPUTE_16F_PEDANTIC = 65,
CUBLAS_COMPUTE_32F = 68,
CUBLAS_COMPUTE_32F_PEDANTIC = 69,
CUBLAS_COMPUTE_32F_FAST_16F = 74,
CUBLAS_COMPUTE_32F_FAST_16BF = 75,
CUBLAS_COMPUTE_32F_FAST_TF32 = 77,
CUBLAS_COMPUTE_64F = 70,
CUBLAS_COMPUTE_64F_PEDANTIC = 71,
CUBLAS_COMPUTE_32I = 72,
CUBLAS_COMPUTE_32I_PEDANTIC = 73,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
CUBLAS_COMPUTE_16F = 64
CUBLAS_COMPUTE_16F_PEDANTIC = 65
CUBLAS_COMPUTE_32F = 68
CUBLAS_COMPUTE_32F_PEDANTIC = 69
CUBLAS_COMPUTE_32F_FAST_16F = 74
CUBLAS_COMPUTE_32F_FAST_16BF = 75
CUBLAS_COMPUTE_32F_FAST_TF32 = 77
CUBLAS_COMPUTE_64F = 70
CUBLAS_COMPUTE_64F_PEDANTIC = 71
CUBLAS_COMPUTE_32I = 72
CUBLAS_COMPUTE_32I_PEDANTIC = 73
Trait Implementations§
source§impl Clone for cublasComputeType_t
impl Clone for cublasComputeType_t
source§fn clone(&self) -> cublasComputeType_t
fn clone(&self) -> cublasComputeType_t
Returns a copy 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 cublasComputeType_t
impl Debug for cublasComputeType_t
source§impl Hash for cublasComputeType_t
impl Hash for cublasComputeType_t
source§impl PartialEq for cublasComputeType_t
impl PartialEq for cublasComputeType_t
source§fn eq(&self, other: &cublasComputeType_t) -> bool
fn eq(&self, other: &cublasComputeType_t) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for cublasComputeType_t
impl Eq for cublasComputeType_t
impl StructuralPartialEq for cublasComputeType_t
Auto Trait Implementations§
impl RefUnwindSafe for cublasComputeType_t
impl Send for cublasComputeType_t
impl Sync for cublasComputeType_t
impl Unpin for cublasComputeType_t
impl UnwindSafe for cublasComputeType_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