35#ifndef _BLAZE_MATH_LAPACK_CLAPACK_POTRI_H_
36#define _BLAZE_MATH_LAPACK_CLAPACK_POTRI_H_
57#if !defined(INTEL_MKL_VERSION) && !defined(BLAS_H)
132#if defined(INTEL_MKL_VERSION)
136 spotri_( &uplo, &n, A, &lda, info
137#
if !defined(INTEL_MKL_VERSION) && !defined(BLAS_H)
178#if defined(INTEL_MKL_VERSION)
182 dpotri_( &uplo, &n, A, &lda, info
183#
if !defined(INTEL_MKL_VERSION) && !defined(BLAS_H)
226#if defined(INTEL_MKL_VERSION)
229 using ET = MKL_Complex8;
234 cpotri_( &uplo, &n,
reinterpret_cast<ET*
>( A ), &lda, info
235#
if !defined(INTEL_MKL_VERSION) && !defined(BLAS_H)
278#if defined(INTEL_MKL_VERSION)
281 using ET = MKL_Complex16;
286 zpotri_( &uplo, &n,
reinterpret_cast<ET*
>( A ), &lda, info
287#
if !defined(INTEL_MKL_VERSION) && !defined(BLAS_H)
Header file for the complex data type.
Complex data type of the Blaze library.
void potri(DenseMatrix< MT, SO > &A, char uplo)
LAPACK kernel for the inversion of the given dense positive definite matrix.
Definition: potri.h:115
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.