pub trait BlasL1Dispatch: Send + 'static {
// Required methods
fn dtype_name(&self) -> &'static str;
fn op_name(&self) -> &'static str;
fn dispatch(self: Box<Self>, ctx: &BlasDispatchCtx<'_>);
}Expand description
Erased L1 ops: axpy, dot, nrm2, scal, asum, iamax, iamin, copy, swap, rot.