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 4416581 commit 9d56cffCopy full SHA for 9d56cff
LAPACKE/src/lapacke_ztfsm.c
@@ -45,7 +45,7 @@ lapack_int API_SUFFIX(LAPACKE_ztfsm)( 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_Z_NONZERO(alpha) ) {
51
if( API_SUFFIX(LAPACKE_ztf_nancheck)( matrix_layout, transr, uplo, diag, mn, a ) ) {
0 commit comments