35#ifndef _BLAZE_MATH_LAPACK_CLAPACK_POTRF_H_
36#define _BLAZE_MATH_LAPACK_CLAPACK_POTRF_H_
57#if !defined(INTEL_MKL_VERSION) && !defined(BLAS_H)
139#if defined(INTEL_MKL_VERSION)
143 spotrf_( &uplo, &n, A, &lda, info
144#
if !defined(INTEL_MKL_VERSION) && !defined(BLAS_H)
192#if defined(INTEL_MKL_VERSION)
196 dpotrf_( &uplo, &n, A, &lda, info
197#
if !defined(INTEL_MKL_VERSION) && !defined(BLAS_H)
247#if defined(INTEL_MKL_VERSION)
250 using ET = MKL_Complex8;
255 cpotrf_( &uplo, &n,
reinterpret_cast<ET*
>( A ), &lda, info
256#
if !defined(INTEL_MKL_VERSION) && !defined(BLAS_H)
306#if defined(INTEL_MKL_VERSION)
309 using ET = MKL_Complex16;
314 zpotrf_( &uplo, &n,
reinterpret_cast<ET*
>( A ), &lda, info
315#
if !defined(INTEL_MKL_VERSION) && !defined(BLAS_H)
Header file for the complex data type.
Complex data type of the Blaze library.
void potrf(DenseMatrix< MT, SO > &A, char uplo)
LAPACK kernel for the Cholesky decomposition of the given dense positive definite matrix.
Definition: potrf.h:118
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.