35#ifndef _BLAZE_MATH_LAPACK_CLAPACK_SYEVX_H_
36#define _BLAZE_MATH_LAPACK_CLAPACK_SYEVX_H_
57#if !defined(INTEL_MKL_VERSION)
67void dsyevx_(
char* jobz,
char* range,
char* uplo,
blaze::blas_int_t* n,
double* A,
172#if defined(INTEL_MKL_VERSION)
179 ssyevx_( &jobz, &range, &uplo, &n, A, &lda, &vl, &vu, &il, &iu,
180 &abstol, m, w, Z, &ldz, work, &lwork, iwork, ifail, info
181#
if !defined(INTEL_MKL_VERSION)
252#if defined(INTEL_MKL_VERSION)
259 dsyevx_( &jobz, &range, &uplo, &n, A, &lda, &vl, &vu, &il, &iu,
260 &abstol, m, w, Z, &ldz, work, &lwork, iwork, ifail, info
261#
if !defined(INTEL_MKL_VERSION)
Header file for the complex data type.
size_t syevx(DenseMatrix< MT1, SO1 > &A, DenseVector< VT, TF > &w, DenseMatrix< MT2, SO2 > &Z, char uplo, ST low, ST upp)
LAPACK kernel for computing the eigenvalues of the given dense symmetric matrix.
Definition: syevx.h:699
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.