NANAMay 29, 2018

A Householder-based algorithm for Hessenberg-triangular reduction

arXiv:1710.085383 citationsh-index: 37
AI Analysis

For numerical linear algebra practitioners, this provides an alternative HT reduction method with potential for improved parallel performance, though currently only sequential results are demonstrated.

The paper introduces a Householder-based algorithm for Hessenberg-triangular reduction that uses block reflectors instead of Givens rotations. Experiments show it is competitive with the state-of-the-art in sequential settings, despite higher flop counts, and suggests better parallel scalability.

The QZ algorithm for computing eigenvalues and eigenvectors of a matrix pencil $A - λB$ requires that the matrices first be reduced to Hessenberg-triangular (HT) form. The current method of choice for HT reduction relies entirely on Givens rotations regrouped and accumulated into small dense matrices which are subsequently applied using matrix multiplication routines. A non-vanishing fraction of the total flop count must nevertheless still be performed as sequences of overlapping Givens rotations alternately applied from the left and from the right. The many data dependencies associated with this computational pattern leads to inefficient use of the processor and poor scalability. In this paper, we therefore introduce a fundamentally different approach that relies entirely on (large) Householder reflectors partially accumulated into block reflectors, by using (compact) WY representations. Even though the new algorithm requires more floating point operations than the state of the art algorithm, extensive experiments on both real and synthetic data indicate that it is still competitive, even in a sequential setting. The new algorithm is conjectured to have better parallel scalability, an idea which is partially supported by early small-scale experiments using multi-threaded BLAS. The design and evaluation of a parallel formulation is future work.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes