diff options
Diffstat (limited to 'lapacke/src/lapacke_dspev.c')
-rw-r--r-- | lapacke/src/lapacke_dspev.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lapacke/src/lapacke_dspev.c b/lapacke/src/lapacke_dspev.c index 6c604cc8..82693a0f 100644 --- a/lapacke/src/lapacke_dspev.c +++ b/lapacke/src/lapacke_dspev.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,12 +33,12 @@ #include "lapacke_utils.h" -lapack_int LAPACKE_dspev( int matrix_order, char jobz, char uplo, lapack_int n, +lapack_int LAPACKE_dspev( int matrix_layout, char jobz, char uplo, lapack_int n, double* ap, double* w, double* z, lapack_int ldz ) { lapack_int info = 0; 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_dspev", -1 ); return -1; } @@ -55,7 +55,7 @@ lapack_int LAPACKE_dspev( int matrix_order, char jobz, char uplo, lapack_int n, goto exit_level_0; } /* Call middle-level interface */ - info = LAPACKE_dspev_work( matrix_order, jobz, uplo, n, ap, w, z, ldz, + info = LAPACKE_dspev_work( matrix_layout, jobz, uplo, n, ap, w, z, ldz, work ); /* Release memory and exit */ LAPACKE_free( work ); |