35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_ORGLQ_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_ORGLQ_H_ 55 #if !defined(INTEL_MKL_VERSION) 58 void sorglq_(
int* m,
int* n,
int* k,
float* A,
int* lda,
float* tau,
float* work,
int* lwork,
int* info );
59 void dorglq_(
int* m,
int* n,
int* k,
double* A,
int* lda,
double* tau,
double* work,
int* lwork,
int* info );
80 inline void orglq(
int m,
int n,
int k,
float* A,
int lda,
const float* tau,
81 float* work,
int lwork,
int* info );
83 inline void orglq(
int m,
int n,
int k,
double* A,
int lda,
const double* tau,
84 double* work,
int lwork,
int* info );
120 inline void orglq(
int m,
int n,
int k,
float* A,
int lda,
const float* tau,
float* work,
int lwork,
int* info )
122 #if defined(INTEL_MKL_VERSION) 126 sorglq_( &m, &n, &k, A, &lda, const_cast<float*>( tau ), work, &lwork, info );
162 inline void orglq(
int m,
int n,
int k,
double* A,
int lda,
const double* tau,
double* work,
int lwork,
int* info )
164 #if defined(INTEL_MKL_VERSION) 168 dorglq_( &m, &n, &k, A, &lda, const_cast<double*>( tau ), work, &lwork, info );
void orglq(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 LQ decomposition.
Definition: orglq.h:120
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