35#ifndef _BLAZE_MATH_LAPACK_CLAPACK_HETRF_H_
36#define _BLAZE_MATH_LAPACK_CLAPACK_HETRF_H_
57#if !defined(INTEL_MKL_VERSION)
148#if defined(INTEL_MKL_VERSION)
151 using ET = MKL_Complex8;
156 chetrf_( &uplo, &n,
reinterpret_cast<ET*
>( A ), &lda, ipiv,
157 reinterpret_cast<ET*
>( work ), &lwork, info
158#
if !defined(INTEL_MKL_VERSION)
219#if defined(INTEL_MKL_VERSION)
222 using ET = MKL_Complex16;
227 zhetrf_( &uplo, &n,
reinterpret_cast<ET*
>( A ), &lda, ipiv,
228 reinterpret_cast<ET*
>( work ), &lwork, info
229#
if !defined(INTEL_MKL_VERSION)
Header file for the complex data type.
Complex data type of the Blaze library.
void hetrf(DenseMatrix< MT, SO > &A, char uplo, blas_int_t *ipiv)
LAPACK kernel for the decomposition of the given dense Hermitian indefinite matrix.
Definition: hetrf.h:121
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.