Perform one of the following matrix-matrix multiplications: C = alpha*A*B + beta*C C = alpha*trans(A)*B + beta*C C = alpha*A*trans(B) + beta*C C = alpha*trans(A)*trans(B) + beta*C trans represents the transpose of the matrix.
Usage
CALL SGEMM (TRANSA, TRANSB, M, N, K, ALPHA, A, LDA, B, LDB, BETA, C, LDC)