12#ifndef TLAPACK_GELQT_HH
13#define TLAPACK_GELQT_HH
32template <
class T, TLAPACK_SMATRIX matrix_t>
39 const idx_t m = nrows(
A);
40 const idx_t n = ncols(
A);
41 const idx_t
k = min(m, n);
42 const idx_t nb = min((idx_t)ncols(
TT),
k);
59template <TLAPACK_SMATRIX matrix_t, TLAPACK_WORKSPACE work_t>
66 const idx_t m = nrows(
A);
67 const idx_t n = ncols(
A);
68 const idx_t
k = min(m, n);
69 const idx_t nb = ncols(
TT);
74 for (idx_t j = 0; j <
k; j += nb) {
76 idx_t
ib = min(nb,
k - j);
145template <TLAPACK_SMATRIX matrix_t>
155 std::vector<T>
work_;
constexpr internal::RightSide RIGHT_SIDE
right side
Definition types.hpp:296
constexpr internal::RowwiseStorage ROWWISE_STORAGE
Rowwise storage.
Definition types.hpp:416
constexpr internal::Forward FORWARD
Forward direction.
Definition types.hpp:381
constexpr internal::NoTranspose NO_TRANS
no transpose
Definition types.hpp:260
constexpr auto diag(T &A, int diagIdx=0) noexcept
Get the Diagonal of an Eigen Matrix.
Definition eigen.hpp:576
int gelqt(matrix_t &A, matrix_t &TT)
Computes an LQ factorization of a complex m-by-n matrix A using a blocked algorithm.
Definition gelqt.hpp:146
int larfb_work(side_t side, trans_t trans, direction_t direction, storage_t storeMode, const matrixV_t &V, const matrixT_t &Tmatrix, matrixC_t &C, work_t &work)
Applies a block reflector or its conjugate transpose to a m-by-n matrix C, from either the left or ...
Definition larfb.hpp:111
int larft(direction_t direction, storage_t storeMode, const matrixV_t &V, const vector_t &tau, matrixT_t &T)
Forms the triangular factor T of a block reflector H of order n, which is defined as a product of k e...
Definition larft.hpp:92
int gelq2_work(matrix_t &A, vector_t &tauw, work_t &work)
Computes an LQ factorization of a complex m-by-n matrix A using an unblocked algorithm....
Definition gelq2.hpp:59
int gelqt_work(matrix_t &A, matrix_t &TT, work_t &work)
Computes an LQ factorization of a complex m-by-n matrix A using a blocked algorithm....
Definition gelqt.hpp:60
#define tlapack_check_false(cond)
Throw an error if cond is true.
Definition exceptionHandling.hpp:113
constexpr WorkInfo gelqt_worksize(const matrix_t &A, const matrix_t &TT)
Worspace query of gelqt()
Definition gelqt.hpp:33
Applies a Householder block reflector to a matrix.
Forms the triangular factor T of a block reflector.
typename traits::real_type_traits< Types..., int >::type real_type
The common real type of the list of types.
Definition scalar_type_traits.hpp:113
Output information in the workspace query.
Definition workspace.hpp:16