35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_HETRI_H_
36 #define _BLAZE_MATH_LAPACK_CLAPACK_HETRI_H_
57 void chetri_(
char* uplo,
int* n,
float* A,
int* lda,
int* ipiv,
float* work,
int*
info );
58 void zhetri_(
char* uplo,
int* n,
double* A,
int* lda,
int* ipiv,
double* work,
int*
info );
78 inline void hetri(
char uplo,
int n, complex<float>* A,
int lda,
79 const int* ipiv, complex<float>* work,
int*
info );
81 inline void hetri(
char uplo,
int n, complex<double>* A,
int lda,
82 const int* ipiv, complex<double>* work,
int*
info );
118 inline void hetri(
char uplo,
int n, complex<float>* A,
int lda,
119 const int* ipiv, complex<float>* work,
int*
info )
123 chetri_( &uplo, &n, reinterpret_cast<float*>( A ), &lda,
124 const_cast<int*>( ipiv ), reinterpret_cast<float*>( work ), info );
160 inline void hetri(
char uplo,
int n, complex<double>* A,
int lda,
161 const int* ipiv, complex<double>* work,
int*
info )
165 zhetri_( &uplo, &n, reinterpret_cast<double*>( A ), &lda,
166 const_cast<int*>( ipiv ), reinterpret_cast<double*>( work ), info );
Log level for high-level information.
Definition: LogLevel.h:80
void hetri(char uplo, int n, complex< float > *A, int lda, const int *ipiv, complex< float > *work, int *info)
LAPACK kernel for the inversion of the given dense Hermitian indefinite single precision complex colu...
Definition: hetri.h:118
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
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