diff options
Diffstat (limited to 'lapacke/src/lapacke_ztrttf.c')
-rw-r--r-- | lapacke/src/lapacke_ztrttf.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lapacke/src/lapacke_ztrttf.c b/lapacke/src/lapacke_ztrttf.c index 34a638d1..bb321936 100644 --- a/lapacke/src/lapacke_ztrttf.c +++ b/lapacke/src/lapacke_ztrttf.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,19 +33,19 @@ #include "lapacke_utils.h" -lapack_int LAPACKE_ztrttf( int matrix_order, char transr, char uplo, +lapack_int LAPACKE_ztrttf( int matrix_layout, char transr, char uplo, lapack_int n, const lapack_complex_double* a, lapack_int lda, lapack_complex_double* arf ) { - 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_ztrttf", -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 -5; } #endif - return LAPACKE_ztrttf_work( matrix_order, transr, uplo, n, a, lda, arf ); + return LAPACKE_ztrttf_work( matrix_layout, transr, uplo, n, a, lda, arf ); } |