The OpenD Programming Language

glas_dgemm

Performs general matrix-matrix multiplication.

More...
extern (C) nothrow @nogc @system
void
glas_dgemm
(
double alpha
,
Slice!(SliceKind.universal, [2], const(double)*) asl
,
Slice!(SliceKind.universal, [2], const(double)*) bsl
,
double beta
,
Slice!(SliceKind.universal, [2], double*) csl
,
ulong settings = 0
)

Parameters

alpha double

scalar

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

m ⨉ k matrix

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

k ⨉ n matrix

beta double

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

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

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