35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_ORMQR_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_ORMQR_H_ 55 #if !defined(INTEL_MKL_VERSION) 58 void sormqr_(
char* side,
char*
trans,
int* m,
int* n,
int* k,
float* A,
int* lda,
59 float* tau,
float* C,
int* ldc,
float* work,
int* lwork,
int* info,
61 void dormqr_(
char* side,
char*
trans,
int* m,
int* n,
int* k,
double* A,
int* lda,
62 double* tau,
double* C,
int* ldc,
double* work,
int* lwork,
int* info,
84 void ormqr(
char side,
char trans,
int m,
int n,
int k,
const float* A,
int lda,
85 const float* tau,
float* C,
int ldc,
float* work,
int lwork,
int* info );
87 void ormqr(
char side,
char trans,
int m,
int n,
int k,
const double* A,
int lda,
88 const double* tau,
double* C,
int ldc,
double* work,
int lwork,
int* info );
140 inline void ormqr(
char side,
char trans,
int m,
int n,
int k,
const float* A,
int lda,
141 const float* tau,
float* C,
int ldc,
float* work,
int lwork,
int* info )
143 #if defined(INTEL_MKL_VERSION) 147 sormqr_( &side, &
trans, &m, &n, &k, const_cast<float*>( A ), &lda,
148 const_cast<float*>( tau ), C, &ldc, work, &lwork, info,
201 inline void ormqr(
char side,
char trans,
int m,
int n,
int k,
const double* A,
int lda,
202 const double* tau,
double* C,
int ldc,
double* work,
int lwork,
int* info )
204 #if defined(INTEL_MKL_VERSION) 208 dormqr_( &side, &
trans, &m, &n, &k, const_cast<double*>( A ), &lda,
209 const_cast<double*>( tau ), C, &ldc, work, &lwork, info,
void ormqr(char side, char trans, int m, int n, int k, const float *A, int lda, const float *tau, float *C, int ldc, float *work, int lwork, int *info)
LAPACK kernel for the multiplication of the single precision Q from a QR decomposition with another m...
Definition: ormqr.h:140
Header file for basic type definitions.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
decltype(auto) trans(const DenseMatrix< MT, SO > &dm)
Calculation of the transpose of the given dense matrix.
Definition: DMatTransExpr.h:765
#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
Size type of the Blaze library.