diff options
Diffstat (limited to 'lapacke/src/lapacke_zungtr.c')
-rw-r--r-- | lapacke/src/lapacke_zungtr.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lapacke/src/lapacke_zungtr.c b/lapacke/src/lapacke_zungtr.c index 0c67d7e9..a7dd855d 100644 --- a/lapacke/src/lapacke_zungtr.c +++ b/lapacke/src/lapacke_zungtr.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_zungtr( int matrix_order, char uplo, lapack_int n, +lapack_int LAPACKE_zungtr( int matrix_layout, char uplo, lapack_int n, lapack_complex_double* a, lapack_int lda, const lapack_complex_double* tau ) { @@ -41,13 +41,13 @@ lapack_int LAPACKE_zungtr( int matrix_order, char uplo, lapack_int n, lapack_int lwork = -1; lapack_complex_double* work = NULL; lapack_complex_double 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_zungtr", -1 ); return -1; } #ifndef LAPACK_DISABLE_NAN_CHECK /* Optionally check input matrices for NaNs */ - if( LAPACKE_zge_nancheck( matrix_order, n, n, a, lda ) ) { + if( LAPACKE_zge_nancheck( matrix_layout, n, n, a, lda ) ) { return -4; } if( LAPACKE_z_nancheck( n-1, tau, 1 ) ) { @@ -55,7 +55,7 @@ lapack_int LAPACKE_zungtr( int matrix_order, char uplo, lapack_int n, } #endif /* Query optimal working array(s) size */ - info = LAPACKE_zungtr_work( matrix_order, uplo, n, a, lda, tau, &work_query, + info = LAPACKE_zungtr_work( matrix_layout, uplo, n, a, lda, tau, &work_query, lwork ); if( info != 0 ) { goto exit_level_0; @@ -69,7 +69,7 @@ lapack_int LAPACKE_zungtr( int matrix_order, char uplo, lapack_int n, goto exit_level_0; } /* Call middle-level interface */ - info = LAPACKE_zungtr_work( matrix_order, uplo, n, a, lda, tau, work, + info = LAPACKE_zungtr_work( matrix_layout, uplo, n, a, lda, tau, work, lwork ); /* Release memory and exit */ LAPACKE_free( work ); |