35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_SYSV_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_SYSV_H_ 56 #if !defined(INTEL_MKL_VERSION) 59 void ssysv_(
char* uplo,
int* n,
int* nrhs,
float* A,
int* lda,
int* ipiv,
float* b,
int* ldb,
61 void dsysv_(
char* uplo,
int* n,
int* nrhs,
double* A,
int* lda,
int* ipiv,
double* b,
int* ldb,
63 void csysv_(
char* uplo,
int* n,
int* nrhs,
float* A,
int* lda,
int* ipiv,
float* b,
int* ldb,
65 void zsysv_(
char* uplo,
int* n,
int* nrhs,
double* A,
int* lda,
int* ipiv,
double* b,
int* ldb,
87 void sysv(
char uplo,
int n,
int nrhs,
float* A,
int lda,
int* ipiv,
88 float* B,
int ldb,
float* work,
int lwork,
int* info );
90 void sysv(
char uplo,
int n,
int nrhs,
double* A,
int lda,
int* ipiv,
91 double* B,
int ldb,
double* work,
int lwork,
int* info );
93 void sysv(
char uplo,
int n,
int nrhs, complex<float>* A,
int lda,
int* ipiv,
94 complex<float>* B,
int ldb, complex<float>* work,
int lwork,
int* info );
96 void sysv(
char uplo,
int n,
int nrhs, complex<double>* A,
int lda,
int* ipiv,
97 complex<double>* B,
int ldb, complex<double>* work,
int lwork,
int* info );
151 inline void sysv(
char uplo,
int n,
int nrhs,
float* A,
int lda,
int* ipiv,
152 float* B,
int ldb,
float* work,
int lwork,
int* info )
154 #if defined(INTEL_MKL_VERSION) 158 ssysv_( &uplo, &n, &nrhs, A, &lda, ipiv, B, &ldb, work, &lwork,
213 inline void sysv(
char uplo,
int n,
int nrhs,
double* A,
int lda,
int* ipiv,
214 double* B,
int ldb,
double* work,
int lwork,
int* info )
216 #if defined(INTEL_MKL_VERSION) 220 dsysv_( &uplo, &n, &nrhs, A, &lda, ipiv, B, &ldb, work, &lwork,
275 inline void sysv(
char uplo,
int n,
int nrhs, complex<float>* A,
int lda,
int* ipiv,
276 complex<float>* B,
int ldb, complex<float>* work,
int lwork,
int* info )
280 #if defined(INTEL_MKL_VERSION) 282 using ET = MKL_Complex8;
287 csysv_( &uplo, &n, &nrhs, reinterpret_cast<ET*>( A ), &lda, ipiv,
288 reinterpret_cast<ET*>( B ), &ldb, reinterpret_cast<ET*>( work ),
343 inline void sysv(
char uplo,
int n,
int nrhs, complex<double>* A,
int lda,
int* ipiv,
344 complex<double>* B,
int ldb, complex<double>* work,
int lwork,
int* info )
348 #if defined(INTEL_MKL_VERSION) 350 using ET = MKL_Complex16;
355 zsysv_( &uplo, &n, &nrhs, reinterpret_cast<ET*>( A ), &lda, ipiv,
356 reinterpret_cast<ET*>( B ), &ldb, reinterpret_cast<ET*>( work ),
Header file for basic type definitions.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
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
void sysv(char uplo, int n, int nrhs, float *A, int lda, int *ipiv, float *B, int ldb, float *work, int lwork, int *info)
LAPACK kernel for solving a symmetric indefinite single precision linear system of equations ( ).
Definition: sysv.h:151
Size type of the Blaze library.