35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_SYEV_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_SYEV_H_ 56 #if !defined(INTEL_MKL_VERSION) 59 void ssyev_(
char* jobz,
char* uplo,
int* n,
float* A,
int* lda,
float* w,
float* work,
61 void dsyev_(
char* jobz,
char* uplo,
int* n,
double* A,
int* lda,
double* w,
double* work,
83 void syev(
char jobz,
char uplo,
int n,
float* A,
int lda,
84 float* w,
float* work,
int lwork,
int* info );
86 void syev(
char jobz,
char uplo,
int n,
double* A,
int lda,
87 double* w,
double* work,
int lwork,
int* info );
132 inline void syev(
char jobz,
char uplo,
int n,
float* A,
int lda,
133 float* w,
float* work,
int lwork,
int* info )
135 #if defined(INTEL_MKL_VERSION) 139 ssyev_( &jobz, &uplo, &n, A, &lda, w, work, &lwork, info,
185 inline void syev(
char jobz,
char uplo,
int n,
double* A,
int lda,
186 double* w,
double* work,
int lwork,
int* info )
188 #if defined(INTEL_MKL_VERSION) 192 dsyev_( &jobz, &uplo, &n, A, &lda, w, work, &lwork, info,
Header file for basic type definitions.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
void syev(char jobz, char uplo, int n, float *A, int lda, float *w, float *work, int lwork, int *info)
LAPACK kernel for computing the eigenvalues of the given dense symmetric single precision column-majo...
Definition: syev.h:132
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.