12#ifndef TLAPACK_GEQL2_HH
13#define TLAPACK_GEQL2_HH
31template <
class T, TLAPACK_SMATRIX matrix_t, TLAPACK_VECTOR vector_t>
38 const idx_t n = ncols(
A);
41 auto&&
C = cols(
A,
range{1, n});
43 col(
A, 0),
tau[0],
C);
66 const idx_t m = nrows(
A);
67 const idx_t n = ncols(
A);
68 const idx_t
k = min(m, n);
76 for (idx_t
i2 = 0;
i2 <
k; ++
i2) {
80 auto v = slice(
A,
range{0, m -
k + i + 1}, n -
k + i);
129template <TLAPACK_SMATRIX matrix_t, TLAPACK_VECTOR vector_t>
139 const idx_t n = ncols(
A);
142 if (n <= 0)
return 0;
146 std::vector<T>
work_;
constexpr internal::Backward BACKWARD
Backward direction.
Definition types.hpp:383
constexpr internal::ColumnwiseStorage COLUMNWISE_STORAGE
Columnwise storage.
Definition types.hpp:414
constexpr internal::LeftSide LEFT_SIDE
left side
Definition types.hpp:294
constexpr T conj(const T &x) noexcept
Extends std::conj() to real datatypes.
Definition utils.hpp:100
#define TLAPACK_SMATRIX
Macro for tlapack::concepts::SliceableMatrix compatible with C++17.
Definition concepts.hpp:899
#define TLAPACK_WORKSPACE
Macro for tlapack::concepts::Workspace compatible with C++17.
Definition concepts.hpp:912
#define TLAPACK_VECTOR
Macro for tlapack::concepts::Vector compatible with C++17.
Definition concepts.hpp:906
int geql2(matrix_t &A, vector_t &tau)
Computes a QL factorization of a matrix A.
Definition geql2.hpp:130
void larfg(storage_t storeMode, type_t< vector_t > &alpha, vector_t &x, type_t< vector_t > &tau)
Generates a elementary Householder reflection.
Definition larfg.hpp:73
void larf_work(side_t side, storage_t storeMode, vector_t const &x, const tau_t &tau, vectorC0_t &C0, matrixC1_t &C1, work_t &work)
Applies an elementary reflector defined by tau and v to a m-by-n matrix C decomposed into C0 and C1....
Definition larf.hpp:48
int geql2_work(matrix_t &A, vector_t &tau, work_t &work)
Computes a QL factorization of a matrix A. Workspace is provided as an argument.
Definition geql2.hpp:60
#define tlapack_check_false(cond)
Throw an error if cond is true.
Definition exceptionHandling.hpp:113
constexpr WorkInfo geql2_worksize(const matrix_t &A, const vector_t &tau)
Worspace query of geql2()
Definition geql2.hpp:32
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