summaryrefslogtreecommitdiff
path: root/lapacke/src/lapacke_cppequ.c
diff options
context:
space:
mode:
Diffstat (limited to 'lapacke/src/lapacke_cppequ.c')
-rw-r--r--lapacke/src/lapacke_cppequ.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lapacke/src/lapacke_cppequ.c b/lapacke/src/lapacke_cppequ.c
index bb5de872..1e6e4350 100644
--- a/lapacke/src/lapacke_cppequ.c
+++ b/lapacke/src/lapacke_cppequ.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,11 +33,11 @@
#include "lapacke_utils.h"
-lapack_int LAPACKE_cppequ( int matrix_order, char uplo, lapack_int n,
+lapack_int LAPACKE_cppequ( int matrix_layout, char uplo, lapack_int n,
const lapack_complex_float* ap, float* s,
float* scond, float* amax )
{
- 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_cppequ", -1 );
return -1;
}
@@ -47,5 +47,5 @@ lapack_int LAPACKE_cppequ( int matrix_order, char uplo, lapack_int n,
return -4;
}
#endif
- return LAPACKE_cppequ_work( matrix_order, uplo, n, ap, s, scond, amax );
+ return LAPACKE_cppequ_work( matrix_layout, uplo, n, ap, s, scond, amax );
}