35#ifndef _BLAZE_MATH_LAPACK_CLAPACK_SYEV_H_
36#define _BLAZE_MATH_LAPACK_CLAPACK_SYEV_H_
57#if !defined(INTEL_MKL_VERSION)
138#if defined(INTEL_MKL_VERSION)
142 ssyev_( &jobz, &uplo, &n, A, &lda, w, work, &lwork, info
143#
if !defined(INTEL_MKL_VERSION)
194#if defined(INTEL_MKL_VERSION)
198 dsyev_( &jobz, &uplo, &n, A, &lda, w, work, &lwork, info
199#
if !defined(INTEL_MKL_VERSION)
Header file for the complex data type.
void syev(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: syev.h:139
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.