forked from trilinos/Trilinos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Stokhos: Replace STEQR with PTEQR for issue trilinos#3542.
The LAPACK STEQR function, which computes eigenvalues/vectors of symmetric, tridiagonal matrices, seg faults on the IBM Power systems for some unknown reason. However PTEQR, which does the same for SPD systems, appears to work. So I replaced to the call to STEQR in the recurrence basis implementation with PTEQR. This was more complicated than it sounds because the recurrence matrix is not positive definite. So I had to put in a shift to make it so for PTEQR. This required loosening a few tight numerical tolerances in some tests.
- Loading branch information
Showing
5 changed files
with
55 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters