pub trait BlasL3Dispatch: 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 L3 ops other than gemm: geam, syrk, trsm.