[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [eigen] GivensQR
- From: Andrea Arteaga <yo.eres@xxxxxxxxx>
- Date: Tue, 8 Sep 2009 18:59:44 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:message-id:subject:to:content-type; bh=ihLkK8Es4oX5rqtO/5yAZaYJQ4Z42/kpCjYAK6BCbbU=; b=nNxsr0CKAoA+o4dWAR8h9RlTu29QfSwdt9YcV4D6FP1tTbbV5GSmao4Qc1fvqDXnZe ZUDd5Zbp0iU8ID4a0D1xXXpdhmTH+hBVSoDUSauNrNwp0g2cwaIxrHf9Z+YeG3Q4+SLz YLCySqsMfjjmSBzH9o1/NgvibCmq43hLhrmaI=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; b=jPg9uEFiOnaqF5dG2YkiVAH/f8n55mKHENiBKaicHv9YzvwJM3aNgE4I10GFkwdhDv Q4d9YWw0IHBztbBh9AlQ5ybgT4LQnq2cXIZLse8jFLj6/3U2TweXjeTizxUsIxf/Sny+ P67qRnexzCFNE+59gJMv6IJG1Px/GSNKtvjF0=
In principle my Givens decomposition was designed for small-sized square (or quasi-square) matrices. Your benchmarks show that this kind of decomposition is actually not optimal for big matrices, due to the algorithm's limits. I think however that this decomposition could be faster as Householder if the code were a little optimized. We can begin that by using the Jacobi module.
I will try to to so and to implement your idea about the template flags, which in practice make the constructor call the compute_CR() or compute_QCR() methods. I also want to understand how much the computation and storing of coefficients is costly.
If I write relevant updates for the code, I will submit they on my fork..
Andrea Arteaga