35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_ORMQL_H_
36 #define _BLAZE_MATH_LAPACK_CLAPACK_ORMQL_H_
49 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 );
50 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 );
70 inline void ormql(
char side,
char trans,
int m,
int n,
int k,
const float* A,
int lda,
71 const float* tau,
float* C,
int ldc,
float* work,
int lwork,
int*
info );
73 inline void ormql(
char side,
char trans,
int m,
int n,
int k,
const double* A,
int lda,
74 const double* tau,
double* C,
int ldc,
double* work,
int lwork,
int*
info );
125 inline void ormql(
char side,
char trans,
int m,
int n,
int k,
const float* A,
int lda,
126 const float* tau,
float* C,
int ldc,
float* work,
int lwork,
int*
info )
128 sormql_( &side, &trans, &m, &n, &k, const_cast<float*>( A ), &lda,
129 const_cast<float*>( tau ), C, &ldc, work, &lwork, info );
180 inline void ormql(
char side,
char trans,
int m,
int n,
int k,
const double* A,
int lda,
181 const double* tau,
double* C,
int ldc,
double* work,
int lwork,
int*
info )
183 dormql_( &side, &trans, &m, &n, &k, const_cast<double*>( A ), &lda,
184 const_cast<double*>( tau ), C, &ldc, work, &lwork, info );
Log level for high-level information.
Definition: LogLevel.h:80
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:125
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
const DMatTransExpr< MT,!SO > trans(const DenseMatrix< MT, SO > &dm)
Calculation of the transpose of the given dense matrix.
Definition: DMatTransExpr.h:950