35#ifndef _BLAZE_MATH_LAPACK_CLAPACK_POTRS_H_
36#define _BLAZE_MATH_LAPACK_CLAPACK_POTRS_H_
57#if !defined(INTEL_MKL_VERSION)
143#if defined(INTEL_MKL_VERSION)
147 spotrs_( &uplo, &n, &nrhs,
const_cast<float*
>( A ), &lda, B, &ldb, info
148#
if !defined(INTEL_MKL_VERSION)
192#if defined(INTEL_MKL_VERSION)
196 dpotrs_( &uplo, &n, &nrhs,
const_cast<double*
>( A ), &lda, B, &ldb, info
197#
if !defined(INTEL_MKL_VERSION)
243#if defined(INTEL_MKL_VERSION)
246 using ET = MKL_Complex8;
251 cpotrs_( &uplo, &n, &nrhs,
const_cast<ET*
>(
reinterpret_cast<const ET*
>( A ) ),
252 &lda,
reinterpret_cast<ET*
>( B ), &ldb, info
253#
if !defined(INTEL_MKL_VERSION)
299#if defined(INTEL_MKL_VERSION)
302 using ET = MKL_Complex16;
307 zpotrs_( &uplo, &n, &nrhs,
const_cast<ET*
>(
reinterpret_cast<const ET*
>( A ) ),
308 &lda,
reinterpret_cast<ET*
>( B ), &ldb, info
309#
if !defined(INTEL_MKL_VERSION)
Header file for the complex data type.
Complex data type of the Blaze library.
void potrs(const DenseMatrix< MT1, SO1 > &A, DenseMatrix< MT2, SO2 > &B, char uplo)
LAPACK kernel for the substitution step of solving a positive definite linear system of equations ( )...
Definition: potrs.h:298
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.