BLAS LDB using DGEMM
问题 I want to multiply matrices by D*W', where W' is a transposed version of W. While I'll use DGEMM I'l figured out with the help of @IanBush that the LDB in this case should be number of rows of matrix W instead of number of columns. The code for this case is Call dgemm('n', 't', N1, M1, N1, 1.0_wp, D, N1, W, M1, 0.0_wp, c, n1) where n1 and m1 are dimensions of my matrices Dimensions of the matrices: W = M1*N1 D = N1*N1 As in official documentation it says LDB is INTEGER On entry, LDB specifies