diff options
Diffstat (limited to 'lapacke/src/lapacke_zpbsvx.c')
-rw-r--r-- | lapacke/src/lapacke_zpbsvx.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lapacke/src/lapacke_zpbsvx.c b/lapacke/src/lapacke_zpbsvx.c index dc8263a4..f32a0cda 100644 --- a/lapacke/src/lapacke_zpbsvx.c +++ b/lapacke/src/lapacke_zpbsvx.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_zpbsvx( int matrix_order, char fact, char uplo, lapack_int n, +lapack_int LAPACKE_zpbsvx( int matrix_layout, char fact, char uplo, lapack_int n, lapack_int kd, lapack_int nrhs, lapack_complex_double* ab, lapack_int ldab, lapack_complex_double* afb, lapack_int ldafb, @@ -45,21 +45,21 @@ lapack_int LAPACKE_zpbsvx( int matrix_order, char fact, char uplo, lapack_int n, lapack_int info = 0; double* rwork = NULL; lapack_complex_double* 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_zpbsvx", -1 ); return -1; } #ifndef LAPACK_DISABLE_NAN_CHECK /* Optionally check input matrices for NaNs */ - if( LAPACKE_zpb_nancheck( matrix_order, uplo, n, kd, ab, ldab ) ) { + if( LAPACKE_zpb_nancheck( matrix_layout, uplo, n, kd, ab, ldab ) ) { return -7; } if( LAPACKE_lsame( fact, 'f' ) ) { - if( LAPACKE_zpb_nancheck( matrix_order, uplo, n, kd, afb, ldafb ) ) { + if( LAPACKE_zpb_nancheck( matrix_layout, uplo, n, kd, afb, ldafb ) ) { return -9; } } - if( LAPACKE_zge_nancheck( matrix_order, n, nrhs, b, ldb ) ) { + if( LAPACKE_zge_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_zpbsvx( int matrix_order, char fact, char uplo, lapack_int n, goto exit_level_1; } /* Call middle-level interface */ - info = LAPACKE_zpbsvx_work( matrix_order, fact, uplo, n, kd, nrhs, ab, ldab, + info = LAPACKE_zpbsvx_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 */ |