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,
58 float* work,
int* lwork,
int* info );
59 void dgeqp3_(
int* m,
int* n,
double* A,
int* lda,
int* jpvt,
double* tau,
60 double* work,
int* lwork,
int* info );
81 void geqp3(
int m,
int n,
float* A,
int lda,
int* jpvt,
float* tau,
82 float* work,
int lwork,
int* info );
84 void geqp3(
int m,
int n,
double* A,
int lda,
int* jpvt,
double* tau,
85 double* work,
int lwork,
int* info );
140 inline void geqp3(
int m,
int n,
float* A,
int lda,
int* jpvt,
float* tau,
141 float* work,
int lwork,
int* info )
143 #if defined(INTEL_MKL_VERSION) 147 sgeqp3_( &m, &n, A, &lda, jpvt, tau, work, &lwork, info );
202 inline void geqp3(
int m,
int n,
double* A,
int lda,
int* jpvt,
double* tau,
203 double* work,
int lwork,
int* info )
205 #if defined(INTEL_MKL_VERSION) 209 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:140
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