summaryrefslogtreecommitdiff
path: root/lapacke/src/lapacke_zhptri.c
diff options
context:
space:
mode:
Diffstat (limited to 'lapacke/src/lapacke_zhptri.c')
-rw-r--r--lapacke/src/lapacke_zhptri.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lapacke/src/lapacke_zhptri.c b/lapacke/src/lapacke_zhptri.c
index 897dfcaa..e5d254b4 100644
--- a/lapacke/src/lapacke_zhptri.c
+++ b/lapacke/src/lapacke_zhptri.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_zhptri( int matrix_order, char uplo, lapack_int n,
+lapack_int LAPACKE_zhptri( int matrix_layout, char uplo, lapack_int n,
lapack_complex_double* ap, const lapack_int* ipiv )
{
lapack_int info = 0;
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_zhptri", -1 );
return -1;
}
@@ -56,7 +56,7 @@ lapack_int LAPACKE_zhptri( int matrix_order, char uplo, lapack_int n,
goto exit_level_0;
}
/* Call middle-level interface */
- info = LAPACKE_zhptri_work( matrix_order, uplo, n, ap, ipiv, work );
+ info = LAPACKE_zhptri_work( matrix_layout, uplo, n, ap, ipiv, work );
/* Release memory and exit */
LAPACKE_free( work );
exit_level_0: