35#ifndef _BLAZE_MATH_LAPACK_CLAPACK_HEEV_H_
36#define _BLAZE_MATH_LAPACK_CLAPACK_HEEV_H_
57#if !defined(INTEL_MKL_VERSION)
139 blas_int_t lda,
float* w, complex<float>* work,
144#if defined(INTEL_MKL_VERSION)
147 using ET = MKL_Complex8;
152 cheev_( &jobz, &uplo, &n,
reinterpret_cast<ET*
>( A ), &lda, w,
153 reinterpret_cast<ET*
>( work ), &lwork, rwork, info
154#
if !defined(INTEL_MKL_VERSION)
204 blas_int_t lda,
double* w, complex<double>* work,
209#if defined(INTEL_MKL_VERSION)
212 using ET = MKL_Complex16;
217 zheev_( &jobz, &uplo, &n,
reinterpret_cast<ET*
>( A ), &lda, w,
218 reinterpret_cast<ET*
>( work ), &lwork, rwork, info
219#
if !defined(INTEL_MKL_VERSION)
Header file for the complex data type.
Complex data type of the Blaze library.
void heev(DenseMatrix< MT, SO > &A, DenseVector< VT, TF > &w, char jobz, char uplo)
LAPACK kernel for computing the eigenvalues of the given dense Hermitian matrix.
Definition: heev.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.