glas_cgemm

Performs general matrix-matrix multiplication.

More...

Parameters

alpha cfloat

scalar

asl Slice!(SliceKind.universal, [2], const(cfloat)*)

m ⨉ k matrix

bsl Slice!(SliceKind.universal, [2], const(cfloat)*)

k ⨉ n matrix

beta cfloat

scalar. When beta is supplied as zero then the matrix csl need not be set on input.

csl Slice!(SliceKind.universal, [2], cfloat*)

m ⨉ n matrix with one stride equal to ±1.

settings ulong

Operation settings. Allowed flags are ConjA and ConjB.

Unified alias

gemm

BLAS: SGEMM, DGEMM, CGEMM, ZGEMM

Detailed Description

Pseudo code

C := alpha A × B + beta C.

Meta