summaryrefslogtreecommitdiff
path: root/lapacke/src/lapacke_cpoequ.c
diff options
context:
space:
mode:
Diffstat (limited to 'lapacke/src/lapacke_cpoequ.c')
-rw-r--r--lapacke/src/lapacke_cpoequ.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lapacke/src/lapacke_cpoequ.c b/lapacke/src/lapacke_cpoequ.c
index 5559a59d..1309572b 100644
--- a/lapacke/src/lapacke_cpoequ.c
+++ b/lapacke/src/lapacke_cpoequ.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_cpoequ( int matrix_order, lapack_int n,
+lapack_int LAPACKE_cpoequ( int matrix_layout, lapack_int n,
const lapack_complex_float* a, lapack_int lda,
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_cpoequ", -1 );
return -1;
}
#ifndef LAPACK_DISABLE_NAN_CHECK
/* Optionally check input matrices for NaNs */
- if( LAPACKE_cge_nancheck( matrix_order, n, n, a, lda ) ) {
+ if( LAPACKE_cge_nancheck( matrix_layout, n, n, a, lda ) ) {
return -3;
}
#endif
- return LAPACKE_cpoequ_work( matrix_order, n, a, lda, s, scond, amax );
+ return LAPACKE_cpoequ_work( matrix_layout, n, a, lda, s, scond, amax );
}