35#ifndef _BLAZE_MATH_LAPACK_CLAPACK_POSV_H_
36#define _BLAZE_MATH_LAPACK_CLAPACK_POSV_H_
57#if !defined(INTEL_MKL_VERSION)
155#if defined(INTEL_MKL_VERSION)
159 sposv_( &uplo, &n, &nrhs, A, &lda, B, &ldb, info
160#
if !defined(INTEL_MKL_VERSION)
216#if defined(INTEL_MKL_VERSION)
220 dposv_( &uplo, &n, &nrhs, A, &lda, B, &ldb, info
221#
if !defined(INTEL_MKL_VERSION)
279#if defined(INTEL_MKL_VERSION)
282 using ET = MKL_Complex8;
287 cposv_( &uplo, &n, &nrhs,
reinterpret_cast<ET*
>( A ), &lda,
288 reinterpret_cast<ET*
>( B ), &ldb, info
289#
if !defined(INTEL_MKL_VERSION)
347#if defined(INTEL_MKL_VERSION)
350 using ET = MKL_Complex16;
355 zposv_( &uplo, &n, &nrhs,
reinterpret_cast<ET*
>( A ), &lda,
356 reinterpret_cast<ET*
>( B ), &ldb, info
357#
if !defined(INTEL_MKL_VERSION)
Header file for the complex data type.
Complex data type of the Blaze library.
void posv(DenseMatrix< MT1, SO1 > &A, DenseMatrix< MT2, SO2 > &B, char uplo)
LAPACK kernel for solving a positive definite linear system of equations ( ).
Definition: posv.h:256
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.