35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_POSV_H_
36 #define _BLAZE_MATH_LAPACK_CLAPACK_POSV_H_
57 void sposv_(
char* uplo,
int* n,
int* nrhs,
float* A,
int* lda,
float* b,
int* ldb,
int*
info );
58 void dposv_(
char* uplo,
int* n,
int* nrhs,
double* A,
int* lda,
double* b,
int* ldb,
int*
info );
59 void cposv_(
char* uplo,
int* n,
int* nrhs,
float* A,
int* lda,
float* b,
int* ldb,
int*
info );
60 void zposv_(
char* uplo,
int* n,
int* nrhs,
double* A,
int* lda,
double* b,
int* ldb,
int*
info );
80 inline void posv(
char uplo,
int n,
int nrhs,
float* A,
int lda,
float* B,
int ldb,
int*
info );
82 inline void posv(
char uplo,
int n,
int nrhs,
double* A,
int lda,
double* B,
int ldb,
int*
info );
84 inline void posv(
char uplo,
int n,
int nrhs, complex<float>* A,
int lda, complex<float>* B,
int ldb,
int*
info );
86 inline void posv(
char uplo,
int n,
int nrhs, complex<double>* A,
int lda, complex<double>* B,
int ldb,
int*
info );
135 inline void posv(
char uplo,
int n,
int nrhs,
float* A,
int lda,
float* B,
int ldb,
int*
info )
137 sposv_( &uplo, &n, &nrhs, A, &lda, B, &ldb, info );
186 inline void posv(
char uplo,
int n,
int nrhs,
double* A,
int lda,
double* B,
int ldb,
int*
info )
188 dposv_( &uplo, &n, &nrhs, A, &lda, B, &ldb, info );
237 inline void posv(
char uplo,
int n,
int nrhs, complex<float>* A,
int lda, complex<float>* B,
int ldb,
int*
info )
241 cposv_( &uplo, &n, &nrhs, reinterpret_cast<float*>( A ), &lda,
242 reinterpret_cast<float*>( B ), &ldb, info );
291 inline void posv(
char uplo,
int n,
int nrhs, complex<double>* A,
int lda, complex<double>* B,
int ldb,
int*
info )
295 zposv_( &uplo, &n, &nrhs, reinterpret_cast<double*>( A ), &lda,
296 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 posv(char uplo, int n, int nrhs, float *A, int lda, float *B, int ldb, int *info)
LAPACK kernel for solving a positive definite single precision linear system of equations ( )...
Definition: posv.h:135
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