35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_SYEVD_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_SYEVD_H_ 56 #if !defined(INTEL_MKL_VERSION) 59 void ssyevd_(
char* jobz,
char* uplo,
int* n,
float* A,
int* lda,
float* w,
60 float* work,
int* lwork,
int* iwork,
int* liwork,
int* info,
62 void dsyevd_(
char* jobz,
char* uplo,
int* n,
double* A,
int* lda,
double* w,
63 double* work,
int* lwork,
int* iwork,
int* liwork,
int* info,
85 void syevd(
char jobz,
char uplo,
int n,
float* A,
int lda,
float* w,
86 float* work,
int lwork,
int* iwork,
int liwork,
int* info );
88 void syevd(
char jobz,
char uplo,
int n,
double* A,
int lda,
double* w,
89 double* work,
int lwork,
int* iwork,
int liwork,
int* info );
136 inline void syevd(
char jobz,
char uplo,
int n,
float* A,
int lda,
float* w,
137 float* work,
int lwork,
int* iwork,
int liwork,
int* info )
139 #if defined(INTEL_MKL_VERSION) 143 ssyevd_( &jobz, &uplo, &n, A, &lda, w, work, &lwork, iwork, &liwork, info,
191 inline void syevd(
char jobz,
char uplo,
int n,
double* A,
int lda,
double* w,
192 double* work,
int lwork,
int* iwork,
int liwork,
int* info )
194 #if defined(INTEL_MKL_VERSION) 198 dsyevd_( &jobz, &uplo, &n, A, &lda, w, work, &lwork, iwork, &liwork, info,
Header file for basic type definitions.
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.
void syevd(char jobz, char uplo, int n, float *A, int lda, float *w, float *work, int lwork, int *iwork, int liwork, int *info)
LAPACK kernel for computing the eigenvalues of the given dense symmetric single precision column-majo...
Definition: syevd.h:136