summaryrefslogtreecommitdiff
path: root/TESTING/EIG/zerred.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-21/+21
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
2015-11-30oops . . . langou1-1/+1
this is related to commit r1654. In commit r1654, I fixed the error parameter in GESVDX to be 17 when LDVT is invalid, I should also have changed the test suite. Both the code and the test suite were incorrect. Between r1654 and r1659, LAPACK error testing were returning 4 errors because of this. Fixed. Julien.
2015-11-15Updating version numberjulie1-3/+3
2015-11-15Adding CGESVJ/ZGESVJ and CGEJSV/ZGESVJ to the testing suitejulie1-2/+69
Note: TEST 15 and 19 (xBDT01 - | A - U diag(S) VT | / ( |A| max(M,N) ulp ) are not passing the threshold TEST 15 and 19 are commented until we find the fix
2015-11-04Commit svdx files sent by Osni on Oct 31st 2015julie1-3/+64
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
2011-11-11Update version number to 3.4.0julie1-1/+1
2011-11-03Cosmetic changes in Doxygen presentation.julie1-13/+11
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-10-06Integrating Doxygen in commentsjulie1-24/+67
2008-12-16(no commit message)julie1-6/+10
2008-10-28Move LAPACK trunk into position.jason1-0/+345