cudarc/cublaslt/mod.rs
1//! [CudaBlasLT] wraps around [cuBLASLt](https://docs.nvidia.com/cuda/cublas/index.html#using-the-cublaslt-api) via:
2//!
3//! 1. Instantiate a [CudaBlasLT] handle with [CudaBlasLT::new()]
4//! 2. Execute a gemm using [CudaBlasLT::matmul()]
5//!
6//! Note that all above apis work with [crate::driver::DevicePtr]/[crate::driver::DevicePtrMut], so they
7//! accept [crate::driver::CudaSlice], [crate::driver::CudaView], and [crate::driver::CudaViewMut].
8
9pub mod result;
10pub mod safe;
11#[allow(warnings)]
12pub mod sys;
13
14pub use safe::*;