Commit Graph

6 Commits

Author SHA1 Message Date
Vladimir Chalupecky
7f0eabc5a2 native,testlapack: reduce required length of wr and wi in Dlahqr
Dlahqr must not (and does not) write into wr and wi beyond ihi, so it only makes
sense to make the slices shorter. Dlaqr4 (the caller) will have the same restriction.
2016-08-29 11:39:52 +09:00
Vladimir Chalupecky
5a10757985 native: polish docs for Dlahqr 2016-08-15 14:54:24 +09:00
Vladimir Chalupecky
7d468fb818 native: update docs for Dlahqr 2016-08-15 14:44:50 +09:00
Vladimir Chalupecky
7d61100a09 native: change Dlahqr back to return single integer
If the returned integer is a 1-based size and not a 0-based index, we can use 0
to indicate success (i.e., all eigenvalues have converged) and thus the
`converged bool` is not necessary.
2016-08-15 13:53:24 +09:00
Vladimir Chalupecky
a8773d9d7d native: add indicator of convergence to returned values from Dlahqr
Previously, the zero value of the returned integer info was used to indicate
success. This is wrong because it is a 0-based index unlike the reference LAPACK
where it is a 1-based index and therefore 0 is available for such purpose. This
commit adds `converged bool` to the returned values from Dlahqr.
2016-08-09 16:28:58 +09:00
Vladimir Chalupecky
4f0b6992f2 native: add Dlahqr 2016-06-21 16:34:07 +09:00