35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_TRTRS_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_TRTRS_H_ 56 #if !defined(INTEL_MKL_VERSION) 59 void strtrs_(
char* uplo,
char*
trans,
char* diag,
int* n,
int* nrhs,
float* A,
int* lda,
62 void dtrtrs_(
char* uplo,
char*
trans,
char* diag,
int* n,
int* nrhs,
double* A,
int* lda,
65 void ctrtrs_(
char* uplo,
char*
trans,
char* diag,
int* n,
int* nrhs,
float* A,
int* lda,
68 void ztrtrs_(
char* uplo,
char*
trans,
char* diag,
int* n,
int* nrhs,
double* A,
int* lda,
91 void trtrs(
char uplo,
char trans,
char diag,
int n,
int nrhs,
const float* A,
92 int lda,
float* B,
int ldb,
int* info );
94 void trtrs(
char uplo,
char trans,
char diag,
int n,
int nrhs,
const double* A,
95 int lda,
double* B,
int ldb,
int* info );
97 void trtrs(
char uplo,
char trans,
char diag,
int n,
int nrhs,
const complex<float>* A,
98 int lda, complex<float>* B,
int ldb,
int* info );
100 void trtrs(
char uplo,
char trans,
char diag,
int n,
int nrhs,
const complex<double>* A,
101 int lda, complex<double>* B,
int ldb,
int* info );
146 inline void trtrs(
char uplo,
char trans,
char diag,
int n,
int nrhs,
const float* A,
int lda,
147 float* B,
int ldb,
int* info )
149 #if defined(INTEL_MKL_VERSION) 153 strtrs_( &uplo, &
trans, &diag, &n, &nrhs, const_cast<float*>( A ), &lda, B, &ldb, info,
199 inline void trtrs(
char uplo,
char trans,
char diag,
int n,
int nrhs,
const double* A,
int lda,
200 double* B,
int ldb,
int* info )
202 #if defined(INTEL_MKL_VERSION) 206 dtrtrs_( &uplo, &
trans, &diag, &n, &nrhs, const_cast<double*>( A ), &lda, B, &ldb, info,
252 inline void trtrs(
char uplo,
char trans,
char diag,
int n,
int nrhs,
const complex<float>* A,
253 int lda, complex<float>* B,
int ldb,
int* info )
257 #if defined(INTEL_MKL_VERSION) 259 using ET = MKL_Complex8;
264 ctrtrs_( &uplo, &
trans, &diag, &n, &nrhs, const_cast<ET*>( reinterpret_cast<const ET*>( A ) ),
311 inline void trtrs(
char uplo,
char trans,
char diag,
int n,
int nrhs,
const complex<double>* A,
312 int lda, complex<double>* B,
int ldb,
int* info )
316 #if defined(INTEL_MKL_VERSION) 318 using ET = MKL_Complex16;
323 ztrtrs_( &uplo, &
trans, &diag, &n, &nrhs, const_cast<ET*>( reinterpret_cast<const ET*>( A ) ),
Header file for basic type definitions.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
void trtrs(char uplo, char trans, char diag, int n, int nrhs, const float *A, int lda, float *B, int ldb, int *info)
LAPACK kernel for the substitution step of solving a triangular single precision linear system of equ...
Definition: trtrs.h:146
decltype(auto) trans(const DenseMatrix< MT, SO > &dm)
Calculation of the transpose of the given dense matrix.
Definition: DMatTransExpr.h:765
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.