pub enum SparseKernelSelectedPath {
CusparseSpmv,
CusparseSpmm,
CusparseMaskedUpdate,
FrontierExpansion,
}Expand description
Selected sparse execution path.
Variants§
CusparseSpmv
cuSPARSE SpMV-style library baseline.
CusparseSpmm
cuSPARSE SpMM-style library baseline.
CusparseMaskedUpdate
cuSPARSE masked-update-style library baseline.
FrontierExpansion
Native frontier expansion path.
Implementations§
Trait Implementations§
Source§impl Clone for SparseKernelSelectedPath
impl Clone for SparseKernelSelectedPath
Source§fn clone(&self) -> SparseKernelSelectedPath
fn clone(&self) -> SparseKernelSelectedPath
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 moreimpl Copy for SparseKernelSelectedPath
Source§impl Debug for SparseKernelSelectedPath
impl Debug for SparseKernelSelectedPath
impl Eq for SparseKernelSelectedPath
Source§impl PartialEq for SparseKernelSelectedPath
impl PartialEq for SparseKernelSelectedPath
impl StructuralPartialEq for SparseKernelSelectedPath
Auto Trait Implementations§
impl Freeze for SparseKernelSelectedPath
impl RefUnwindSafe for SparseKernelSelectedPath
impl Send for SparseKernelSelectedPath
impl Sync for SparseKernelSelectedPath
impl Unpin for SparseKernelSelectedPath
impl UnsafeUnpin for SparseKernelSelectedPath
impl UnwindSafe for SparseKernelSelectedPath
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.