Skip to main content

cublas_dgemm/
lib.rs

1pub mod naive;
2pub mod tiled;
3pub mod double_buf;
4pub mod vectorized;
5
6// Re-export the best-performing variant as the default.
7pub use tiled::*;
8pub use naive::*;
9pub use double_buf::*;
10pub use vectorized::*;