35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_HEEV_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_HEEV_H_ 55 #if !defined(INTEL_MKL_VERSION) 58 void cheev_(
char* jobz,
char* uplo,
int* n,
float* A,
int* lda,
float* w,
float* work,
int* lwork,
float* rwork,
int* info );
59 void zheev_(
char* jobz,
char* uplo,
int* n,
double* A,
int* lda,
double* w,
double* work,
int* lwork,
double* rwork,
int* info );
80 inline void heev(
char jobz,
char uplo,
int n, complex<float>* A,
int lda,
81 float* w, complex<float>* work,
int lwork,
float* rwork,
int* info );
83 inline void heev(
char jobz,
char uplo,
int n, complex<double>* A,
int lda,
84 double* w, complex<double>* work,
int lwork,
float* rwork,
int* info );
130 inline void heev(
char jobz,
char uplo,
int n, complex<float>* A,
int lda,
131 float* w, complex<float>* work,
int lwork,
float* rwork,
int* info )
135 #if defined(INTEL_MKL_VERSION) 137 using ET = MKL_Complex8;
142 cheev_( &jobz, &uplo, &n, reinterpret_cast<ET*>( A ), &lda, w,
143 reinterpret_cast<ET*>( work ), &lwork, rwork, info );
189 inline void heev(
char jobz,
char uplo,
int n, complex<double>* A,
int lda,
190 double* w, complex<double>* work,
int lwork,
double* rwork,
int* info )
194 #if defined(INTEL_MKL_VERSION) 196 using ET = MKL_Complex16;
201 zheev_( &jobz, &uplo, &n, reinterpret_cast<ET*>( A ), &lda, w,
202 reinterpret_cast<ET*>( work ), &lwork, rwork, info );
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:130
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