35 #ifndef _BLAZE_MATH_LAPACK_CLAPACK_UNMQL_H_ 36 #define _BLAZE_MATH_LAPACK_CLAPACK_UNMQL_H_ 56 #if !defined(INTEL_MKL_VERSION) 59 void cunmql_(
char* side,
char*
trans,
int* m,
int* n,
int* k,
float* A,
int* lda,
60 float* tau,
float* C,
int* ldc,
float* work,
int* lwork,
int* info,
62 void zunmql_(
char* side,
char*
trans,
int* m,
int* n,
int* k,
double* A,
int* lda,
63 double* tau,
double* C,
int* ldc,
double* work,
int* lwork,
int* info,
85 void unmql(
char side,
char trans,
int m,
int n,
int k,
const complex<float>* A,
int lda,
86 const complex<float>* tau, complex<float>* C,
int ldc, complex<float>* work,
87 int lwork,
int* info );
89 void unmql(
char side,
char trans,
int m,
int n,
int k,
const complex<double>* A,
int lda,
90 const complex<double>* tau, complex<double>* C,
int ldc, complex<double>* work,
91 int lwork,
int* info );
143 inline void unmql(
char side,
char trans,
int m,
int n,
int k,
const complex<float>* A,
int lda,
144 const complex<float>* tau, complex<float>* C,
int ldc, complex<float>* work,
145 int lwork,
int* info )
149 #if defined(INTEL_MKL_VERSION) 151 using ET = MKL_Complex8;
156 cunmql_( &side, &
trans, &m, &n, &k,
157 const_cast<ET*>( reinterpret_cast<const ET*>( A ) ), &lda,
158 const_cast<ET*>( reinterpret_cast<const ET*>( tau ) ),
159 reinterpret_cast<ET*>( C ), &ldc, reinterpret_cast<ET*>( work ),
212 inline void unmql(
char side,
char trans,
int m,
int n,
int k,
const complex<double>* A,
int lda,
213 const complex<double>* tau, complex<double>* C,
int ldc, complex<double>* work,
214 int lwork,
int* info )
218 #if defined(INTEL_MKL_VERSION) 220 using ET = MKL_Complex16;
225 zunmql_( &side, &
trans, &m, &n, &k,
226 const_cast<ET*>( reinterpret_cast<const ET*>( A ) ), &lda,
227 const_cast<ET*>( reinterpret_cast<const ET*>( tau ) ),
228 reinterpret_cast<ET*>( C ), &ldc, reinterpret_cast<ET*>( work ),
Header file for basic type definitions.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
void unmql(char side, char trans, int m, int n, int k, const complex< float > *A, int lda, const complex< float > *tau, complex< float > *C, int ldc, complex< float > *work, int lwork, int *info)
LAPACK kernel for the multiplication of the single precision Q from a QL decomposition with another m...
Definition: unmql.h:143
decltype(auto) trans(const DenseMatrix< MT, SO > &dm)
Calculation of the transpose of the given dense matrix.
Definition: DMatTransExpr.h:765
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
Size type of the Blaze library.