summaryrefslogtreecommitdiff
path: root/lapacke/src/lapacke_stftri.c
diff options
context:
space:
mode:
Diffstat (limited to 'lapacke/src/lapacke_stftri.c')
-rw-r--r--lapacke/src/lapacke_stftri.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lapacke/src/lapacke_stftri.c b/lapacke/src/lapacke_stftri.c
index b4527af0..31a7c5fa 100644
--- a/lapacke/src/lapacke_stftri.c
+++ b/lapacke/src/lapacke_stftri.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_stftri( int matrix_order, char transr, char uplo, char diag,
+lapack_int LAPACKE_stftri( int matrix_layout, char transr, char uplo, char diag,
lapack_int n, float* a )
{
- 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_stftri", -1 );
return -1;
}
#ifndef LAPACK_DISABLE_NAN_CHECK
/* Optionally check input matrices for NaNs */
- if( LAPACKE_stf_nancheck( matrix_order, transr, uplo, diag, n, a ) ) {
+ if( LAPACKE_stf_nancheck( matrix_layout, transr, uplo, diag, n, a ) ) {
return -6;
}
#endif
- return LAPACKE_stftri_work( matrix_order, transr, uplo, diag, n, a );
+ return LAPACKE_stftri_work( matrix_layout, transr, uplo, diag, n, a );
}