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
In function cblas_?gemmt, if I pass CblasRowMajor + CblasUplo to MKL's function with that name, the output ends up being filled in the upper corner (in row-major order), but in OpenBLAS's version of cblas_?gemmt, the output ends up being filled in the lower corner instead.
In function
cblas_?gemmt
, if I passCblasRowMajor
+CblasUplo
to MKL's function with that name, the output ends up being filled in the upper corner (in row-major order), but in OpenBLAS's version ofcblas_?gemmt
, the output ends up being filled in the lower corner instead.Example code:
If I run the example with OpenBLAS, the output is:
Whereas with MKL, the output is:
Version: OpenBLAS 0.3.28, OpenMP variant, installed from source.
The text was updated successfully, but these errors were encountered: