35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_HEEVD_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_HEEVD_H_ 56 #if !defined(INTEL_MKL_VERSION) 59 void cheevd_(
char* jobz,
char* uplo,
int* n,
float* A,
int* lda,
float* w,
60 float* work,
int* lwork,
float* rwork,
int* lrwork,
int* iwork,
int* liwork,
62 void zheevd_(
char* jobz,
char* uplo,
int* n,
double* A,
int* lda,
double* w,
63 double* work,
int* lwork,
double* rwork,
int* lrwork,
int* iwork,
int* liwork,
85 void heevd(
char jobz,
char uplo,
int n, complex<float>* A,
int lda,
float* w,
86 complex<float>* work,
int lwork,
float* rwork,
int lrwork,
87 int* iwork,
int liwork,
int* info );
89 void heevd(
char jobz,
char uplo,
int n, complex<double>* A,
int lda,
double* w,
90 complex<double>* work,
int lwork,
double* rwork,
int lrwork,
91 int* iwork,
int liwork,
int* info );
140 inline void heevd(
char jobz,
char uplo,
int n, complex<float>* A,
int lda,
float* w,
141 complex<float>* work,
int lwork,
float* rwork,
int lrwork,
142 int* iwork,
int liwork,
int* info )
146 #if defined(INTEL_MKL_VERSION) 148 using ET = MKL_Complex8;
153 cheevd_( &jobz, &uplo, &n, reinterpret_cast<ET*>( A ), &lda, w,
154 reinterpret_cast<ET*>( work ), &lwork, rwork, &lrwork, iwork, &liwork, info,
204 inline void heevd(
char jobz,
char uplo,
int n, complex<double>* A,
int lda,
205 double* w, complex<double>* work,
int lwork,
double* rwork,
int lrwork,
206 int* iwork,
int liwork,
int* info )
210 #if defined(INTEL_MKL_VERSION) 212 using ET = MKL_Complex16;
217 zheevd_( &jobz, &uplo, &n, reinterpret_cast<ET*>( A ), &lda, w,
218 reinterpret_cast<ET*>( work ), &lwork, rwork, &lrwork, iwork, &liwork, info,
Header file for basic type definitions.
void heevd(char jobz, char uplo, int n, complex< float > *A, int lda, float *w, complex< float > *work, int lwork, float *rwork, int lrwork, int *iwork, int liwork, int *info)
LAPACK kernel for computing the eigenvalues of the given dense Hermitian single precision column-majo...
Definition: heevd.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.