fn
dgemm
void dgemm(bool transA, bool transB, int M, int N, int K, double alpha, const double * A, int lda, const double * B, int ldb, double beta, double * C, int ldc)Double-precision general matrix multiply (GEMM).
Identical contract to sgemm but operates on double buffers and
dispatches to cblas_dgemm.
Math
References
Accelerate.framework cblas_dgemm.
Parameters
transA, transBboolWhether or should be transposed before the multiply.
M, N, Kint, , before optional transposition.
alpha, betadoubleLinear-combination coefficients.
A, Bconst double*Row-major operand buffers.
Cdouble*Row-major output buffer.
lda, ldb, ldcintLeading dimensions.