35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_GERQF_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_GERQF_H_ 57 void sgerqf_(
int* m,
int* n,
float* A,
int* lda,
float* tau,
float* work,
int* lwork,
int* info );
58 void dgerqf_(
int* m,
int* n,
double* A,
int* lda,
double* tau,
double* work,
int* lwork,
int* info );
59 void cgerqf_(
int* m,
int* n,
float* A,
int* lda,
float* tau,
float* work,
int* lwork,
int* info );
60 void zgerqf_(
int* m,
int* n,
double* A,
int* lda,
double* tau,
double* work,
int* lwork,
int* info );
80 inline void gerqf(
int m,
int n,
float* A,
int lda,
float* tau,
81 float* work,
int lwork,
int* info );
83 inline void gerqf(
int m,
int n,
double* A,
int lda,
double* tau,
84 double* work,
int lwork,
int* info );
86 inline void gerqf(
int m,
int n, complex<float>* A,
int lda, complex<float>* tau,
87 complex<float>* work,
int lwork,
int* info );
89 inline void gerqf(
int m,
int n, complex<double>* A,
int lda, complex<double>* tau,
90 complex<double>* work,
int lwork,
int* info );
145 inline void gerqf(
int m,
int n,
float* A,
int lda,
float* tau,
146 float* work,
int lwork,
int* info )
148 sgerqf_( &m, &n, A, &lda, tau, work, &lwork, info );
203 inline void gerqf(
int m,
int n,
double* A,
int lda,
double* tau,
204 double* work,
int lwork,
int* info )
206 dgerqf_( &m, &n, A, &lda, tau, work, &lwork, info );
261 inline void gerqf(
int m,
int n, complex<float>* A,
int lda, complex<float>* tau,
262 complex<float>* work,
int lwork,
int* info )
266 cgerqf_( &m, &n, reinterpret_cast<float*>( A ), &lda, reinterpret_cast<float*>( tau ),
267 reinterpret_cast<float*>( work ), &lwork, info );
322 inline void gerqf(
int m,
int n, complex<double>* A,
int lda, complex<double>* tau,
323 complex<double>* work,
int lwork,
int* info )
327 zgerqf_( &m, &n, reinterpret_cast<double*>( A ), &lda, reinterpret_cast<double*>( tau ),
328 reinterpret_cast<double*>( work ), &lwork, info );
void gerqf(int m, int n, float *A, int lda, float *tau, float *work, int lwork, int *info)
LAPACK kernel for the RQ decomposition of the given dense single precision column-major matrix...
Definition: gerqf.h:145
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