35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_HETRF_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_HETRF_H_ 55 #if !defined(INTEL_MKL_VERSION) 58 void chetrf_(
char* uplo,
int* n,
float* A,
int* lda,
int* ipiv,
float* work,
int* lwork,
int* info );
59 void zhetrf_(
char* uplo,
int* n,
double* A,
int* lda,
int* ipiv,
double* work,
int* lwork,
int* info );
80 inline void hetrf(
char uplo,
int n, complex<float>* A,
int lda,
int* ipiv,
81 complex<float>* work,
int lwork,
int* info );
83 inline void hetrf(
char uplo,
int n, complex<double>* A,
int lda,
int* ipiv,
84 complex<double>* work,
int lwork,
int* info );
137 inline void hetrf(
char uplo,
int n, complex<float>* A,
int lda,
int* ipiv,
138 complex<float>* work,
int lwork,
int* info )
142 #if defined(INTEL_MKL_VERSION) 144 using ET = MKL_Complex8;
149 chetrf_( &uplo, &n, reinterpret_cast<ET*>( A ), &lda, ipiv,
150 reinterpret_cast<ET*>( work ), &lwork, info );
203 inline void hetrf(
char uplo,
int n, complex<double>* A,
int lda,
int* ipiv,
204 complex<double>* work,
int lwork,
int* info )
208 #if defined(INTEL_MKL_VERSION) 210 using ET = MKL_Complex16;
215 zhetrf_( &uplo, &n, reinterpret_cast<ET*>( A ), &lda, ipiv,
216 reinterpret_cast<ET*>( work ), &lwork, info );
void hetrf(char uplo, int n, complex< float > *A, int lda, int *ipiv, complex< float > *work, int lwork, int *info)
LAPACK kernel for the decomposition of the given dense Hermitian indefinite single precision complex ...
Definition: hetrf.h:137
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