35#ifndef _BLAZE_MATH_LAPACK_CLAPACK_SYTRF_H_
36#define _BLAZE_MATH_LAPACK_CLAPACK_SYTRF_H_
57#if !defined(INTEL_MKL_VERSION)
158#if defined(INTEL_MKL_VERSION)
162 ssytrf_( &uplo, &n, A, &lda, ipiv, work, &lwork, info
163#
if !defined(INTEL_MKL_VERSION)
222#if defined(INTEL_MKL_VERSION)
226 dsytrf_( &uplo, &n, A, &lda, ipiv, work, &lwork, info
227#
if !defined(INTEL_MKL_VERSION)
288#if defined(INTEL_MKL_VERSION)
291 using ET = MKL_Complex8;
296 csytrf_( &uplo, &n,
reinterpret_cast<ET*
>( A ), &lda, ipiv,
297 reinterpret_cast<ET*
>( work ), &lwork, info
298#
if !defined(INTEL_MKL_VERSION)
359#if defined(INTEL_MKL_VERSION)
362 using ET = MKL_Complex16;
367 zsytrf_( &uplo, &n,
reinterpret_cast<ET*
>( A ), &lda, ipiv,
368 reinterpret_cast<ET*
>( work ), &lwork, info
369#
if !defined(INTEL_MKL_VERSION)
Header file for the complex data type.
Complex data type of the Blaze library.
void sytrf(DenseMatrix< MT, SO > &A, char uplo, blas_int_t *ipiv)
LAPACK kernel for the decomposition of the given dense symmetric indefinite matrix.
Definition: sytrf.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.