35#ifndef _BLAZE_MATH_LAPACK_CLAPACK_HETRI_H_
36#define _BLAZE_MATH_LAPACK_CLAPACK_HETRI_H_
57#if !defined(INTEL_MKL_VERSION)
132#if defined(INTEL_MKL_VERSION)
135 using ET = MKL_Complex8;
140 chetri_( &uplo, &n,
reinterpret_cast<ET*
>( A ), &lda,
const_cast<blas_int_t*
>( ipiv ),
141 reinterpret_cast<ET*
>( work ), info
142#
if !defined(INTEL_MKL_VERSION)
187#if defined(INTEL_MKL_VERSION)
190 using ET = MKL_Complex16;
195 zhetri_( &uplo, &n,
reinterpret_cast<ET*
>( A ), &lda,
const_cast<blas_int_t*
>( ipiv ),
196 reinterpret_cast<ET*
>( work ), info
197#
if !defined(INTEL_MKL_VERSION)
Header file for the complex data type.
Complex data type of the Blaze library.
void hetri(DenseMatrix< MT, SO > &A, char uplo, const blas_int_t *ipiv)
LAPACK kernel for the inversion of the given dense Hermitian indefinite matrix.
Definition: hetri.h:116
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.