35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_POTRS_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_POTRS_H_ 55 #if !defined(INTEL_MKL_VERSION) 58 void spotrs_(
char* uplo,
int* n,
int* nrhs,
float* A,
int* lda,
float* B,
int* ldb,
int* info );
59 void dpotrs_(
char* uplo,
int* n,
int* nrhs,
double* A,
int* lda,
double* B,
int* ldb,
int* info );
60 void cpotrs_(
char* uplo,
int* n,
int* nrhs,
float* A,
int* lda,
float* B,
int* ldb,
int* info );
61 void zpotrs_(
char* uplo,
int* n,
int* nrhs,
double* A,
int* lda,
double* B,
int* ldb,
int* info );
82 inline void potrs(
char uplo,
int n,
int nrhs,
const float* A,
int lda,
float* B,
int ldb,
int* info );
84 inline void potrs(
char uplo,
int n,
int nrhs,
const double* A,
int lda,
double* B,
int ldb,
int* info );
86 inline void potrs(
char uplo,
int n,
int nrhs,
const complex<float>* A,
int lda, complex<float>* B,
int ldb,
int* info );
88 inline void potrs(
char uplo,
int n,
int nrhs,
const complex<double>* A,
int lda, complex<double>* B,
int ldb,
int* info );
126 inline void potrs(
char uplo,
int n,
int nrhs,
const float* A,
int lda,
float* B,
int ldb,
int* info )
128 #if defined(INTEL_MKL_VERSION) 132 spotrs_( &uplo, &n, &nrhs, const_cast<float*>( A ), &lda, B, &ldb, info );
170 inline void potrs(
char uplo,
int n,
int nrhs,
const double* A,
int lda,
double* B,
int ldb,
int* info )
172 #if defined(INTEL_MKL_VERSION) 176 dpotrs_( &uplo, &n, &nrhs, const_cast<double*>( A ), &lda, B, &ldb, info );
214 inline void potrs(
char uplo,
int n,
int nrhs,
const complex<float>* A,
215 int lda, complex<float>* B,
int ldb,
int* info )
219 #if defined(INTEL_MKL_VERSION) 221 using ET = MKL_Complex8;
226 cpotrs_( &uplo, &n, &nrhs, const_cast<ET*>( reinterpret_cast<const ET*>( A ) ),
227 &lda, reinterpret_cast<ET*>( B ), &ldb, info );
265 inline void potrs(
char uplo,
int n,
int nrhs,
const complex<double>* A,
266 int lda, complex<double>* B,
int ldb,
int* info )
270 #if defined(INTEL_MKL_VERSION) 272 using ET = MKL_Complex16;
277 zpotrs_( &uplo, &n, &nrhs, const_cast<ET*>( reinterpret_cast<const ET*>( A ) ),
278 &lda, reinterpret_cast<ET*>( B ), &ldb, info );
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:126
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
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