35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_HEEV_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_HEEV_H_ 56 #if !defined(INTEL_MKL_VERSION) 59 void cheev_(
char* jobz,
char* uplo,
int* n,
float* A,
int* lda,
float* w,
60 float* work,
int* lwork,
float* rwork,
int* info,
62 void zheev_(
char* jobz,
char* uplo,
int* n,
double* A,
int* lda,
double* w,
63 double* work,
int* lwork,
double* rwork,
int* info,
85 void heev(
char jobz,
char uplo,
int n, complex<float>* A,
int lda,
86 float* w, complex<float>* work,
int lwork,
float* rwork,
int* info );
88 void heev(
char jobz,
char uplo,
int n, complex<double>* A,
int lda,
89 double* w, complex<double>* work,
int lwork,
double* rwork,
int* info );
135 inline void heev(
char jobz,
char uplo,
int n, complex<float>* A,
int lda,
136 float* w, complex<float>* work,
int lwork,
float* rwork,
int* info )
140 #if defined(INTEL_MKL_VERSION) 142 using ET = MKL_Complex8;
147 cheev_( &jobz, &uplo, &n, reinterpret_cast<ET*>( A ), &lda, w,
148 reinterpret_cast<ET*>( work ), &lwork, rwork, info,
195 inline void heev(
char jobz,
char uplo,
int n, complex<double>* A,
int lda,
196 double* w, complex<double>* work,
int lwork,
double* rwork,
int* info )
200 #if defined(INTEL_MKL_VERSION) 202 using ET = MKL_Complex16;
207 zheev_( &jobz, &uplo, &n, reinterpret_cast<ET*>( A ), &lda, w,
208 reinterpret_cast<ET*>( work ), &lwork, rwork, info,
Header file for basic type definitions.
void heev(char jobz, char uplo, int n, complex< float > *A, int lda, float *w, complex< float > *work, int lwork, float *rwork, int *info)
LAPACK kernel for computing the eigenvalues of the given dense Hermitian single precision column-majo...
Definition: heev.h:135
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.