cubek-matmul 0.2.0

CubeK: Matrix Multiplication Kernels
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod launch_naive;
pub mod launch_tiling;
pub mod launch_vecmat_plane_parallel;
pub mod launch_vecmat_unit_perpendicular;
#[cfg(feature = "extended")]
pub mod test_only;

mod args;
mod base;
mod select_kernel;
mod strategy;
mod tune_key;

pub use args::*;
pub use base::*;
pub use select_kernel::*;
pub use strategy::*;
pub use tune_key::*;