35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_GEQLF_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_GEQLF_H_ 55 #if !defined(INTEL_MKL_VERSION) 58 void sgeqlf_(
int* m,
int* n,
float* A,
int* lda,
float* tau,
float* work,
int* lwork,
int* info );
59 void dgeqlf_(
int* m,
int* n,
double* A,
int* lda,
double* tau,
double* work,
int* lwork,
int* info );
60 void cgeqlf_(
int* m,
int* n,
float* A,
int* lda,
float* tau,
float* work,
int* lwork,
int* info );
61 void zgeqlf_(
int* m,
int* n,
double* A,
int* lda,
double* tau,
double* work,
int* lwork,
int* info );
82 void geqlf(
int m,
int n,
float* A,
int lda,
float* tau,
83 float* work,
int lwork,
int* info );
85 void geqlf(
int m,
int n,
double* A,
int lda,
double* tau,
86 double* work,
int lwork,
int* info );
88 void geqlf(
int m,
int n, complex<float>* A,
int lda, complex<float>* tau,
89 complex<float>* work,
int lwork,
int* info );
91 void geqlf(
int m,
int n, complex<double>* A,
int lda, complex<double>* tau,
92 complex<double>* work,
int lwork,
int* info );
147 inline void geqlf(
int m,
int n,
float* A,
int lda,
float* tau,
148 float* work,
int lwork,
int* info )
150 #if defined(INTEL_MKL_VERSION) 154 sgeqlf_( &m, &n, A, &lda, tau, work, &lwork, info );
209 inline void geqlf(
int m,
int n,
double* A,
int lda,
double* tau,
210 double* work,
int lwork,
int* info )
212 #if defined(INTEL_MKL_VERSION) 216 dgeqlf_( &m, &n, A, &lda, tau, work, &lwork, info );
271 inline void geqlf(
int m,
int n, complex<float>* A,
int lda, complex<float>* tau,
272 complex<float>* work,
int lwork,
int* info )
276 #if defined(INTEL_MKL_VERSION) 278 using ET = MKL_Complex8;
283 cgeqlf_( &m, &n, reinterpret_cast<ET*>( A ), &lda, reinterpret_cast<ET*>( tau ),
284 reinterpret_cast<ET*>( work ), &lwork, info );
339 inline void geqlf(
int m,
int n, complex<double>* A,
int lda, complex<double>* tau,
340 complex<double>* work,
int lwork,
int* info )
344 #if defined(INTEL_MKL_VERSION) 346 using ET = MKL_Complex16;
351 zgeqlf_( &m, &n, reinterpret_cast<ET*>( A ), &lda, reinterpret_cast<ET*>( tau ),
352 reinterpret_cast<ET*>( work ), &lwork, info );
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
void geqlf(int m, int n, float *A, int lda, float *tau, float *work, int lwork, int *info)
LAPACK kernel for the QL decomposition of the given dense single precision column-major matrix.
Definition: geqlf.h:147