diff options
Diffstat (limited to 'lapacke/src/lapacke_sgesvx.c')
-rw-r--r-- | lapacke/src/lapacke_sgesvx.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lapacke/src/lapacke_sgesvx.c b/lapacke/src/lapacke_sgesvx.c index c26463ac..0162b1cb 100644 --- a/lapacke/src/lapacke_sgesvx.c +++ b/lapacke/src/lapacke_sgesvx.c @@ -1,5 +1,5 @@ /***************************************************************************** - Copyright (c) 2011, Intel Corp. + Copyright (c) 2014, Intel Corp. All rights reserved. Redistribution and use in source and binary forms, with or without @@ -33,7 +33,7 @@ #include "lapacke_utils.h" -lapack_int LAPACKE_sgesvx( int matrix_order, char fact, char trans, +lapack_int LAPACKE_sgesvx( int matrix_layout, char fact, char trans, lapack_int n, lapack_int nrhs, float* a, lapack_int lda, float* af, lapack_int ldaf, lapack_int* ipiv, char* equed, float* r, float* c, @@ -44,21 +44,21 @@ lapack_int LAPACKE_sgesvx( int matrix_order, char fact, char trans, lapack_int info = 0; lapack_int* iwork = NULL; float* work = NULL; - if( matrix_order != LAPACK_COL_MAJOR && matrix_order != LAPACK_ROW_MAJOR ) { + if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) { LAPACKE_xerbla( "LAPACKE_sgesvx", -1 ); return -1; } #ifndef LAPACK_DISABLE_NAN_CHECK /* Optionally check input matrices for NaNs */ - if( LAPACKE_sge_nancheck( matrix_order, n, n, a, lda ) ) { + if( LAPACKE_sge_nancheck( matrix_layout, n, n, a, lda ) ) { return -6; } if( LAPACKE_lsame( fact, 'f' ) ) { - if( LAPACKE_sge_nancheck( matrix_order, n, n, af, ldaf ) ) { + if( LAPACKE_sge_nancheck( matrix_layout, n, n, af, ldaf ) ) { return -8; } } - if( LAPACKE_sge_nancheck( matrix_order, n, nrhs, b, ldb ) ) { + if( LAPACKE_sge_nancheck( matrix_layout, n, nrhs, b, ldb ) ) { return -14; } if( LAPACKE_lsame( fact, 'f' ) && ( LAPACKE_lsame( *equed, 'b' ) || @@ -86,7 +86,7 @@ lapack_int LAPACKE_sgesvx( int matrix_order, char fact, char trans, goto exit_level_1; } /* Call middle-level interface */ - info = LAPACKE_sgesvx_work( matrix_order, fact, trans, n, nrhs, a, lda, af, + info = LAPACKE_sgesvx_work( matrix_layout, fact, trans, n, nrhs, a, lda, af, ldaf, ipiv, equed, r, c, b, ldb, x, ldx, rcond, ferr, berr, work, iwork ); /* Backup significant data from working array(s) */ |