35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_POSV_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_POSV_H_ 55 #if !defined(INTEL_MKL_VERSION) 58 void sposv_(
char* uplo,
int* n,
int* nrhs,
float* A,
int* lda,
float* b,
int* ldb,
int* info );
59 void dposv_(
char* uplo,
int* n,
int* nrhs,
double* A,
int* lda,
double* b,
int* ldb,
int* info );
60 void cposv_(
char* uplo,
int* n,
int* nrhs,
float* A,
int* lda,
float* b,
int* ldb,
int* info );
61 void zposv_(
char* uplo,
int* n,
int* nrhs,
double* A,
int* lda,
double* b,
int* ldb,
int* info );
82 inline void posv(
char uplo,
int n,
int nrhs,
float* A,
int lda,
float* B,
int ldb,
int* info );
84 inline void posv(
char uplo,
int n,
int nrhs,
double* A,
int lda,
double* B,
int ldb,
int* info );
86 inline void posv(
char uplo,
int n,
int nrhs, complex<float>* A,
int lda, complex<float>* B,
int ldb,
int* info );
88 inline void posv(
char uplo,
int n,
int nrhs, complex<double>* A,
int lda, complex<double>* B,
int ldb,
int* info );
138 inline void posv(
char uplo,
int n,
int nrhs,
float* A,
int lda,
float* B,
int ldb,
int* info )
140 #if defined(INTEL_MKL_VERSION) 144 sposv_( &uplo, &n, &nrhs, A, &lda, B, &ldb, info );
194 inline void posv(
char uplo,
int n,
int nrhs,
double* A,
int lda,
double* B,
int ldb,
int* info )
196 #if defined(INTEL_MKL_VERSION) 200 dposv_( &uplo, &n, &nrhs, A, &lda, B, &ldb, info );
250 inline void posv(
char uplo,
int n,
int nrhs, complex<float>* A,
int lda, complex<float>* B,
int ldb,
int* info )
254 #if defined(INTEL_MKL_VERSION) 256 using ET = MKL_Complex8;
261 cposv_( &uplo, &n, &nrhs, reinterpret_cast<ET*>( A ), &lda,
262 reinterpret_cast<ET*>( B ), &ldb, info );
312 inline void posv(
char uplo,
int n,
int nrhs, complex<double>* A,
int lda, complex<double>* B,
int ldb,
int* info )
316 #if defined(INTEL_MKL_VERSION) 318 using ET = MKL_Complex16;
323 zposv_( &uplo, &n, &nrhs, reinterpret_cast<ET*>( A ), &lda,
324 reinterpret_cast<ET*>( B ), &ldb, info );
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:138
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