summaryrefslogtreecommitdiff
path: root/lapacke/src/lapacke_zpocon.c
diff options
context:
space:
mode:
Diffstat (limited to 'lapacke/src/lapacke_zpocon.c')
-rw-r--r--lapacke/src/lapacke_zpocon.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lapacke/src/lapacke_zpocon.c b/lapacke/src/lapacke_zpocon.c
index 8f1e30eb..3f02939b 100644
--- a/lapacke/src/lapacke_zpocon.c
+++ b/lapacke/src/lapacke_zpocon.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,20 +33,20 @@
#include "lapacke_utils.h"
-lapack_int LAPACKE_zpocon( int matrix_order, char uplo, lapack_int n,
+lapack_int LAPACKE_zpocon( int matrix_layout, char uplo, lapack_int n,
const lapack_complex_double* a, lapack_int lda,
double anorm, double* rcond )
{
lapack_int info = 0;
double* rwork = NULL;
lapack_complex_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_zpocon", -1 );
return -1;
}
#ifndef LAPACK_DISABLE_NAN_CHECK
/* Optionally check input matrices for NaNs */
- if( LAPACKE_zpo_nancheck( matrix_order, uplo, n, a, lda ) ) {
+ if( LAPACKE_zpo_nancheck( matrix_layout, uplo, n, a, lda ) ) {
return -4;
}
if( LAPACKE_d_nancheck( 1, &anorm, 1 ) ) {
@@ -66,7 +66,7 @@ lapack_int LAPACKE_zpocon( int matrix_order, char uplo, lapack_int n,
goto exit_level_1;
}
/* Call middle-level interface */
- info = LAPACKE_zpocon_work( matrix_order, uplo, n, a, lda, anorm, rcond,
+ info = LAPACKE_zpocon_work( matrix_layout, uplo, n, a, lda, anorm, rcond,
work, rwork );
/* Release memory and exit */
LAPACKE_free( work );