35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_HESV_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_HESV_H_ 55 #if !defined(INTEL_MKL_VERSION) 58 void chesv_(
char* uplo,
int* n,
int* nrhs,
float* A,
int* lda,
int* ipiv,
float* b,
int* ldb,
float* work,
int* lwork,
int* info );
59 void zhesv_(
char* uplo,
int* n,
int* nrhs,
double* A,
int* lda,
int* ipiv,
double* b,
int* ldb,
double* work,
int* lwork,
int* info );
80 inline void hesv(
char uplo,
int n,
int nrhs, complex<float>* A,
int lda,
int* ipiv,
81 complex<float>* B,
int ldb, complex<float>* work,
int lwork,
int* info );
83 inline void hesv(
char uplo,
int n,
int nrhs, complex<double>* A,
int lda,
int* ipiv,
84 complex<double>* B,
int ldb, complex<double>* work,
int lwork,
int* info );
138 inline void hesv(
char uplo,
int n,
int nrhs, complex<float>* A,
int lda,
int* ipiv,
139 complex<float>* B,
int ldb, complex<float>* work,
int lwork,
int* info )
143 #if defined(INTEL_MKL_VERSION) 145 using ET = MKL_Complex8;
150 chesv_( &uplo, &n, &nrhs, reinterpret_cast<ET*>( A ), &lda, ipiv,
151 reinterpret_cast<ET*>( B ), &ldb, reinterpret_cast<ET*>( work ), &lwork, info );
205 inline void hesv(
char uplo,
int n,
int nrhs, complex<double>* A,
int lda,
int* ipiv,
206 complex<double>* B,
int ldb, complex<double>* work,
int lwork,
int* info )
210 #if defined(INTEL_MKL_VERSION) 212 using ET = MKL_Complex16;
217 zhesv_( &uplo, &n, &nrhs, reinterpret_cast<ET*>( A ), &lda, ipiv,
218 reinterpret_cast<ET*>( B ), &ldb, reinterpret_cast<ET*>( work ), &lwork, info );
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
void hesv(char uplo, int n, int nrhs, complex< float > *A, int lda, int *ipiv, complex< float > *B, int ldb, complex< float > *work, int lwork, int *info)
LAPACK kernel for solving a Hermitian indefinite single precision complex linear system of equations ...
Definition: hesv.h:138
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