35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_ORGQR_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_ORGQR_H_ 55 #if !defined(INTEL_MKL_VERSION) 58 void sorgqr_(
int* m,
int* n,
int* k,
float* A,
int* lda,
float* tau,
59 float* work,
int* lwork,
int* info );
60 void dorgqr_(
int* m,
int* n,
int* k,
double* A,
int* lda,
double* tau,
61 double* work,
int* lwork,
int* info );
82 void orgqr(
int m,
int n,
int k,
float* A,
int lda,
const float* tau,
83 float* work,
int lwork,
int* info );
85 void orgqr(
int m,
int n,
int k,
double* A,
int lda,
const double* tau,
86 double* work,
int lwork,
int* info );
122 inline void orgqr(
int m,
int n,
int k,
float* A,
int lda,
const float* tau,
float* work,
int lwork,
int* info )
124 #if defined(INTEL_MKL_VERSION) 128 sorgqr_( &m, &n, &k, A, &lda, const_cast<float*>( tau ), work, &lwork, info );
164 inline void orgqr(
int m,
int n,
int k,
double* A,
int lda,
const double* tau,
double* work,
int lwork,
int* info )
166 #if defined(INTEL_MKL_VERSION) 170 dorgqr_( &m, &n, &k, A, &lda, const_cast<double*>( tau ), work, &lwork, info );
void orgqr(int m, int n, int k, float *A, int lda, const float *tau, float *work, int lwork, int *info)
LAPACK kernel for the reconstruction of the orthogonal matrix Q from a QR decomposition.
Definition: orgqr.h:122
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
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