You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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 ).
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
, andintel-mkl-src
all from the most recent commits.The text was updated successfully, but these errors were encountered: