pub trait BlasL2Dispatch: 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 L2 ops: gemv, ger.