35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_GEQLF_H_
36 #define _BLAZE_MATH_LAPACK_CLAPACK_GEQLF_H_
57 void sgeqlf_(
int* m,
int* n,
float* A,
int* lda,
float* tau,
float* work,
int* lwork,
int*
info );
58 void dgeqlf_(
int* m,
int* n,
double* A,
int* lda,
double* tau,
double* work,
int* lwork,
int*
info );
59 void cgeqlf_(
int* m,
int* n,
float* A,
int* lda,
float* tau,
float* work,
int* lwork,
int*
info );
60 void zgeqlf_(
int* m,
int* n,
double* A,
int* lda,
double* tau,
double* work,
int* lwork,
int*
info );
80 inline void geqlf(
int m,
int n,
float* A,
int lda,
float* tau,
81 float* work,
int lwork,
int*
info );
83 inline void geqlf(
int m,
int n,
double* A,
int lda,
double* tau,
84 double* work,
int lwork,
int*
info );
86 inline void geqlf(
int m,
int n, complex<float>* A,
int lda, complex<float>* tau,
87 complex<float>* work,
int lwork,
int*
info );
89 inline void geqlf(
int m,
int n, complex<double>* A,
int lda, complex<double>* tau,
90 complex<double>* work,
int lwork,
int*
info );
144 inline void geqlf(
int m,
int n,
float* A,
int lda,
float* tau,
145 float* work,
int lwork,
int*
info )
147 sgeqlf_( &m, &n, A, &lda, tau, work, &lwork, info );
201 inline void geqlf(
int m,
int n,
double* A,
int lda,
double* tau,
202 double* work,
int lwork,
int*
info )
204 dgeqlf_( &m, &n, A, &lda, tau, work, &lwork, info );
258 inline void geqlf(
int m,
int n, complex<float>* A,
int lda, complex<float>* tau,
259 complex<float>* work,
int lwork,
int*
info )
263 cgeqlf_( &m, &n, reinterpret_cast<float*>( A ), &lda, reinterpret_cast<float*>( tau ),
264 reinterpret_cast<float*>( work ), &lwork, info );
318 inline void geqlf(
int m,
int n, complex<double>* A,
int lda, complex<double>* tau,
319 complex<double>* work,
int lwork,
int*
info )
323 zgeqlf_( &m, &n, reinterpret_cast<double*>( A ), &lda, reinterpret_cast<double*>( tau ),
324 reinterpret_cast<double*>( work ), &lwork, info );
Log level for high-level information.
Definition: LogLevel.h:80
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
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:144