Function matrixmultiply::sgemm [] [src]

pub unsafe fn sgemm(m: usize,
                    k: usize,
                    n: usize,
                    alpha: f32,
                    a: *const f32,
                    rsa: isize,
                    csa: isize,
                    b: *const f32,
                    rsb: isize,
                    csb: isize,
                    beta: f32,
                    c: *mut f32,
                    rsc: isize,
                    csc: isize)

General matrix multiplication (f32)

C ← α A B + β C

Strides for A and B may be arbitrary. Strides for C must not result in elements that alias each other, for example they can not be zero.

If β is zero, then C does not need to be initialized.