35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_SYSV_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_SYSV_H_ 55 #if !defined(INTEL_MKL_VERSION) 58 void ssysv_(
char* uplo,
int* n,
int* nrhs,
float* A,
int* lda,
int* ipiv,
float* b,
int* ldb,
float* work,
int* lwork,
int* info );
59 void dsysv_(
char* uplo,
int* n,
int* nrhs,
double* A,
int* lda,
int* ipiv,
double* b,
int* ldb,
double* work,
int* lwork,
int* info );
60 void csysv_(
char* uplo,
int* n,
int* nrhs,
float* A,
int* lda,
int* ipiv,
float* b,
int* ldb,
float* work,
int* lwork,
int* info );
61 void zsysv_(
char* uplo,
int* n,
int* nrhs,
double* A,
int* lda,
int* ipiv,
double* b,
int* ldb,
double* work,
int* lwork,
int* info );
82 inline void sysv(
char uplo,
int n,
int nrhs,
float* A,
int lda,
int* ipiv,
83 float* B,
int ldb,
float* work,
int lwork,
int* info );
85 inline void sysv(
char uplo,
int n,
int nrhs,
double* A,
int lda,
int* ipiv,
86 double* B,
int ldb,
double* work,
int lwork,
int* info );
88 inline void sysv(
char uplo,
int n,
int nrhs, complex<float>* A,
int lda,
int* ipiv,
89 complex<float>* B,
int ldb, complex<float>* work,
int lwork,
int* info );
91 inline void sysv(
char uplo,
int n,
int nrhs, complex<double>* A,
int lda,
int* ipiv,
92 complex<double>* B,
int ldb, complex<double>* work,
int lwork,
int* info );
146 inline void sysv(
char uplo,
int n,
int nrhs,
float* A,
int lda,
int* ipiv,
147 float* B,
int ldb,
float* work,
int lwork,
int* info )
149 #if defined(INTEL_MKL_VERSION) 153 ssysv_( &uplo, &n, &nrhs, A, &lda, ipiv, B, &ldb, work, &lwork, info );
207 inline void sysv(
char uplo,
int n,
int nrhs,
double* A,
int lda,
int* ipiv,
208 double* B,
int ldb,
double* work,
int lwork,
int* info )
210 #if defined(INTEL_MKL_VERSION) 214 dsysv_( &uplo, &n, &nrhs, A, &lda, ipiv, B, &ldb, work, &lwork, info );
268 inline void sysv(
char uplo,
int n,
int nrhs, complex<float>* A,
int lda,
int* ipiv,
269 complex<float>* B,
int ldb, complex<float>* work,
int lwork,
int* info )
273 #if defined(INTEL_MKL_VERSION) 275 using ET = MKL_Complex8;
280 csysv_( &uplo, &n, &nrhs, reinterpret_cast<ET*>( A ), &lda, ipiv,
281 reinterpret_cast<ET*>( B ), &ldb, reinterpret_cast<ET*>( work ), &lwork, info );
335 inline void sysv(
char uplo,
int n,
int nrhs, complex<double>* A,
int lda,
int* ipiv,
336 complex<double>* B,
int ldb, complex<double>* work,
int lwork,
int* info )
340 #if defined(INTEL_MKL_VERSION) 342 using ET = MKL_Complex16;
347 zsysv_( &uplo, &n, &nrhs, reinterpret_cast<ET*>( A ), &lda, ipiv,
348 reinterpret_cast<ET*>( B ), &ldb, reinterpret_cast<ET*>( work ), &lwork, info );
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
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:146