35#ifndef _BLAZE_MATH_LAPACK_CLAPACK_HESV_H_
36#define _BLAZE_MATH_LAPACK_CLAPACK_HESV_H_
57#if !defined(INTEL_MKL_VERSION)
154#if defined(INTEL_MKL_VERSION)
157 using ET = MKL_Complex8;
162 chesv_( &uplo, &n, &nrhs,
reinterpret_cast<ET*
>( A ), &lda, ipiv,
163 reinterpret_cast<ET*
>( B ), &ldb,
reinterpret_cast<ET*
>( work ), &lwork, info
164#
if !defined(INTEL_MKL_VERSION)
227#if defined(INTEL_MKL_VERSION)
230 using ET = MKL_Complex16;
235 zhesv_( &uplo, &n, &nrhs,
reinterpret_cast<ET*
>( A ), &lda, ipiv,
236 reinterpret_cast<ET*
>( B ), &ldb,
reinterpret_cast<ET*
>( work ), &lwork, info
237#
if !defined(INTEL_MKL_VERSION)
Header file for the complex data type.
Complex data type of the Blaze library.
void hesv(DenseMatrix< MT1, SO1 > &A, DenseMatrix< MT2, SO2 > &B, char uplo, blas_int_t *ipiv)
LAPACK kernel for solving a Hermitian indefinite linear system of equations ( ).
Definition: hesv.h:264
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.