1/// Matmul using Accelerator or PlaneMma 2pub mod matmul; 3/// Naive non-cooperative matmul without tiling that can be very fast on small matrices. 4pub mod naive; 5/// Non-cooperative Matmul 6pub mod tiling2d; 7 8mod error; 9 10pub use error::*;