diff options
Diffstat (limited to 'lapacke/src/lapacke_chbevx.c')
-rw-r--r-- | lapacke/src/lapacke_chbevx.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lapacke/src/lapacke_chbevx.c b/lapacke/src/lapacke_chbevx.c index f1bb0225..0886977f 100644 --- a/lapacke/src/lapacke_chbevx.c +++ b/lapacke/src/lapacke_chbevx.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_chbevx( int matrix_order, char jobz, char range, char uplo, +lapack_int LAPACKE_chbevx( int matrix_layout, char jobz, char range, char uplo, lapack_int n, lapack_int kd, lapack_complex_float* ab, lapack_int ldab, lapack_complex_float* q, lapack_int ldq, float vl, @@ -45,13 +45,13 @@ lapack_int LAPACKE_chbevx( int matrix_order, char jobz, char range, char uplo, lapack_int* iwork = NULL; 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_chbevx", -1 ); return -1; } #ifndef LAPACK_DISABLE_NAN_CHECK /* Optionally check input matrices for NaNs */ - if( LAPACKE_chb_nancheck( matrix_order, uplo, n, kd, ab, ldab ) ) { + if( LAPACKE_chb_nancheck( matrix_layout, uplo, n, kd, ab, ldab ) ) { return -7; } if( LAPACKE_s_nancheck( 1, &abstol, 1 ) ) { @@ -86,7 +86,7 @@ lapack_int LAPACKE_chbevx( int matrix_order, char jobz, char range, char uplo, goto exit_level_2; } /* Call middle-level interface */ - info = LAPACKE_chbevx_work( matrix_order, jobz, range, uplo, n, kd, ab, + info = LAPACKE_chbevx_work( matrix_layout, jobz, range, uplo, n, kd, ab, ldab, q, ldq, vl, vu, il, iu, abstol, m, w, z, ldz, work, rwork, iwork, ifail ); /* Release memory and exit */ |