1// ! Performs tiled matrix multiplication using shared memory. 2// ! Manages unit/plane coordination 3 4mod matmul; 5 6mod base; 7mod event_listener; 8mod filled; 9mod memory; 10 11pub use base::*; 12pub use event_listener::*; 13pub use filled::*; 14pub use matmul::*; 15pub use memory::*;