aboutsummaryrefslogtreecommitdiff
path: root/SRC/dbdsvdx.f
AgeCommit message (Collapse)Author
2016-12-23Updating version number on source file modified since 3.6.1Julie
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 Johnson
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 releaseJulie
2016-06-14SBDSVDX and DBDSVDX routines contain wrong name in description of INFO ↵Julie
parameter: reported by Eugene Chereshnev on April 4th 2016 See: http://icl.cs.utk.edu/lapack-forum/posting.php?mode=reply&f=13&t=4945
2016-06-14Update Descriptions for IL, IU, VL and VUJulie
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-23APPLYING INTEL PATCHES sent to Julie on Feb 19th 2016 by Dima from INTEL ↵julie
(dmitry.g.baksheev@intel.com) [PATCH 08/42] Fix ?BDSVDX: E is N-1 array; do not access Z when JOBZ.EQ.'N' - Bug setting E(N): E is N-1 array - Do not access Z when JOBZ.EQ.'n' - Typos in documentation
2015-11-04Commit svdx files sent by Osni on Oct 31st 2015julie
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