35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_ORGL2_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_ORGL2_H_ 55 #if !defined(INTEL_MKL_VERSION) 58 void sorgl2_(
int* m,
int* n,
int* k,
float* A,
int* lda,
float* tau,
float* work,
int* info );
59 void dorgl2_(
int* m,
int* n,
int* k,
double* A,
int* lda,
double* tau,
double* work,
int* info );
80 void orgl2(
int m,
int n,
int k,
float* A,
int lda,
const float* tau,
float* work,
int* info );
82 void orgl2(
int m,
int n,
int k,
double* A,
int lda,
const double* tau,
double* work,
int* info );
117 inline void orgl2(
int m,
int n,
int k,
float* A,
int lda,
const float* tau,
float* work,
int* info )
119 #if defined(INTEL_MKL_VERSION) 123 sorgl2_( &m, &n, &k, A, &lda, const_cast<float*>( tau ), work, info );
158 inline void orgl2(
int m,
int n,
int k,
double* A,
int lda,
const double* tau,
double* work,
int* info )
160 #if defined(INTEL_MKL_VERSION) 164 dorgl2_( &m, &n, &k, A, &lda, const_cast<double*>( tau ), work, info );
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
void orgl2(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 LQ decomposition.
Definition: orgl2.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