35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_SYTRS_H_
36 #define _BLAZE_MATH_LAPACK_CLAPACK_SYTRS_H_
57 void ssytrs_(
char* uplo,
int* n,
int* nrhs,
float* A,
int* lda,
int* ipiv,
float* B,
int* ldb,
int*
info );
58 void dsytrs_(
char* uplo,
int* n,
int* nrhs,
double* A,
int* lda,
int* ipiv,
double* B,
int* ldb,
int*
info );
59 void csytrs_(
char* uplo,
int* n,
int* nrhs,
float* A,
int* lda,
int* ipiv,
float* B,
int* ldb,
int*
info );
60 void zsytrs_(
char* uplo,
int* n,
int* nrhs,
double* A,
int* lda,
int* ipiv,
double* B,
int* ldb,
int*
info );
80 inline void sytrs(
char uplo,
int n,
int nrhs,
const float* A,
int lda,
const int* ipiv,
81 float* B,
int ldb,
int*
info );
83 inline void sytrs(
char uplo,
int n,
int nrhs,
const double* A,
int lda,
const int* ipiv,
84 double* B,
int ldb,
int*
info );
86 inline void sytrs(
char uplo,
int n,
int nrhs,
const complex<float>* A,
int lda,
const int* ipiv,
87 complex<float>* B,
int ldb,
int*
info );
89 inline void sytrs(
char uplo,
int n,
int nrhs,
const complex<double>* A,
int lda,
const int* ipiv,
90 complex<double>* B,
int ldb,
int*
info );
128 inline void sytrs(
char uplo,
int n,
int nrhs,
const float* A,
int lda,
const int* ipiv,
129 float* B,
int ldb,
int*
info )
131 ssytrs_( &uplo, &n, &nrhs, const_cast<float*>( A ), &lda,
132 const_cast<int*>( ipiv ), B, &ldb, info );
170 inline void sytrs(
char uplo,
int n,
int nrhs,
const double* A,
int lda,
const int* ipiv,
171 double* B,
int ldb,
int*
info )
173 dsytrs_( &uplo, &n, &nrhs, const_cast<double*>( A ), &lda,
174 const_cast<int*>( ipiv ), B, &ldb, info );
212 inline void sytrs(
char uplo,
int n,
int nrhs,
const complex<float>* A,
int lda,
213 const int* ipiv, complex<float>* B,
int ldb,
int*
info )
217 csytrs_( &uplo, &n, &nrhs, const_cast<float*>( reinterpret_cast<const float*>( A ) ),
218 &lda, const_cast<int*>( ipiv ), reinterpret_cast<float*>( B ), &ldb, info );
256 inline void sytrs(
char uplo,
int n,
int nrhs,
const complex<double>* A,
int lda,
257 const int* ipiv, complex<double>* B,
int ldb,
int*
info )
261 zsytrs_( &uplo, &n, &nrhs, const_cast<double*>( reinterpret_cast<const double*>( A ) ),
262 &lda, const_cast<int*>( ipiv ), reinterpret_cast<double*>( B ), &ldb, info );
Log level for high-level information.
Definition: LogLevel.h:80
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
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:128
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