summaryrefslogtreecommitdiff
path: root/SRC/zhgeqz.f
AgeCommit message (Collapse)AuthorFilesLines
2016-07-09STYLE: Remove trailing whitespace in Fortran filesHans Johnson1-23/+23
This is mostly a long term maintenance improvement. Many coding styles require elimination of trailing whitespace, and many editors and source code management configurations automatically gobble up whitespace. When these tools gobble up whitespace, it complicates reviewing the meaningful code changes. By removing whitespace on one patch, it makes future code reviews much easier. =SCRIPT==================================================================== if which tempfile &>/dev/null; then TEMPMAKER=tempfile elif which mktemp &>/dev/null; then TEMPMAKER=mktemp else echo "Cannot find tempfile program." 2>&1 exit 1 fi MYTEMP=$($TEMPMAKER) trap 'rm -f $MYTEMP' SIGINT SIGTERM stripit() { echo "stripping $1" sed 's/[ \t]*$//' "$1" > $MYTEMP cp $MYTEMP "$1" } if [ $# -gt 0 ]; then while [ "$1" != "" ]; do stripit $1 shift done else while read -t 2; do stripit $REPLY done fi rm $MYTEMP =================================================
2016-06-18Update date, version for 3.6.1 releaseJulie1-1/+1
2016-02-23APPLYING INTEL PATCHES sent to Julie on Feb 19th 2016 by Dima from INTEL ↵julie1-4/+4
(dmitry.g.baksheev@intel.com) [PATCH 18/42] Fix ?HGEQZ documentation - use of Q depends on COMPQ, not on COMPZ
2015-11-15Updating version numberjulie1-1/+1
2015-07-18Commit bug reported by Alexander Kobotov (INTEL) on LAPACK Forumjulie1-1/+1
Link: http://icl.cs.utk.edu/lapack-forum/viewtopic.php?f=13&t=4762&p=11439#p11439 Recent commit r1533 introduced out of bound access which could lead to a crash. It results scaling of a vector instead of a single number. Fix is simple: zhgeqz.f:669 - CALL ZSCAL( ILAST, SIGNBC, H( ILAST, ILAST ), 1 ) + CALL ZSCAL( 1, SIGNBC, H( ILAST, ILAST ), 1 ) Similar for chgeqz on line 668
2015-03-06Correction reported by Elena (Oracle)julie1-3/+3
LAPACK 3.5.0 [cz]hgeqz.f compute eigenvalues differently depending on whether eigenvectors are requested or not. Since the computation is different, eigenvalues are not bit-by-bit identical whether eigenvectors are requested or not. This fix enables to have [cz]hgeqz.f behaving more of the same whether eigenvectors are requested or not. Note: The fact that eigenvalues are bit-by-bit identical whether eigenvectors are requested or not is checked in the LAPACK test suite.
2012-04-23modified exceptional shift for complex versions - solves problem of nan's ↵james1-1/+2
appearing on some platforms, most notably IBM/XLF, causing an infinite loop in xLARTG (which also should be fixed by enforcing a max iteration count when computing SCALE)
2012-04-18Update date and revision numberjulie1-3/+3
2012-04-17modified exceptional shift strategy so that QZ now works for various pencils ↵james1-2/+1
(see http://netlib.org/lapack/Errata/vrac/lapack_known_issues.html)
2011-11-11Update version number to 3.4.0julie1-1/+1
2011-11-03Cosmetic changes in Doxygen presentation.julie1-18/+14
Use \par instead of \details for section. add a Contributors Section and a Reference Section. Remove (some) verbatim section when not needed. Those changes have been done by hand so I am not sure I manage to catch them all.
2011-11-01Never say never...julie1-4/+2
2011-11-01Last commit related to Doxygen integration following Albert's commentjulie1-1/+3
2011-10-13adding link to individual download, the links will appear directly in ↵julie1-0/+8
Doxygen html documentation
2011-10-06Integrating Doxygen in commentsjulie1-169/+280
2011-09-30Comments fix to be able to generate the new layout and the corresponding ↵julie1-0/+1
Doxygen documentation
2009-04-16Big commit before 3.2.1 release.julie1-1/+2
Those are just cosmetic changes to update version number and various other minor change.
2008-12-16(no commit message)julie1-1/+1
2008-10-28Move LAPACK trunk into position.jason1-0/+759