35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_SYTRF_H_
36 #define _BLAZE_MATH_LAPACK_CLAPACK_SYTRF_H_
57 void ssytrf_(
char* uplo,
int* n,
float* A,
int* lda,
int* ipiv,
float* work,
int* lwork,
int*
info );
58 void dsytrf_(
char* uplo,
int* n,
double* A,
int* lda,
int* ipiv,
double* work,
int* lwork,
int*
info );
59 void csytrf_(
char* uplo,
int* n,
float* A,
int* lda,
int* ipiv,
float* work,
int* lwork,
int*
info );
60 void zsytrf_(
char* uplo,
int* n,
double* A,
int* lda,
int* ipiv,
double* work,
int* lwork,
int*
info );
80 inline void sytrf(
char uplo,
int n,
float* A,
int lda,
int* ipiv,
81 float* work,
int lwork,
int*
info );
83 inline void sytrf(
char uplo,
int n,
double* A,
int lda,
int* ipiv,
84 double* work,
int lwork,
int*
info );
86 inline void sytrf(
char uplo,
int n, complex<float>* A,
int lda,
int* ipiv,
87 complex<float>* work,
int lwork,
int*
info );
89 inline void sytrf(
char uplo,
int n, complex<double>* A,
int lda,
int* ipiv,
90 complex<double>* work,
int lwork,
int*
info );
142 inline void sytrf(
char uplo,
int n,
float* A,
int lda,
int* ipiv,
143 float* work,
int lwork,
int*
info )
145 ssytrf_( &uplo, &n, A, &lda, ipiv, work, &lwork, info );
197 inline void sytrf(
char uplo,
int n,
double* A,
int lda,
int* ipiv,
198 double* work,
int lwork,
int*
info )
200 dsytrf_( &uplo, &n, A, &lda, ipiv, work, &lwork, info );
252 inline void sytrf(
char uplo,
int n, complex<float>* A,
int lda,
int* ipiv,
253 complex<float>* work,
int lwork,
int*
info )
257 csytrf_( &uplo, &n, reinterpret_cast<float*>( A ), &lda, ipiv,
258 reinterpret_cast<float*>( work ), &lwork, info );
310 inline void sytrf(
char uplo,
int n, complex<double>* A,
int lda,
int* ipiv,
311 complex<double>* work,
int lwork,
int*
info )
315 zsytrf_( &uplo, &n, reinterpret_cast<double*>( A ), &lda, ipiv,
316 reinterpret_cast<double*>( work ), &lwork, info );
Log level for high-level information.
Definition: LogLevel.h:80
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:142
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