cublas-dgemm 0.1.0

DGEMM kernels built on cuda-oxide
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod naive;
pub mod tiled;
pub mod double_buf;
pub mod vectorized;

// Re-export the best-performing variant as the default.
pub use tiled::*;
pub use naive::*;
pub use double_buf::*;
pub use vectorized::*;