35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_POTRS_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_POTRS_H_ 56 #if !defined(INTEL_MKL_VERSION) 59 void spotrs_(
char* uplo,
int* n,
int* nrhs,
float* A,
int* lda,
float* B,
int* ldb,
61 void dpotrs_(
char* uplo,
int* n,
int* nrhs,
double* A,
int* lda,
double* B,
int* ldb,
63 void cpotrs_(
char* uplo,
int* n,
int* nrhs,
float* A,
int* lda,
float* B,
int* ldb,
65 void zpotrs_(
char* uplo,
int* n,
int* nrhs,
double* A,
int* lda,
double* B,
int* ldb,
87 void potrs(
char uplo,
int n,
int nrhs,
const float* A,
int lda,
88 float* B,
int ldb,
int* info );
90 void potrs(
char uplo,
int n,
int nrhs,
const double* A,
int lda,
91 double* B,
int ldb,
int* info );
93 void potrs(
char uplo,
int n,
int nrhs,
const complex<float>* A,
int lda,
94 complex<float>* B,
int ldb,
int* info );
96 void potrs(
char uplo,
int n,
int nrhs,
const complex<double>* A,
int lda,
97 complex<double>* B,
int ldb,
int* info );
135 inline void potrs(
char uplo,
int n,
int nrhs,
const float* A,
int lda,
float* B,
int ldb,
int* info )
137 #if defined(INTEL_MKL_VERSION) 141 spotrs_( &uplo, &n, &nrhs, const_cast<float*>( A ), &lda, B, &ldb, info,
180 inline void potrs(
char uplo,
int n,
int nrhs,
const double* A,
int lda,
double* B,
int ldb,
int* info )
182 #if defined(INTEL_MKL_VERSION) 186 dpotrs_( &uplo, &n, &nrhs, const_cast<double*>( A ), &lda, B, &ldb, info,
225 inline void potrs(
char uplo,
int n,
int nrhs,
const complex<float>* A,
226 int lda, complex<float>* B,
int ldb,
int* info )
230 #if defined(INTEL_MKL_VERSION) 232 using ET = MKL_Complex8;
237 cpotrs_( &uplo, &n, &nrhs, const_cast<ET*>( reinterpret_cast<const ET*>( A ) ),
276 inline void potrs(
char uplo,
int n,
int nrhs,
const complex<double>* A,
277 int lda, complex<double>* B,
int ldb,
int* info )
281 #if defined(INTEL_MKL_VERSION) 283 using ET = MKL_Complex16;
288 zpotrs_( &uplo, &n, &nrhs, const_cast<ET*>( reinterpret_cast<const ET*>( A ) ),
Header file for basic type definitions.
void potrs(char uplo, int n, int nrhs, const float *A, int lda, float *B, int ldb, int *info)
LAPACK kernel for the substitution step of solving a positive definite single precision linear system...
Definition: potrs.h:135
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
Header file for the complex data type.
#define BLAZE_STATIC_ASSERT(expr)
Compile time assertion macro.In case of an invalid compile time expression, a compilation error is cr...
Definition: StaticAssert.h:112
Size type of the Blaze library.