35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_ORMQL_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_ORMQL_H_ 54 #if !defined(INTEL_MKL_VERSION) 57 void sormql_(
char* side,
char*
trans,
int* m,
int* n,
int* k,
float* A,
int* lda,
float* tau,
float* C,
int* ldc,
float* work,
int* lwork,
int* info );
58 void dormql_(
char* side,
char*
trans,
int* m,
int* n,
int* k,
double* A,
int* lda,
double* tau,
double* C,
int* ldc,
double* work,
int* lwork,
int* info );
79 inline void ormql(
char side,
char trans,
int m,
int n,
int k,
const float* A,
int lda,
80 const float* tau,
float* C,
int ldc,
float* work,
int lwork,
int* info );
82 inline void ormql(
char side,
char trans,
int m,
int n,
int k,
const double* A,
int lda,
83 const double* tau,
double* C,
int ldc,
double* work,
int lwork,
int* info );
135 inline void ormql(
char side,
char trans,
int m,
int n,
int k,
const float* A,
int lda,
136 const float* tau,
float* C,
int ldc,
float* work,
int lwork,
int* info )
138 #if defined(INTEL_MKL_VERSION) 142 sormql_( &side, &
trans, &m, &n, &k, const_cast<float*>( A ), &lda,
143 const_cast<float*>( tau ), C, &ldc, work, &lwork, info );
195 inline void ormql(
char side,
char trans,
int m,
int n,
int k,
const double* A,
int lda,
196 const double* tau,
double* C,
int ldc,
double* work,
int lwork,
int* info )
198 #if defined(INTEL_MKL_VERSION) 202 dormql_( &side, &
trans, &m, &n, &k, const_cast<double*>( A ), &lda,
203 const_cast<double*>( tau ), C, &ldc, work, &lwork, info );
void ormql(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 QL decomposition with another m...
Definition: ormql.h:135
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