35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_HETRS_H_
36 #define _BLAZE_MATH_LAPACK_CLAPACK_HETRS_H_
57 void chetrs_(
char* uplo,
int* n,
int* nrhs,
float* A,
int* lda,
int* ipiv,
float* B,
int* ldb,
int*
info );
58 void zhetrs_(
char* uplo,
int* n,
int* nrhs,
double* A,
int* lda,
int* ipiv,
double* B,
int* ldb,
int*
info );
78 inline void hetrs(
char uplo,
int n,
int nrhs,
const complex<float>* A,
int lda,
const int* ipiv,
79 complex<float>* B,
int ldb,
int*
info );
81 inline void hetrs(
char uplo,
int n,
int nrhs,
const complex<double>* A,
int lda,
const int* ipiv,
82 complex<double>* B,
int ldb,
int*
info );
120 inline void hetrs(
char uplo,
int n,
int nrhs,
const complex<float>* A,
int lda,
121 const int* ipiv, complex<float>* B,
int ldb,
int*
info )
125 chetrs_( &uplo, &n, &nrhs, const_cast<float*>( reinterpret_cast<const float*>( A ) ),
126 &lda, const_cast<int*>( ipiv ), reinterpret_cast<float*>( B ), &ldb, info );
164 inline void hetrs(
char uplo,
int n,
int nrhs,
const complex<double>* A,
int lda,
165 const int* ipiv, complex<double>* B,
int ldb,
int*
info )
169 zhetrs_( &uplo, &n, &nrhs, const_cast<double*>( reinterpret_cast<const double*>( A ) ),
170 &lda, const_cast<int*>( ipiv ), reinterpret_cast<double*>( B ), &ldb, info );
Log level for high-level information.
Definition: LogLevel.h:80
void hetrs(char uplo, int n, int nrhs, const complex< float > *A, int lda, const int *ipiv, complex< float > *B, int ldb, int *info)
LAPACK kernel for the substitution step of solving a symmetric indefinite single precision complex li...
Definition: hetrs.h:120
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