35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_SYTRF_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_SYTRF_H_ 56 #if !defined(INTEL_MKL_VERSION) 59 void ssytrf_(
char* uplo,
int* n,
float* A,
int* lda,
int* ipiv,
float* work,
61 void dsytrf_(
char* uplo,
int* n,
double* A,
int* lda,
int* ipiv,
double* work,
63 void csytrf_(
char* uplo,
int* n,
float* A,
int* lda,
int* ipiv,
float* work,
65 void zsytrf_(
char* uplo,
int* n,
double* A,
int* lda,
int* ipiv,
double* work,
87 void sytrf(
char uplo,
int n,
float* A,
int lda,
int* ipiv,
88 float* work,
int lwork,
int* info );
90 void sytrf(
char uplo,
int n,
double* A,
int lda,
int* ipiv,
91 double* work,
int lwork,
int* info );
93 void sytrf(
char uplo,
int n, complex<float>* A,
int lda,
int* ipiv,
94 complex<float>* work,
int lwork,
int* info );
96 void sytrf(
char uplo,
int n, complex<double>* A,
int lda,
int* ipiv,
97 complex<double>* work,
int lwork,
int* info );
150 inline void sytrf(
char uplo,
int n,
float* A,
int lda,
int* ipiv,
151 float* work,
int lwork,
int* info )
153 #if defined(INTEL_MKL_VERSION) 210 inline void sytrf(
char uplo,
int n,
double* A,
int lda,
int* ipiv,
211 double* work,
int lwork,
int* info )
213 #if defined(INTEL_MKL_VERSION) 270 inline void sytrf(
char uplo,
int n, complex<float>* A,
int lda,
int* ipiv,
271 complex<float>* work,
int lwork,
int* info )
275 #if defined(INTEL_MKL_VERSION) 277 using ET = MKL_Complex8;
282 csytrf_( &uplo, &n, reinterpret_cast<ET*>( A ), &lda, ipiv,
336 inline void sytrf(
char uplo,
int n, complex<double>* A,
int lda,
int* ipiv,
337 complex<double>* work,
int lwork,
int* info )
341 #if defined(INTEL_MKL_VERSION) 343 using ET = MKL_Complex16;
348 zsytrf_( &uplo, &n, reinterpret_cast<ET*>( A ), &lda, ipiv,
Header file for basic type definitions.
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:150
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
Size type of the Blaze library.