We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7b82ed commit 04b02f0Copy full SHA for 04b02f0
LAPACKE/src/lapacke_stfsm.c
@@ -44,7 +44,7 @@ lapack_int API_SUFFIX(LAPACKE_stfsm)( int matrix_layout, char transr, char side,
44
#ifndef LAPACK_DISABLE_NAN_CHECK
45
if( LAPACKE_get_nancheck() ) {
46
lapack_int mn = m;
47
- if( LAPACKE_lsame( side, 'r' ) ) mn = n;
+ if( API_SUFFIX(LAPACKE_lsame)( side, 'r' ) ) mn = n;
48
/* Optionally check input matrices for NaNs */
49
if( IS_S_NONZERO(alpha) ) {
50
if( API_SUFFIX(LAPACKE_stf_nancheck)( matrix_layout, transr, uplo, diag, mn, a ) ) {
0 commit comments