35#ifndef _BLAZE_MATH_LAPACK_CLAPACK_ORGQR_H_
36#define _BLAZE_MATH_LAPACK_CLAPACK_ORGQR_H_
56#if !defined(INTEL_MKL_VERSION)
128#if defined(INTEL_MKL_VERSION)
132 sorgqr_( &m, &n, &k, A, &lda,
const_cast<float*
>( tau ), work, &lwork, info );
171#if defined(INTEL_MKL_VERSION)
175 dorgqr_( &m, &n, &k, A, &lda,
const_cast<double*
>( tau ), work, &lwork, info );
Header file for the complex data type.
void orgqr(DenseMatrix< MT, SO > &A, const ElementType_t< MT > *tau)
LAPACK kernel for the reconstruction of the orthogonal matrix Q from a QR decomposition.
Definition: orgqr.h:118
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.