13#ifndef TLAPACK_GEBD2_HH
14#define TLAPACK_GEBD2_HH
35template <
class T, TLAPACK_SMATRIX matrix_t, TLAPACK_VECTOR vector_t>
44 const idx_t m = nrows(
A);
45 const idx_t n = ncols(
A);
55 auto&& row0 = slice(
A, 0,
range{1, n});
83 const idx_t m = nrows(
A);
84 const idx_t n = ncols(
A);
97 for (idx_t j = 0; j < n; ++j) {
99 auto v = slice(
A,
range(j, m), j);
109 auto w = slice(
A, j,
range(j + 1, n));
128 for (idx_t j = 0; j < m; ++j) {
130 auto w = slice(
A, j,
range(j, n));
140 auto v = slice(
A,
range(j + 1, m), j);
209template <TLAPACK_SMATRIX matrix_t, TLAPACK_VECTOR vector_t>
219 const idx_t n = ncols(
A);
222 if (n <= 0)
return 0;
226 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::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 gebd2(matrix_t &A, vector_t &tauv, vector_t &tauw)
Reduces a general m by n matrix A to an upper real bidiagonal form B by a unitary transformation:
Definition gebd2.hpp:210
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 gebd2_work(matrix_t &A, vector_t &tauv, vector_t &tauw, work_t &work)
Reduces a general m by n matrix A to an upper real bidiagonal form B by a unitary transformation: W...
Definition gebd2.hpp:76
#define tlapack_check_false(cond)
Throw an error if cond is true.
Definition exceptionHandling.hpp:113
constexpr WorkInfo gebd2_worksize(const matrix_t &A, const vector_t &tauv, const vector_t &tauw)
Worspace query of gebd2().
Definition gebd2.hpp:36
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