intel-mkl-src icon indicating copy to clipboard operation
intel-mkl-src copied to clipboard

Binding error for cblas_dgemm

Open rationalis opened this issue 4 years ago • 1 comments

I'm getting "Intel MKL ERROR: Parameter 11 was incorrect on entry to cblas_dgemm." I'm guessing that this is due to using version 2021.1 instead of 2020.1 but I can't seem to find a download for 2020.1 for Windows. For reference I have built ndarray, blas-src, and intel-mkl-src all from the most recent commits.

rationalis avatar Feb 18 '21 08:02 rationalis

This is a usage error, not a linking error. It seems that your ldb parameter is not correct. From the documentation:

On entry, LDB specifies the first dimension of B as declared in the calling (sub) program. When TRANSB = 'N' or 'n' then LDB must be at least max( 1, k ), otherwise LDB must be at least max( 1, n ).

aleon1138 avatar Jun 09 '21 06:06 aleon1138