diff options
Diffstat (limited to 'lapacke/src/lapacke_cpbsvx.c')
-rw-r--r-- | lapacke/src/lapacke_cpbsvx.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lapacke/src/lapacke_cpbsvx.c b/lapacke/src/lapacke_cpbsvx.c index 007431dd..15e7934f 100644 --- a/lapacke/src/lapacke_cpbsvx.c +++ b/lapacke/src/lapacke_cpbsvx.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_cpbsvx( int matrix_order, char fact, char uplo, lapack_int n, +lapack_int LAPACKE_cpbsvx( int matrix_layout, char fact, char uplo, lapack_int n, lapack_int kd, lapack_int nrhs, lapack_complex_float* ab, lapack_int ldab, lapack_complex_float* afb, lapack_int ldafb, @@ -45,21 +45,21 @@ lapack_int LAPACKE_cpbsvx( int matrix_order, char fact, char uplo, lapack_int n, lapack_int info = 0; float* rwork = NULL; lapack_complex_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_cpbsvx", -1 ); return -1; } #ifndef LAPACK_DISABLE_NAN_CHECK /* Optionally check input matrices for NaNs */ - if( LAPACKE_cpb_nancheck( matrix_order, uplo, n, kd, ab, ldab ) ) { + if( LAPACKE_cpb_nancheck( matrix_layout, uplo, n, kd, ab, ldab ) ) { return -7; } if( LAPACKE_lsame( fact, 'f' ) ) { - if( LAPACKE_cpb_nancheck( matrix_order, uplo, n, kd, afb, ldafb ) ) { + if( LAPACKE_cpb_nancheck( matrix_layout, uplo, n, kd, afb, ldafb ) ) { return -9; } } - if( LAPACKE_cge_nancheck( matrix_order, n, nrhs, b, ldb ) ) { + if( LAPACKE_cge_nancheck( matrix_layout, n, nrhs, b, ldb ) ) { return -13; } if( LAPACKE_lsame( fact, 'f' ) && LAPACKE_lsame( *equed, 'y' ) ) { @@ -81,7 +81,7 @@ lapack_int LAPACKE_cpbsvx( int matrix_order, char fact, char uplo, lapack_int n, goto exit_level_1; } /* Call middle-level interface */ - info = LAPACKE_cpbsvx_work( matrix_order, fact, uplo, n, kd, nrhs, ab, ldab, + info = LAPACKE_cpbsvx_work( matrix_layout, fact, uplo, n, kd, nrhs, ab, ldab, afb, ldafb, equed, s, b, ldb, x, ldx, rcond, ferr, berr, work, rwork ); /* Release memory and exit */ |