35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_GEQP3_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_GEQP3_H_ 54 #if !defined(INTEL_MKL_VERSION) 57 void sgeqp3_(
int* m,
int* n,
float* A,
int* lda,
int* jpvt,
float* tau,
float* work,
int* lwork,
int* info );
58 void dgeqp3_(
int* m,
int* n,
double* A,
int* lda,
int* jpvt,
double* tau,
double* work,
int* lwork,
int* info );
79 inline void geqp3(
int m,
int n,
float* A,
int lda,
int* jpvt,
float* tau,
80 float* work,
int lwork,
int* info );
82 inline void geqp3(
int m,
int n,
double* A,
int lda,
int* jpvt,
double* tau,
83 double* work,
int lwork,
int* info );
138 inline void geqp3(
int m,
int n,
float* A,
int lda,
int* jpvt,
float* tau,
139 float* work,
int lwork,
int* info )
141 #if defined(INTEL_MKL_VERSION) 145 sgeqp3_( &m, &n, A, &lda, jpvt, tau, work, &lwork, info );
200 inline void geqp3(
int m,
int n,
double* A,
int lda,
int* jpvt,
double* tau,
201 double* work,
int lwork,
int* info )
203 #if defined(INTEL_MKL_VERSION) 207 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:138
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
#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