35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_HETRI_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_HETRI_H_ 56 #if !defined(INTEL_MKL_VERSION) 59 void chetri_(
char* uplo,
int* n,
float* A,
int* lda,
int* ipiv,
float* work,
61 void zhetri_(
char* uplo,
int* n,
double* A,
int* lda,
int* ipiv,
double* work,
83 void hetri(
char uplo,
int n, complex<float>* A,
int lda,
84 const int* ipiv, complex<float>* work,
int* info );
86 void hetri(
char uplo,
int n, complex<double>* A,
int lda,
87 const int* ipiv, complex<double>* work,
int* info );
124 inline void hetri(
char uplo,
int n, complex<float>* A,
int lda,
125 const int* ipiv, complex<float>* work,
int* info )
129 #if defined(INTEL_MKL_VERSION) 131 using ET = MKL_Complex8;
136 chetri_( &uplo, &n, reinterpret_cast<ET*>( A ), &lda, const_cast<int*>( ipiv ),
174 inline void hetri(
char uplo,
int n, complex<double>* A,
int lda,
175 const int* ipiv, complex<double>* work,
int* info )
179 #if defined(INTEL_MKL_VERSION) 181 using ET = MKL_Complex16;
186 zhetri_( &uplo, &n, reinterpret_cast<ET*>( A ), &lda, const_cast<int*>( ipiv ),
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:124
Header file for basic type definitions.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
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
Size type of the Blaze library.