35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_POTRF_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_POTRF_H_ 56 #if !defined(INTEL_MKL_VERSION) 83 void potrf(
char uplo,
int n,
float* A,
int lda,
int* info );
85 void potrf(
char uplo,
int n,
double* A,
int lda,
int* info );
87 void potrf(
char uplo,
int n, complex<float>* A,
int lda,
int* info );
89 void potrf(
char uplo,
int n, complex<double>* A,
int lda,
int* info );
132 inline void potrf(
char uplo,
int n,
float* A,
int lda,
int* info )
134 #if defined(INTEL_MKL_VERSION) 181 inline void potrf(
char uplo,
int n,
double* A,
int lda,
int* info )
183 #if defined(INTEL_MKL_VERSION) 230 inline void potrf(
char uplo,
int n, complex<float>* A,
int lda,
int* info )
234 #if defined(INTEL_MKL_VERSION) 236 using ET = MKL_Complex8;
284 inline void potrf(
char uplo,
int n, complex<double>* A,
int lda,
int* info )
288 #if defined(INTEL_MKL_VERSION) 290 using ET = MKL_Complex16;
Header file for basic type definitions.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
Header file for the complex data type.
void potrf(char uplo, int n, float *A, int lda, int *info)
LAPACK kernel for the Cholesky decomposition of the given dense positive definite single precision co...
Definition: potrf.h:132
#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.