Function gemm_uninit

Source
pub fn gemm_uninit<F: BLAS3<D::Context> + Zero, D: DefaultBLASContext>(
    alpha: F,
    a: MatrixView<'_, F, D>,
    b: MatrixView<'_, F, D>,
    c: UninitMatrix<'_, F, D>,
)
Expand description

Performs the basic matmul operation.

C = alpha * AB.

Uses the default BLASContext for the device.

ยงPanics

If the shapes of the matricies do not match the following pattern:

  • A = (M, K)
  • B = (K, N)
  • C = (M, N)