#[repr(i32)]pub enum cusparseSpMMAlg_t {
Default = 0,
CooAlg1 = 1,
CsrAlg1 = 2,
CooAlg2 = 3,
CooAlg3 = 4,
CsrAlg2 = 5,
CsrAlg3 = 6,
Bsr = 7,
CsrAlg4 = 8,
}Expand description
Algorithm selector for cusparseSpMM.
Variants§
Default = 0
Driver-chosen default.
CooAlg1 = 1
COO algorithm 1.
CsrAlg1 = 2
CSR algorithm 1.
CooAlg2 = 3
COO algorithm 2.
CooAlg3 = 4
COO algorithm 3.
CsrAlg2 = 5
CSR algorithm 2.
CsrAlg3 = 6
CSR algorithm 3.
Bsr = 7
BSR algorithm.
CsrAlg4 = 8
CSR algorithm 4.
Trait Implementations§
Source§impl Clone for cusparseSpMMAlg_t
impl Clone for cusparseSpMMAlg_t
impl Copy for cusparseSpMMAlg_t
Source§impl Debug for cusparseSpMMAlg_t
impl Debug for cusparseSpMMAlg_t
impl Eq for cusparseSpMMAlg_t
Source§impl PartialEq for cusparseSpMMAlg_t
impl PartialEq for cusparseSpMMAlg_t
impl StructuralPartialEq for cusparseSpMMAlg_t
Auto Trait Implementations§
impl Freeze for cusparseSpMMAlg_t
impl RefUnwindSafe for cusparseSpMMAlg_t
impl Send for cusparseSpMMAlg_t
impl Sync for cusparseSpMMAlg_t
impl Unpin for cusparseSpMMAlg_t
impl UnsafeUnpin for cusparseSpMMAlg_t
impl UnwindSafe for cusparseSpMMAlg_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