35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_ORG2R_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_ORG2R_H_ 55 #if !defined(INTEL_MKL_VERSION) 58 void sorg2r_(
int* m,
int* n,
int* k,
float* A,
int* lda,
float* tau,
float* work,
int* info );
59 void dorg2r_(
int* m,
int* n,
int* k,
double* A,
int* lda,
double* tau,
double* work,
int* info );
80 void org2r(
int m,
int n,
int k,
float* A,
int lda,
const float* tau,
float* work,
int* info );
82 void org2r(
int m,
int n,
int k,
double* A,
int lda,
const double* tau,
double* work,
int* info );
117 inline void org2r(
int m,
int n,
int k,
float* A,
int lda,
const float* tau,
float* work,
int* info )
119 #if defined(INTEL_MKL_VERSION) 123 sorg2r_( &m, &n, &k, A, &lda, const_cast<float*>( tau ), work, info );
158 inline void org2r(
int m,
int n,
int k,
double* A,
int lda,
const double* tau,
double* work,
int* info )
160 #if defined(INTEL_MKL_VERSION) 164 dorg2r_( &m, &n, &k, A, &lda, const_cast<double*>( tau ), work, info );
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
void org2r(int m, int n, int k, float *A, int lda, const float *tau, float *work, int *info)
LAPACK kernel for the reconstruction of the orthogonal matrix Q from a QR decomposition.
Definition: org2r.h:117
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