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
Hi @stefanozampini. I believe lsame( const char* ca, const char* cb...) is the most appropriate interface. Would you like to propose a PR with the changes?
For the record, problems encountered by BLIS due to differing const attributes and duplicate inclusion of the prototype are documented here: flame/blis#145 (see posts closte to flame/blis#145 (comment)).
Makes sense to me - the non-const lsame in OpenBLAS mentioned by weslleyspereira above is unchanged from the 2009 GotoBLAS2 and was certainly chosen to match the netlib LAPACK at that time.
Description
both MKL and BLIS define lsame as
lsame( const char* ca, const char* cb...)
while this code uses
same( char* ca, char* cb..
Checklist
The text was updated successfully, but these errors were encountered: