diff options
Diffstat (limited to 'lapacke/src/lapacke_dpbsv.c')
-rw-r--r-- | lapacke/src/lapacke_dpbsv.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lapacke/src/lapacke_dpbsv.c b/lapacke/src/lapacke_dpbsv.c index fc52b059..c91d2e8d 100644 --- a/lapacke/src/lapacke_dpbsv.c +++ b/lapacke/src/lapacke_dpbsv.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,23 +33,23 @@ #include "lapacke_utils.h" -lapack_int LAPACKE_dpbsv( int matrix_order, char uplo, lapack_int n, +lapack_int LAPACKE_dpbsv( int matrix_layout, char uplo, lapack_int n, lapack_int kd, lapack_int nrhs, double* ab, lapack_int ldab, double* b, lapack_int ldb ) { - 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_dpbsv", -1 ); return -1; } #ifndef LAPACK_DISABLE_NAN_CHECK /* Optionally check input matrices for NaNs */ - if( LAPACKE_dpb_nancheck( matrix_order, uplo, n, kd, ab, ldab ) ) { + if( LAPACKE_dpb_nancheck( matrix_layout, uplo, n, kd, ab, ldab ) ) { return -6; } - if( LAPACKE_dge_nancheck( matrix_order, n, nrhs, b, ldb ) ) { + if( LAPACKE_dge_nancheck( matrix_layout, n, nrhs, b, ldb ) ) { return -8; } #endif - return LAPACKE_dpbsv_work( matrix_order, uplo, n, kd, nrhs, ab, ldab, b, + return LAPACKE_dpbsv_work( matrix_layout, uplo, n, kd, nrhs, ab, ldab, b, ldb ); } |