12#ifndef TLAPACK_MULTISHIFT_QZ_HH
13#define TLAPACK_MULTISHIFT_QZ_HH
89 const idx_t n = ncols(
A);
95 const idx_t nmin =
opts.nmin;
98 const idx_t
nsr =
opts.nshift_recommender(n,
nh);
101 const idx_t
nwr =
opts.deflation_window_recommender(n,
nh);
102 const idx_t
nw_max = (n - 3) / 3;
104 const idx_t nibble =
opts.nibble;
111 int n_shifts_total = 0;
127 if (
nh <= 0)
return 0;
135 return lahqz(
want_s,
want_q,
want_z,
ilo,
ihi,
A,
B,
alpha,
beta,
Q,
Z);
141 const idx_t
itmax = 30 * std::max<idx_t>(10,
nh);
205 tst =
tst + abs(
A(i - 1, i - 2));
225 abs1(
B(i, i) *
A(i - 1, i) -
A(i, i) *
B(i - 1, i));
227 abs1(
B(i, i) *
A(i - 1, i - 1) -
A(i, i) *
B(i - 1, i - 1));
251 for (idx_t j = i; j >
istart; j--) {
252 rotg(
B(j - 1, j),
B(j - 1, j - 1), c,
s);
253 B(j - 1, j - 1) =
zero;
267 auto z2 = col(
Z, j - 1);
273 rotg(
A(j, j - 1),
A(j + 1, j - 1), c,
s);
274 A(j + 1, j - 1) =
zero;
285 auto q2 = col(
Q, j + 1);
331 for (idx_t i = 0; i < n; ++i) {
347 for (idx_t i = 0; i < n; ++i) {
487 if (i > 1)
ss +=
abs1(
A(i - 1, i - 2));
504 for (idx_t i =
i_shifts; i <
k - 1; ++i) {
539 if (
ns % 2 == 1)
ns =
ns - 1;
564 n_sweep = n_sweep + 1;
565 n_shifts_total = n_shifts_total +
ns;
571 opts.n_shifts_total = n_shifts_total;
572 opts.n_sweep = n_sweep;
constexpr internal::FrobNorm FROB_NORM
Frobenius norm of matrices.
Definition types.hpp:347
constexpr real_type< T > real(const T &x) noexcept
Extends std::real() to real datatypes.
Definition utils.hpp:71
constexpr T conj(const T &x) noexcept
Extends std::conj() to real datatypes.
Definition utils.hpp:100
constexpr real_type< T > abs1(const T &x)
1-norm absolute value, |Re(x)| + |Im(x)|
Definition utils.hpp:133
constexpr real_type< T > imag(const T &x) noexcept
Extends std::imag() to real datatypes.
Definition utils.hpp:86
#define TLAPACK_SVECTOR
Macro for tlapack::concepts::SliceableVector compatible with C++17.
Definition concepts.hpp:909
#define TLAPACK_SMATRIX
Macro for tlapack::concepts::SliceableMatrix compatible with C++17.
Definition concepts.hpp:899
void multishift_QZ_sweep(bool want_t, bool want_q, bool want_z, size_type< matrix_t > ilo, size_type< matrix_t > ihi, matrix_t &A, matrix_t &B, const alpha_t &alpha, const beta_t &beta, matrix_t &Q, matrix_t &Z)
multishift_QR_sweep performs a single small-bulge multi-shift QR sweep.
Definition multishift_qz_sweep.hpp:63
auto lange(norm_t normType, const matrix_t &A)
Calculates the norm of a matrix.
Definition lange.hpp:38
int multishift_qz(bool want_s, bool want_q, bool want_z, size_type< matrix_t > ilo, size_type< matrix_t > ihi, matrix_t &A, matrix_t &B, alpha_t &alpha, beta_t &beta, matrix_t &Q, matrix_t &Z, FrancisOpts &opts)
multishift_qz computes the eigenvalues of a matrix pair (H,T), where H is an upper Hessenberg matrix ...
Definition multishift_qz.hpp:64
void svd22(const T &f, const T &g, const T &h, T &ssmin, T &ssmax, T &csl, T &snl, T &csr, T &snr)
Computes the singular value decomposition of a 2-by-2 real triangular matrix.
Definition svd22.hpp:55
void lahqr_eig22(T a00, T a01, T a10, T a11, complex_type< T > &s1, complex_type< T > &s2)
Computes the eigenvalues of a 2x2 matrix A.
Definition lahqr_eig22.hpp:34
int lahqz(bool want_s, bool want_q, bool want_z, size_type< matrix_t > ilo, size_type< matrix_t > ihi, matrix_t &A, matrix_t &B, alpha_t &alpha, beta_t &beta, matrix_t &Q, matrix_t &Z)
lahqz computes the eigenvalues of a matrix pair (H,T), where H is an upper Hessenberg matrix and T is...
Definition lahqz.hpp:60
void rotg(T &a, T &b, T &c, T &s)
Construct plane rotation that eliminates b, such that:
Definition rotg.hpp:39
void rot(vectorX_t &x, vectorY_t &y, const c_type &c, const s_type &s)
Apply plane rotation:
Definition rot.hpp:44
void scal(const alpha_t &alpha, vector_t &x)
Scale vector by constant, .
Definition scal.hpp:30
void aggressive_early_deflation_generalized(bool want_s, bool want_q, bool want_z, size_type< matrix_t > ilo, size_type< matrix_t > ihi, size_type< matrix_t > nw, matrix_t &A, matrix_t &B, alpha_t &alpha, beta_t &beta, matrix_t &Q, matrix_t &Z, size_type< matrix_t > &ns, size_type< matrix_t > &nd, FrancisOpts &opts)
aggressive_early_deflation_generalized accepts as input an upper Hessenberg pencil (A,...
Definition aggressive_early_deflation_generalized.hpp:100
#define tlapack_check_false(cond)
Throw an error if cond is true.
Definition exceptionHandling.hpp:113
void lahqz_eig22(const A_t &A, const B_t &B, complex_type< T > &alpha1, complex_type< T > &alpha2, T &beta1, T &beta2)
Computes the generalized eigenvalues of a 2x2 pencil (A,B) with B upper triangular.
Definition lahqz_eig22.hpp:35
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
Options struct for multishift_qr().
Definition FrancisOpts.hpp:23