diff options
Diffstat (limited to 'lapacke/src/lapacke_ssygvd.c')
-rw-r--r-- | lapacke/src/lapacke_ssygvd.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lapacke/src/lapacke_ssygvd.c b/lapacke/src/lapacke_ssygvd.c index e0371573..3304b8cb 100644 --- a/lapacke/src/lapacke_ssygvd.c +++ b/lapacke/src/lapacke_ssygvd.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_ssygvd( int matrix_order, lapack_int itype, char jobz, +lapack_int LAPACKE_ssygvd( int matrix_layout, lapack_int itype, char jobz, char uplo, lapack_int n, float* a, lapack_int lda, float* b, lapack_int ldb, float* w ) { @@ -44,21 +44,21 @@ lapack_int LAPACKE_ssygvd( int matrix_order, lapack_int itype, char jobz, float* work = NULL; lapack_int iwork_query; float work_query; - 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_ssygvd", -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_sge_nancheck( matrix_order, n, n, b, ldb ) ) { + if( LAPACKE_sge_nancheck( matrix_layout, n, n, b, ldb ) ) { return -8; } #endif /* Query optimal working array(s) size */ - info = LAPACKE_ssygvd_work( matrix_order, itype, jobz, uplo, n, a, lda, b, + info = LAPACKE_ssygvd_work( matrix_layout, itype, jobz, uplo, n, a, lda, b, ldb, w, &work_query, lwork, &iwork_query, liwork ); if( info != 0 ) { @@ -78,7 +78,7 @@ lapack_int LAPACKE_ssygvd( int matrix_order, lapack_int itype, char jobz, goto exit_level_1; } /* Call middle-level interface */ - info = LAPACKE_ssygvd_work( matrix_order, itype, jobz, uplo, n, a, lda, b, + info = LAPACKE_ssygvd_work( matrix_layout, itype, jobz, uplo, n, a, lda, b, ldb, w, work, lwork, iwork, liwork ); /* Release memory and exit */ LAPACKE_free( work ); |