35#ifndef _BLAZE_MATH_LAPACK_CLAPACK_SYEVD_H_
36#define _BLAZE_MATH_LAPACK_CLAPACK_SYEVD_H_
57#if !defined(INTEL_MKL_VERSION)
145#if defined(INTEL_MKL_VERSION)
149 ssyevd_( &jobz, &uplo, &n, A, &lda, w, work, &lwork, iwork, &liwork, info
150#
if !defined(INTEL_MKL_VERSION)
204#if defined(INTEL_MKL_VERSION)
208 dsyevd_( &jobz, &uplo, &n, A, &lda, w, work, &lwork, iwork, &liwork, info
209#
if !defined(INTEL_MKL_VERSION)
Header file for the complex data type.
void syevd(DenseMatrix< MT, SO > &A, DenseVector< VT, TF > &w, char jobz, char uplo)
LAPACK kernel for computing the eigenvalues of the given dense symmetric matrix.
Definition: syevd.h:140
int32_t blas_int_t
Signed integer type used in the BLAS/LAPACK wrapper functions.
Definition: Types.h:64
#define BLAZE_STATIC_ASSERT(expr)
Compile time assertion macro.
Definition: StaticAssert.h:112
size_t fortran_charlen_t
Type of the hidden arguments of character type within a Fortran forward declaration.
Definition: Types.h:186
Header file for basic BLAS type definitions.
Header file for basic type definitions.