35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_POSV_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_POSV_H_ 56 #if !defined(INTEL_MKL_VERSION) 59 void sposv_(
char* uplo,
int* n,
int* nrhs,
float* A,
int* lda,
float* b,
int* ldb,
61 void dposv_(
char* uplo,
int* n,
int* nrhs,
double* A,
int* lda,
double* b,
int* ldb,
63 void cposv_(
char* uplo,
int* n,
int* nrhs,
float* A,
int* lda,
float* b,
int* ldb,
65 void zposv_(
char* uplo,
int* n,
int* nrhs,
double* A,
int* lda,
double* b,
int* ldb,
87 void posv(
char uplo,
int n,
int nrhs,
float* A,
int lda,
float* B,
int ldb,
int* info );
89 void posv(
char uplo,
int n,
int nrhs,
double* A,
int lda,
double* B,
int ldb,
int* info );
91 void posv(
char uplo,
int n,
int nrhs, complex<float>* A,
int lda, complex<float>* B,
int ldb,
int* info );
93 void posv(
char uplo,
int n,
int nrhs, complex<double>* A,
int lda, complex<double>* B,
int ldb,
int* info );
143 inline void posv(
char uplo,
int n,
int nrhs,
float* A,
int lda,
float* B,
int ldb,
int* info )
145 #if defined(INTEL_MKL_VERSION) 199 inline void posv(
char uplo,
int n,
int nrhs,
double* A,
int lda,
double* B,
int ldb,
int* info )
201 #if defined(INTEL_MKL_VERSION) 255 inline void posv(
char uplo,
int n,
int nrhs, complex<float>* A,
int lda, complex<float>* B,
int ldb,
int* info )
259 #if defined(INTEL_MKL_VERSION) 261 using ET = MKL_Complex8;
266 cposv_( &uplo, &n, &nrhs, reinterpret_cast<ET*>( A ), &lda,
317 inline void posv(
char uplo,
int n,
int nrhs, complex<double>* A,
int lda, complex<double>* B,
int ldb,
int* info )
321 #if defined(INTEL_MKL_VERSION) 323 using ET = MKL_Complex16;
328 zposv_( &uplo, &n, &nrhs, reinterpret_cast<ET*>( A ), &lda,
Header file for basic type definitions.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
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:143
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.