diff options
Diffstat (limited to 'lapacke/src/lapacke_zpoequ_work.c')
-rw-r--r-- | lapacke/src/lapacke_zpoequ_work.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lapacke/src/lapacke_zpoequ_work.c b/lapacke/src/lapacke_zpoequ_work.c index a94c7914..7f3b2301 100644 --- a/lapacke/src/lapacke_zpoequ_work.c +++ b/lapacke/src/lapacke_zpoequ_work.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,18 +33,18 @@ #include "lapacke_utils.h" -lapack_int LAPACKE_zpoequ_work( int matrix_order, lapack_int n, +lapack_int LAPACKE_zpoequ_work( int matrix_layout, lapack_int n, const lapack_complex_double* a, lapack_int lda, double* s, double* scond, double* amax ) { lapack_int info = 0; - if( matrix_order == LAPACK_COL_MAJOR ) { + if( matrix_layout == LAPACK_COL_MAJOR ) { /* Call LAPACK function and adjust info */ LAPACK_zpoequ( &n, a, &lda, s, scond, amax, &info ); if( info < 0 ) { info = info - 1; } - } else if( matrix_order == LAPACK_ROW_MAJOR ) { + } else if( matrix_layout == LAPACK_ROW_MAJOR ) { lapack_int lda_t = MAX(1,n); lapack_complex_double* a_t = NULL; /* Check leading dimension(s) */ @@ -61,7 +61,7 @@ lapack_int LAPACKE_zpoequ_work( int matrix_order, lapack_int n, goto exit_level_0; } /* Transpose input matrices */ - LAPACKE_zge_trans( matrix_order, n, n, a, lda, a_t, lda_t ); + LAPACKE_zge_trans( matrix_layout, n, n, a, lda, a_t, lda_t ); /* Call LAPACK function and adjust info */ LAPACK_zpoequ( &n, a_t, &lda_t, s, scond, amax, &info ); if( info < 0 ) { |