summaryrefslogtreecommitdiff
path: root/SRC/zgesvdx.f
AgeCommit message (Collapse)AuthorFilesLines
2016-12-23Updating version number on source file modified since 3.6.1Julie1-1/+1
This is really old school, but a lot of times we have users sending us copy pasting of codes, and that is the only way to know the version of the code.
2016-07-09STYLE: Remove trailing whitespace in Fortran filesHans Johnson1-93/+93
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-3/+3
2016-06-15CGESVDX and ZGESVDX contain double assignment to ALLS and INDS variablesJulie1-2/+0
reported by Eugene Chereshnev on April 4th 2016 See: http://icl.cs.utk.edu/lapack-forum/posting.php?mode=reply&f=13&t=4942
2016-06-14Update Descriptions for IL, IU, VL and VUJulie1-4/+10
reported by Alex Zotkevich, Intel Co. on april 11th 2016 See http://icl.cs.utk.edu/lapack-forum/viewtopic.php?f=13&t=4951
2016-02-23Adjust line length on previous commitjulie1-2/+2
2016-02-23APPLYING INTEL PATCHES sent to Julie on Feb 19th 2016 by Dima from INTEL ↵julie1-29/+38
(dmitry.g.baksheev@intel.com) Subject: [PATCH 02/42] Fix ?DESVDX: do not fill U/VT beyond NS, and other changes - Typos and comments corrupting doxygen output - LDVT.LT.MINMN may be acceptable when RANGE=='i' - Bug: do not fill U and VT beyond NS - Typo in comment: A is COMPLEX*16 for ZGESVDX
2015-11-22oops, change some C to Z in the Z routineslangou1-11/+11
2015-11-22Correct workspace computation for [CZ]GESVDX when a workspace query is donelangou1-27/+40
This is a bug report and a bug fix from Lawrence Mulholland from NAG. Thanks Lawrence! Also add a variable ITEMPR to index the real workspace RWORK as opposed to using ITEMP. ITEMP is for complex workspace WORK, while ITEMPR is for the real workspace RWORK. Sounds good. Thanks Lawrence! See http://icl.cs.utk.edu/lapack-forum/viewtopic.php?t=4851
2015-11-20Correct the INFO parameter value when LVT is not correct. (LDVT is 17thlangou1-1/+1
argument and not 16th.) Thanks to Lawrence Mulholland from NAG. See: http://icl.cs.utk.edu/lapack-forum/viewtopic.php?t=4851
2015-11-04Commit svdx files sent by Osni on Oct 31st 2015julie1-0/+831
Updated Makefile Updated file format (Oxygen) Small Fix: sdrvbd / cdrvbd has a lot of double / double complex in comments From Osni: Files for LAPACK/SRC (all new, additions to Makefile are needed): - dbdsvdx.f, sbdsvdx.f: full or partial (subset) SVD of a bidiagonal matrix through an associated eigenvalue problem - dgesvdx.f, sgesvdx.f, zgesvdx.f, cgesvdx.f: full or partial (subset) SVD of a general matrix by invoking bdsvdx Files for LAPACK/TESTING/EIG : - dchkbd.f, schkbd.f: added tests 20-34 for bdsvdx - dbdt04.f, sbdt04.f (new): needed for tests 25 and 30 in chkbd - dlahd2.f, slahd2.f: added information about tests 20-34 in chkbd - derrbd.f, serrbd.f: added tests for the values of INFO returned by bdsvdx - ddrvbd.f, sdrvbd.f, zdrvbd.f, cdrvbd.f: added tests 23-35 (real case) and 15-27 (complex case) for gesvdx. - dbdt05.f, sbdt05.f, zbdt05.f, cbdt05.f (new): needed for tests 30,33 (real case) and 22,25 (complex case) for gesvdx - derred.f, serred.f, zerred.f, cerred.f: added tests for the values of INFO returned by gesvdx Current Issues: - 16 real tests do not pass the threshold ( ssvd.out) - but seems to go through in debug - serrbd.f has some DOUBLE PRECISION calculation inside - Is that ok or shall we change it to REAL? Line 113-119 * Set the variables to innocuous values. * DO 20 J = 1, NMAX DO 10 I = 1, NMAX A( I, J ) = 1.D0 / DBLE( I+J ) 10 CONTINUE 20 CONTINUE TODO: - corresponding LAPACKE routines - Test Doxygen format