cublas-dgemm 0.1.0

DGEMM kernels built on cuda-oxide
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// DGEMM vectorized (f64)

use cublas_core::GemmConfig;

/// Vectorized DGEMM kernel launch (f64).
pub fn dgemm_vectorized(
    config: &GemmConfig<f64>,
    a: &[f64],
    b: &[f64],
    c: &mut [f64],
) {
    let _ = (config, a, b, c);
    todo!("launch vectorized DGEMM kernel")
}