35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_GEQP3_H_
36 #define _BLAZE_MATH_LAPACK_CLAPACK_GEQP3_H_
49 void sgeqp3_(
int* m,
int* n,
float* A,
int* lda,
int* jpvt,
float* tau,
float* work,
int* lwork,
int*
info );
50 void dgeqp3_(
int* m,
int* n,
double* A,
int* lda,
int* jpvt,
double* tau,
double* work,
int* lwork,
int*
info );
70 inline void geqp3(
int m,
int n,
float* A,
int lda,
int* jpvt,
float* tau,
71 float* work,
int lwork,
int*
info );
73 inline void geqp3(
int m,
int n,
double* A,
int lda,
int* jpvt,
double* tau,
74 double* work,
int lwork,
int*
info );
128 inline void geqp3(
int m,
int n,
float* A,
int lda,
int* jpvt,
float* tau,
129 float* work,
int lwork,
int*
info )
131 sgeqp3_( &m, &n, A, &lda, jpvt, tau, work, &lwork, info );
185 inline void geqp3(
int m,
int n,
double* A,
int lda,
int* jpvt,
double* tau,
186 double* work,
int lwork,
int*
info )
188 dgeqp3_( &m, &n, A, &lda, jpvt, tau, work, &lwork, info );
void geqp3(int m, int n, float *A, int lda, int *jpvt, float *tau, float *work, int lwork, int *info)
LAPACK kernel for the QR decomposition of the given dense single precision column-major matrix...
Definition: geqp3.h:128
Log level for high-level information.
Definition: LogLevel.h:80
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57