35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_HEEVX_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_HEEVX_H_ 56 #if !defined(INTEL_MKL_VERSION) 59 void cheevx_(
char* jobz,
char* range,
char* uplo,
int* n,
float* A,
int* lda,
float* vl,
60 float* vu,
int* il,
int* iu,
float* abstol,
int* m,
float* w,
float* Z,
int* ldz,
61 float* work,
int* lwork,
float* rwork,
int* iwork,
int* ifail,
int* info,
64 void zheevx_(
char* jobz,
char* range,
char* uplo,
int* n,
double* A,
int* lda,
double* vl,
65 double* vu,
int* il,
int* iu,
double* abstol,
int* m,
double* w,
double* Z,
int* ldz,
66 double* work,
int* lwork,
double* rwork,
int* iwork,
int* ifail,
int* info,
89 void heevx(
char jobz,
char range,
char uplo,
int n, complex<float>* A,
int lda,
90 float vl,
float vu,
int il,
int iu,
float abstol,
int* m,
float* w,
91 complex<float>* Z,
int ldz, complex<float>* work,
int lwork,
92 float* rwork,
int* iwork,
int* ifail,
int* info );
94 void heevx(
char jobz,
char range,
char uplo,
int n, complex<double>* A,
int lda,
95 double vl,
double vu,
int il,
int iu,
double abstol,
int* m,
double* w,
96 complex<double>* Z,
int ldz, complex<double>* work,
int lwork,
97 double* rwork,
int* iwork,
int* ifail,
int* info );
160 inline void heevx(
char jobz,
char range,
char uplo,
int n, complex<float>* A,
int lda,
161 float vl,
float vu,
int il,
int iu,
float abstol,
int* m,
float* w,
162 complex<float>* Z,
int ldz, complex<float>* work,
int lwork,
163 float* rwork,
int* iwork,
int* ifail,
int* info )
167 #if defined(INTEL_MKL_VERSION) 169 using ET = MKL_Complex8;
177 cheevx_( &jobz, &range, &uplo, &n, reinterpret_cast<ET*>( A ), &lda, &vl, &vu, &il, &iu,
178 &abstol, m, w, reinterpret_cast<ET*>( Z ), &ldz, reinterpret_cast<ET*>( work ),
243 inline void heevx(
char jobz,
char range,
char uplo,
int n, complex<double>* A,
int lda,
244 double vl,
double vu,
int il,
int iu,
double abstol,
int* m,
double* w,
245 complex<double>* Z,
int ldz, complex<double>* work,
int lwork,
246 double* rwork,
int* iwork,
int* ifail,
int* info )
250 #if defined(INTEL_MKL_VERSION) 252 using ET = MKL_Complex16;
260 zheevx_( &jobz, &range, &uplo, &n, reinterpret_cast<ET*>( A ), &lda, &vl, &vu, &il, &iu,
261 &abstol, m, w, reinterpret_cast<ET*>( Z ), &ldz, reinterpret_cast<ET*>( work ),
Header file for basic type definitions.
void heevx(char jobz, char range, char uplo, int n, complex< float > *A, int lda, float vl, float vu, int il, int iu, float abstol, int *m, float *w, complex< float > *Z, int ldz, complex< float > *work, int lwork, float *rwork, int *iwork, int *ifail, int *info)
LAPACK kernel for computing the eigenvalues of the given dense Hermitian single precision complex col...
Definition: heevx.h:160
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.