Skip to main content

SparseDispatch

Trait SparseDispatch 

Source
pub trait SparseDispatch: Send + 'static {
    // Required methods
    fn op_name(&self) -> SparseOp;
    fn dtype(&self) -> DType;
    fn dispatch(self: Box<Self>, ctx: &SparseDispatchCtx<'_>);
}
Expand description

Box-erased cuSPARSE op (Phase 4).

Required Methods§

Source

fn op_name(&self) -> SparseOp

Source

fn dtype(&self) -> DType

Source

fn dispatch(self: Box<Self>, ctx: &SparseDispatchCtx<'_>)

Implementors§