35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_SYTRS_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_SYTRS_H_ 56 #if !defined(INTEL_MKL_VERSION) 59 void ssytrs_(
char* uplo,
int* n,
int* nrhs,
float* A,
int* lda,
int* ipiv,
61 void dsytrs_(
char* uplo,
int* n,
int* nrhs,
double* A,
int* lda,
int* ipiv,
63 void csytrs_(
char* uplo,
int* n,
int* nrhs,
float* A,
int* lda,
int* ipiv,
65 void zsytrs_(
char* uplo,
int* n,
int* nrhs,
double* A,
int* lda,
int* ipiv,
87 void sytrs(
char uplo,
int n,
int nrhs,
const float* A,
int lda,
const int* ipiv,
88 float* B,
int ldb,
int* info );
90 void sytrs(
char uplo,
int n,
int nrhs,
const double* A,
int lda,
const int* ipiv,
91 double* B,
int ldb,
int* info );
93 void sytrs(
char uplo,
int n,
int nrhs,
const complex<float>* A,
int lda,
const int* ipiv,
94 complex<float>* B,
int ldb,
int* info );
96 void sytrs(
char uplo,
int n,
int nrhs,
const complex<double>* A,
int lda,
const int* ipiv,
97 complex<double>* B,
int ldb,
int* info );
136 inline void sytrs(
char uplo,
int n,
int nrhs,
const float* A,
int lda,
const int* ipiv,
137 float* B,
int ldb,
int* info )
139 #if defined(INTEL_MKL_VERSION) 143 ssytrs_( &uplo, &n, &nrhs, const_cast<float*>( A ), &lda,
183 inline void sytrs(
char uplo,
int n,
int nrhs,
const double* A,
int lda,
const int* ipiv,
184 double* B,
int ldb,
int* info )
186 #if defined(INTEL_MKL_VERSION) 190 dsytrs_( &uplo, &n, &nrhs, const_cast<double*>( A ), &lda,
230 inline void sytrs(
char uplo,
int n,
int nrhs,
const complex<float>* A,
int lda,
231 const int* ipiv, complex<float>* B,
int ldb,
int* info )
235 #if defined(INTEL_MKL_VERSION) 237 using ET = MKL_Complex8;
242 csytrs_( &uplo, &n, &nrhs, const_cast<ET*>( reinterpret_cast<const ET*>( A ) ),
243 &lda, const_cast<int*>( ipiv ), reinterpret_cast<ET*>( B ), &ldb, info,
283 inline void sytrs(
char uplo,
int n,
int nrhs,
const complex<double>* A,
int lda,
284 const int* ipiv, complex<double>* B,
int ldb,
int* info )
288 #if defined(INTEL_MKL_VERSION) 290 using ET = MKL_Complex16;
295 zsytrs_( &uplo, &n, &nrhs, const_cast<ET*>( reinterpret_cast<const ET*>( A ) ),
296 &lda, const_cast<int*>( ipiv ), reinterpret_cast<ET*>( B ), &ldb, info,
Header file for basic type definitions.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
void sytrs(char uplo, int n, int nrhs, const float *A, int lda, const int *ipiv, float *B, int ldb, int *info)
LAPACK kernel for the substitution step of solving a symmetric indefinite single precision linear sys...
Definition: sytrs.h:136
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.