35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_HESV_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_HESV_H_ 56 #if !defined(INTEL_MKL_VERSION) 59 void chesv_(
char* uplo,
int* n,
int* nrhs,
float* A,
int* lda,
int* ipiv,
float* b,
int* ldb,
61 void zhesv_(
char* uplo,
int* n,
int* nrhs,
double* A,
int* lda,
int* ipiv,
double* b,
int* ldb,
83 void hesv(
char uplo,
int n,
int nrhs, complex<float>* A,
int lda,
int* ipiv,
84 complex<float>* B,
int ldb, complex<float>* work,
int lwork,
int* info );
86 void hesv(
char uplo,
int n,
int nrhs, complex<double>* A,
int lda,
int* ipiv,
87 complex<double>* B,
int ldb, complex<double>* work,
int lwork,
int* info );
141 inline void hesv(
char uplo,
int n,
int nrhs, complex<float>* A,
int lda,
int* ipiv,
142 complex<float>* B,
int ldb, complex<float>* work,
int lwork,
int* info )
146 #if defined(INTEL_MKL_VERSION) 148 using ET = MKL_Complex8;
153 chesv_( &uplo, &n, &nrhs, reinterpret_cast<ET*>( A ), &lda, ipiv,
154 reinterpret_cast<ET*>( B ), &ldb, reinterpret_cast<ET*>( work ), &lwork, info,
209 inline void hesv(
char uplo,
int n,
int nrhs, complex<double>* A,
int lda,
int* ipiv,
210 complex<double>* B,
int ldb, complex<double>* work,
int lwork,
int* info )
214 #if defined(INTEL_MKL_VERSION) 216 using ET = MKL_Complex16;
221 zhesv_( &uplo, &n, &nrhs, reinterpret_cast<ET*>( A ), &lda, ipiv,
222 reinterpret_cast<ET*>( B ), &ldb, reinterpret_cast<ET*>( work ), &lwork, info,
Header file for basic type definitions.
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:141
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.