35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_HETRF_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_HETRF_H_ 56 #if !defined(INTEL_MKL_VERSION) 59 void chetrf_(
char* uplo,
int* n,
float* A,
int* lda,
int* ipiv,
float* work,
int* lwork,
61 void zhetrf_(
char* uplo,
int* n,
double* A,
int* lda,
int* ipiv,
double* work,
int* lwork,
83 void hetrf(
char uplo,
int n, complex<float>* A,
int lda,
int* ipiv,
84 complex<float>* work,
int lwork,
int* info );
86 void hetrf(
char uplo,
int n, complex<double>* A,
int lda,
int* ipiv,
87 complex<double>* work,
int lwork,
int* info );
140 inline void hetrf(
char uplo,
int n, complex<float>* A,
int lda,
int* ipiv,
141 complex<float>* work,
int lwork,
int* info )
145 #if defined(INTEL_MKL_VERSION) 147 using ET = MKL_Complex8;
152 chetrf_( &uplo, &n, reinterpret_cast<ET*>( A ), &lda, ipiv,
206 inline void hetrf(
char uplo,
int n, complex<double>* A,
int lda,
int* ipiv,
207 complex<double>* work,
int lwork,
int* info )
211 #if defined(INTEL_MKL_VERSION) 213 using ET = MKL_Complex16;
218 zhetrf_( &uplo, &n, reinterpret_cast<ET*>( A ), &lda, ipiv,
Header file for basic type definitions.
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:140
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.