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 9c0ef66 commit 5c03f73Copy full SHA for 5c03f73
LAPACKE/src/lapacke_ctfsm.c
@@ -45,7 +45,7 @@ lapack_int API_SUFFIX(LAPACKE_ctfsm)( int matrix_layout, char transr, char side,
45
#ifndef LAPACK_DISABLE_NAN_CHECK
46
if( LAPACKE_get_nancheck() ) {
47
lapack_int mn = m;
48
- if( LAPACKE_lsame( side, 'r' ) ) mn = n;
+ if( API_SUFFIX(LAPACKE_lsame)( side, 'r' ) ) mn = n;
49
/* Optionally check input matrices for NaNs */
50
if( IS_C_NONZERO(alpha) ) {
51
if( API_SUFFIX(LAPACKE_ctf_nancheck)( matrix_layout, transr, uplo, diag, mn, a ) ) {
0 commit comments