35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_GETRF_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_GETRF_H_ 55 #if !defined(INTEL_MKL_VERSION) 58 void sgetrf_(
int* m,
int* n,
float* A,
int* lda,
int* ipiv,
int* info );
59 void dgetrf_(
int* m,
int* n,
double* A,
int* lda,
int* ipiv,
int* info );
60 void cgetrf_(
int* m,
int* n,
float* A,
int* lda,
int* ipiv,
int* info );
61 void zgetrf_(
int* m,
int* n,
double* A,
int* lda,
int* ipiv,
int* info );
82 inline void getrf(
int m,
int n,
float* A,
int lda,
int* ipiv,
int* info );
84 inline void getrf(
int m,
int n,
double* A,
int lda,
int* ipiv,
int* info );
86 inline void getrf(
int m,
int n, complex<float>* A,
int lda,
int* ipiv,
int* info );
88 inline void getrf(
int m,
int n, complex<double>* A,
int lda,
int* ipiv,
int* info );
131 inline void getrf(
int m,
int n,
float* A,
int lda,
int* ipiv,
int* info )
133 #if defined(INTEL_MKL_VERSION) 137 sgetrf_( &m, &n, A, &lda, ipiv, info );
180 inline void getrf(
int m,
int n,
double* A,
int lda,
int* ipiv,
int* info )
182 #if defined(INTEL_MKL_VERSION) 186 dgetrf_( &m, &n, A, &lda, ipiv, info );
229 inline void getrf(
int m,
int n, complex<float>* A,
int lda,
int* ipiv,
int* info )
233 #if defined(INTEL_MKL_VERSION) 235 using ET = MKL_Complex8;
240 cgetrf_( &m, &n, reinterpret_cast<ET*>( A ), &lda, ipiv, info );
283 inline void getrf(
int m,
int n, complex<double>* A,
int lda,
int* ipiv,
int* info )
287 #if defined(INTEL_MKL_VERSION) 289 using ET = MKL_Complex16;
294 zgetrf_( &m, &n, reinterpret_cast<ET*>( A ), &lda, ipiv, info );
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
void getrf(int m, int n, float *A, int lda, int *ipiv, int *info)
LAPACK kernel for the LU decomposition of the given dense general single precision column-major matri...
Definition: getrf.h:131
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