35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_GETRI_H_
36 #define _BLAZE_MATH_LAPACK_CLAPACK_GETRI_H_
57 void sgetri_(
int* n,
float* A,
int* lda,
int* ipiv,
float* work,
int* lwork,
int*
info );
58 void dgetri_(
int* n,
double* A,
int* lda,
int* ipiv,
double* work,
int* lwork,
int*
info );
59 void cgetri_(
int* n,
float* A,
int* lda,
int* ipiv,
float* work,
int* lwork,
int*
info );
60 void zgetri_(
int* n,
double* A,
int* lda,
int* ipiv,
double* work,
int* lwork,
int*
info );
80 inline void getri(
int n,
float* A,
int lda,
const int* ipiv,
float* work,
int lwork,
int*
info );
82 inline void getri(
int n,
double* A,
int lda,
const int* ipiv,
double* work,
int lwork,
int*
info );
84 inline void getri(
int n, complex<float>* A,
int lda,
const int* ipiv,
85 complex<float>* work,
int lwork,
int*
info );
87 inline void getri(
int n, complex<double>* A,
int lda,
const int* ipiv,
88 complex<double>* work,
int lwork,
int*
info );
128 inline void getri(
int n,
float* A,
int lda,
const int* ipiv,
float* work,
int lwork,
int*
info )
130 sgetri_( &n, A, &lda, const_cast<int*>( ipiv ), work, &lwork, info );
170 inline void getri(
int n,
double* A,
int lda,
const int* ipiv,
double* work,
int lwork,
int*
info )
172 dgetri_( &n, A, &lda, const_cast<int*>( ipiv ), work, &lwork, info );
212 inline void getri(
int n, complex<float>* A,
int lda,
const int* ipiv,
213 complex<float>* work,
int lwork,
int*
info )
217 cgetri_( &n, reinterpret_cast<float*>( A ), &lda, const_cast<int*>( ipiv ),
218 reinterpret_cast<float*>( work ), &lwork, info );
258 inline void getri(
int n, complex<double>* A,
int lda,
const int* ipiv,
259 complex<double>* work,
int lwork,
int*
info )
263 zgetri_( &n, reinterpret_cast<double*>( A ), &lda, const_cast<int*>( ipiv ),
264 reinterpret_cast<double*>( work ), &lwork, info );
Log level for high-level information.
Definition: LogLevel.h:80
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
void getri(int n, float *A, int lda, const int *ipiv, float *work, int lwork, int *info)
LAPACK kernel for the inversion of the given dense general single precision column-major square matri...
Definition: getri.h:128
Header file for the complex data type.
#define BLAZE_STATIC_ASSERT(expr)
Compile time assertion macro.In case of an invalid compile time expression, a compilation error is cr...
Definition: StaticAssert.h:112