14#ifndef TLAPACK_UNGQ_LV2_HH
15#define TLAPACK_UNGQ_LV2_HH
60 const idx_t m = nrows(
A);
61 const idx_t n = ncols(
A);
104 const idx_t m = nrows(
A);
105 const idx_t n = ncols(
A);
106 const idx_t
k = size(
tau);
110 direction != Direction::Forward);
112 : (n >= m && m >=
k));
115 if (m <= 0 || n <= 0)
return 0;
118 if (direction == Direction::Forward) {
125 for (idx_t j =
k - 1; j != idx_t(-1); --j) {
129 auto v = slice(
A,
range{j, m}, j);
137 for (idx_t i = 0; i < j; i++)
150 for (idx_t j = 0; j <
k; ++j) {
151 const idx_t
sizev = m -
k + j + 1;
152 const idx_t
jj = n -
k + j;
164 for (idx_t i =
sizev; i < m; i++)
170 if (direction == Direction::Forward) {
177 for (idx_t i =
k - 1; i != idx_t(-1); --i) {
181 auto v = slice(
A, i,
range{i, n});
189 for (idx_t j = 0; j < i; j++)
202 for (idx_t i = 0; i <
k; ++i) {
203 const idx_t
sizev = n -
k + i + 1;
204 const idx_t
ii = m -
k + i;
216 for (idx_t j =
sizev; j < n; j++)
301 const idx_t m = nrows(
A);
302 const idx_t n = ncols(
A);
305 if (m <= 0 || n <= 0)
return 0;
309 std::vector<T>
work_;
constexpr internal::Backward BACKWARD
Backward direction.
Definition types.hpp:383
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::GeneralAccess GENERAL
General access.
Definition types.hpp:180
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_SVECTOR
Macro for tlapack::concepts::SliceableVector compatible with C++17.
Definition concepts.hpp:909
#define TLAPACK_STOREV
Macro for tlapack::concepts::StoreV compatible with C++17.
Definition concepts.hpp:936
#define TLAPACK_SMATRIX
Macro for tlapack::concepts::SliceableMatrix compatible with C++17.
Definition concepts.hpp:899
#define TLAPACK_DIRECTION
Macro for tlapack::concepts::Direction compatible with C++17.
Definition concepts.hpp:930
#define TLAPACK_WORKSPACE
Macro for tlapack::concepts::Workspace compatible with C++17.
Definition concepts.hpp:912
int ungq_level2(direction_t direction, storage_t storeMode, matrix_t &A, const vector_t &tau)
Generates a matrix Q that is the product of elementary reflectors.
Definition ungq_level2.hpp:289
void laset(uplo_t uplo, const type_t< matrix_t > &alpha, const type_t< matrix_t > &beta, matrix_t &A)
Initializes a matrix to diagonal and off-diagonal values.
Definition laset.hpp:38
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
void scal(const alpha_t &alpha, vector_t &x)
Scale vector by constant, .
Definition scal.hpp:30
int ungq_level2_work(direction_t direction, storage_t storeMode, matrix_t &A, const vector_t &tau, work_t &work)
Generates a matrix Q that is the product of elementary reflectors. Workspace is provided as an argu...
Definition ungq_level2.hpp:90
#define tlapack_check(cond)
Throw an error if cond is false.
Definition exceptionHandling.hpp:98
#define tlapack_check_false(cond)
Throw an error if cond is true.
Definition exceptionHandling.hpp:113
constexpr WorkInfo ungq_level2_worksize(direction_t direction, storage_t storeMode, const matrix_t &A, const vector_t &tau)
Worspace query of ungq_level2()
Definition ungq_level2.hpp:51
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