35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_HESV_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_HESV_H_ 57 void chesv_(
char* uplo,
int* n,
int* nrhs,
float* A,
int* lda,
int* ipiv,
float* b,
int* ldb,
float* work,
int* lwork,
int* info );
58 void zhesv_(
char* uplo,
int* n,
int* nrhs,
double* A,
int* lda,
int* ipiv,
double* b,
int* ldb,
double* work,
int* lwork,
int* info );
78 inline void hesv(
char uplo,
int n,
int nrhs, complex<float>* A,
int lda,
int* ipiv,
79 complex<float>* B,
int ldb, complex<float>* work,
int lwork,
int* info );
81 inline void hesv(
char uplo,
int n,
int nrhs, complex<double>* A,
int lda,
int* ipiv,
82 complex<double>* B,
int ldb, complex<double>* work,
int lwork,
int* info );
136 inline void hesv(
char uplo,
int n,
int nrhs, complex<float>* A,
int lda,
int* ipiv,
137 complex<float>* B,
int ldb, complex<float>* work,
int lwork,
int* info )
141 chesv_( &uplo, &n, &nrhs, reinterpret_cast<float*>( A ), &lda, ipiv,
142 reinterpret_cast<float*>( B ), &ldb, reinterpret_cast<float*>( work ), &lwork, info );
196 inline void hesv(
char uplo,
int n,
int nrhs, complex<double>* A,
int lda,
int* ipiv,
197 complex<double>* B,
int ldb, complex<double>* work,
int lwork,
int* info )
201 zhesv_( &uplo, &n, &nrhs, reinterpret_cast<double*>( A ), &lda, ipiv,
202 reinterpret_cast<double*>( B ), &ldb, reinterpret_cast<double*>( work ), &lwork, info );
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
void hesv(char uplo, int n, int nrhs, complex< float > *A, int lda, int *ipiv, complex< float > *B, int ldb, complex< float > *work, int lwork, int *info)
LAPACK kernel for solving a Hermitian indefinite single precision complex linear system of equations ...
Definition: hesv.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