35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_SYTRF_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_SYTRF_H_ 55 #if !defined(INTEL_MKL_VERSION) 58 void ssytrf_(
char* uplo,
int* n,
float* A,
int* lda,
int* ipiv,
float* work,
int* lwork,
int* info );
59 void dsytrf_(
char* uplo,
int* n,
double* A,
int* lda,
int* ipiv,
double* work,
int* lwork,
int* info );
60 void csytrf_(
char* uplo,
int* n,
float* A,
int* lda,
int* ipiv,
float* work,
int* lwork,
int* info );
61 void zsytrf_(
char* uplo,
int* n,
double* A,
int* lda,
int* ipiv,
double* work,
int* lwork,
int* info );
82 inline void sytrf(
char uplo,
int n,
float* A,
int lda,
int* ipiv,
83 float* work,
int lwork,
int* info );
85 inline void sytrf(
char uplo,
int n,
double* A,
int lda,
int* ipiv,
86 double* work,
int lwork,
int* info );
88 inline void sytrf(
char uplo,
int n, complex<float>* A,
int lda,
int* ipiv,
89 complex<float>* work,
int lwork,
int* info );
91 inline void sytrf(
char uplo,
int n, complex<double>* A,
int lda,
int* ipiv,
92 complex<double>* work,
int lwork,
int* info );
145 inline void sytrf(
char uplo,
int n,
float* A,
int lda,
int* ipiv,
146 float* work,
int lwork,
int* info )
148 #if defined(INTEL_MKL_VERSION) 152 ssytrf_( &uplo, &n, A, &lda, ipiv, work, &lwork, info );
205 inline void sytrf(
char uplo,
int n,
double* A,
int lda,
int* ipiv,
206 double* work,
int lwork,
int* info )
208 #if defined(INTEL_MKL_VERSION) 212 dsytrf_( &uplo, &n, A, &lda, ipiv, work, &lwork, info );
265 inline void sytrf(
char uplo,
int n, complex<float>* A,
int lda,
int* ipiv,
266 complex<float>* work,
int lwork,
int* info )
270 #if defined(INTEL_MKL_VERSION) 272 using ET = MKL_Complex8;
277 csytrf_( &uplo, &n, reinterpret_cast<ET*>( A ), &lda, ipiv,
278 reinterpret_cast<ET*>( work ), &lwork, info );
331 inline void sytrf(
char uplo,
int n, complex<double>* A,
int lda,
int* ipiv,
332 complex<double>* work,
int lwork,
int* info )
336 #if defined(INTEL_MKL_VERSION) 338 using ET = MKL_Complex16;
343 zsytrf_( &uplo, &n, reinterpret_cast<ET*>( A ), &lda, ipiv,
344 reinterpret_cast<ET*>( work ), &lwork, info );
void sytrf(char uplo, int n, float *A, int lda, int *ipiv, float *work, int lwork, int *info)
LAPACK kernel for the decomposition of the given dense symmetric indefinite single precision column-m...
Definition: sytrf.h:145
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