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
Thanks for your helpful library! I noticed that the Fortran port of the gemm functions weren't working as I expected though. Fortran has column-major ordering where as C has row-major ordering, therefore the calls won't work correctly unless the lda and ldb values passed into the function are the number of rows (instead of the number of columns as is more typical, I think). Is this the intention, or is this a bug?
The text was updated successfully, but these errors were encountered:
Can you point me to the method you used? The c-code was generated using F2C which is the default that lapack is shipped with. I would therefore doubt that there is a bug.
Thanks for your helpful library! I noticed that the Fortran port of the gemm functions weren't working as I expected though. Fortran has column-major ordering where as C has row-major ordering, therefore the calls won't work correctly unless the lda and ldb values passed into the function are the number of rows (instead of the number of columns as is more typical, I think). Is this the intention, or is this a bug?
The text was updated successfully, but these errors were encountered: