35#ifndef _BLAZE_MATH_LAPACK_CLAPACK_GERQF_H_
36#define _BLAZE_MATH_LAPACK_CLAPACK_GERQF_H_
56#if !defined(INTEL_MKL_VERSION)
155#if defined(INTEL_MKL_VERSION)
159 sgerqf_( &m, &n, A, &lda, tau, work, &lwork, info );
217#if defined(INTEL_MKL_VERSION)
221 dgerqf_( &m, &n, A, &lda, tau, work, &lwork, info );
281#if defined(INTEL_MKL_VERSION)
284 using ET = MKL_Complex8;
289 cgerqf_( &m, &n,
reinterpret_cast<ET*
>( A ), &lda,
reinterpret_cast<ET*
>( tau ),
290 reinterpret_cast<ET*
>( work ), &lwork, info );
350#if defined(INTEL_MKL_VERSION)
353 using ET = MKL_Complex16;
358 zgerqf_( &m, &n,
reinterpret_cast<ET*
>( A ), &lda,
reinterpret_cast<ET*
>( tau ),
359 reinterpret_cast<ET*
>( work ), &lwork, info );
Header file for the complex data type.
Complex data type of the Blaze library.
void gerqf(DenseMatrix< MT, SO > &A, ElementType_t< MT > *tau)
LAPACK kernel for the RQ decomposition of the given dense matrix.
Definition: gerqf.h:119
int32_t blas_int_t
Signed integer type used in the BLAS/LAPACK wrapper functions.
Definition: Types.h:64
#define BLAZE_STATIC_ASSERT(expr)
Compile time assertion macro.
Definition: StaticAssert.h:112
Header file for basic BLAS type definitions.