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 e612c6d commit a7b82edCopy full SHA for a7b82ed
LAPACKE/src/lapacke_dtfsm.c
@@ -45,7 +45,7 @@ lapack_int API_SUFFIX(LAPACKE_dtfsm)( int matrix_layout, char transr, char side,
45
if( LAPACKE_get_nancheck() ) {
46
/* Optionally check input matrices for NaNs */
47
lapack_int mn = m;
48
- if( LAPACKE_lsame( side, 'r' ) ) mn = n;
+ if( API_SUFFIX(LAPACKE_lsame)( side, 'r' ) ) mn = n;
49
if( IS_D_NONZERO(alpha) ) {
50
if( API_SUFFIX(LAPACKE_dtf_nancheck)( matrix_layout, transr, uplo, diag, mn, a ) ) {
51
return -10;
0 commit comments