Commit Graph
68 Commits
Author SHA1 Message Date
Kyle Guinn 464f532552 Remove executable permissions from source files 2024-01-06 18:20:41 -06:00
langou d58d59a99d Merge pull request #891 from Reference-LAPACK/lapack-new-feature
Truncated QR with Pivoting
2023-11-14 21:02:04 -07:00
scr2016 ea4787ca59 added complex precision truncated QR and testing for CGEQP3RK, CLAQP2RK, CLAQP3RK 2023-11-14 04:42:11 -08:00
scr2016 7019c6345c added single precision ant testing for truncated QR i.e. SGEQP3RK, SLAQP2RK, SLAQP3RK 2023-11-14 04:42:10 -08:00
scr2016 e3b58c4cda added testing code for DGEQP3RK 2023-11-14 04:42:10 -08:00
scr2016 a0341b292d added a new file for testing TESTING/LIN/dchkqp3rk.f LIN/Makefile LIN/CMakeLists.txt 2023-11-14 04:42:08 -08:00
Angelika Schwarz 0d1e3ecdd9 Remove auxiliary GEQRS, GELQS
GEQRS and GELQS were likely computational routines once,
(they have an input argument check, which auxiliary/test
routines typically do not have) but have been superseded by
GELS a long time ago. The only remaining occurrences
are in the tests CHKQR and CHKLQ, where they are auxiliary
routines to widen the test coverage.

* Replace GEQRS and GELQS by calls to GELS in tests
* Remove the functions from the error exit tests
* Move GEQRS and GELQS to the deprecated routines

Closes #709
2023-08-28 19:49:41 +02:00
Martin Kroeker 8855029c49 Reflect renaming of ?chkaa files to .F 2021-05-14 18:18:58 +02:00
scr2016 0db28653df New complex Householder reconstruction routines,
C and Z precisions CODE and TESTING:
CGETSQRHRT, CUNGTSQR_ROW, CLARFB_GETT,
ZGETSQRHRT, ZUNGTSQR_ROW, ZLARFB_GETT.

  new file:   SRC/cgetsqrhrt.f
  new file:   SRC/clarfb_gett.f
  new file:   SRC/cungtsqr_row.f
  new file:   SRC/zgetsqrhrt.f
  new file:   SRC/zlarfb_gett.f
  new file:   SRC/zungtsqr_row.f
  modified:   SRC/CMakeLists.txt
  modified:   SRC/Makefile

  new file:   TESTING/LIN/cunhr_col02.f
  new file:   TESTING/LIN/zunhr_col02.f
  modified:   TESTING/LIN/cchkunhr_col.f
  modified:   TESTING/LIN/cunhr_col01.f
  modified:   TESTING/LIN/zchkunhr_col.f
  modified:   TESTING/LIN/zunhr_col01.f
  modified:   TESTING/LIN/CMakeLists.txt
  modified:   TESTING/LIN/Makefile
2020-12-10 06:16:35 -08:00
scr2016 8e8c025377 New real Householder reconstruction routines, S and D precisions CODE and TESTING:
SGETSQRHRT, SORGTSQR_ROW, SLARFB_GETT,
DGETSQRHRT, DORGTSQR_ROW, DLARFB_GETT.

  new file:   SRC/sgetsqrhrt.f
  new file:   SRC/slarfb_gett.f
  new file:   SRC/sorgtsqr_row.f
  new file:   SRC/dgetsqrhrt.f
  new file:   SRC/dlarfb_gett.f
  new file:   SRC/dorgtsqr_row.f
  modified:   SRC/CMakeLists.txt
  modified:   SRC/Makefile

  new file:   TESTING/LIN/sorhr_col02.f
  new file:   TESTING/LIN/dorhr_col02.f
  modified:   TESTING/LIN/schkorhr_col.f
  modified:   TESTING/LIN/sorhr_col01.f
  modified:   TESTING/LIN/dchkorhr_col.f
  modified:   TESTING/LIN/dorhr_col01.f
  modified:   TESTING/LIN/CMakeLists.txt
  modified:   TESTING/LIN/Makefile
2020-12-08 04:29:19 -08:00
scr2016 bd8a7b1e6b ++ SRC/cungtsqr.f
++ SRC/cunhr_col.f
++ SRC/claunhr_col_getrfnp.f
++ SRC/claunhr_col_getrfnp2.f

mod TESTING/LIN/cchkaa.f
++ TESTING/LIN/cchkunhr_col.f
++ TESTING/LIN/cerrorhr_col.f
++ TESTING/LIN/cunhr_col01.f

deleted:

-- SRC/corhr.f
-- SRC/claorhr.f
-- SRC/claorhr_getrfnp.f
-- SRC/claorhr_getrfnp.f

-- TESTING/LIN/cchkorhr.f
-- TESTING/LIN/cerrorhr.f
-- TESTING/LIN/corhr01.f
2019-11-18 13:29:43 -08:00
scr2016 5fbf49f7be COMPLEX*16 routines for Householder reconstruction:
SRC/zungtsqr.f
SRC/zunhr_col.f
SRC/zlaunhr_col_getrfnp.f
SRC/zlaunhr_col_getrfnp2.f

TESTING/LIN/zchkaa.f
TESTING/LIN/zchkunhr_col.f
TESTING/LIN/zerrorhr_col.f
TESTING/LIN/zunhr_col01.f
2019-11-18 00:05:07 -08:00
scr2016 3aae4ae901 New version of the Householder reconstruction routines design.
DOUBLE PRECISION and REAL:

new SRC/dorgtsqr.f
new SRC/dorhr_col.f
mod TESTING/LIN/dchkaa.f
new TESTING/LIN/dchkorhr_col.f
new TESTING/LIN/derrorhr_col.f
new TESTING/LIN/dorhr_col01.f

new SRC/sorgtsqr.f
new SRC/sorhr_col.f
mod TESTING/LIN/schkaa.f
new TESTING/LIN/schkorhr_col.f
new TESTING/LIN/serrorhr_col.f
new TESTING/LIN/sorhr_col01.f
2019-11-17 01:08:07 -08:00
Kyle Guinn dd2f632f2e Add PHONY targets 2019-07-27 23:07:37 -05:00
Kyle Guinn be23965929 Handle relative paths consistently
Place built libraries in $(TOPSRCDIR) and refer to their location by
using $(TOPSRCDIR).
2019-07-27 18:48:52 -05:00
Kyle Guinn 5344939497 Remove a non-portable makefile conditional
The $(strip) syntax is GNU Make specific, and what it's doing (adding
a "../../" prefix to LAPACKLIB but not VARLIB since that gets added
later) is not obvious.
2019-07-27 18:48:52 -05:00
Kyle Guinn 33258cb4b2 Switch to POSIX make variable names
Allows us to use the built-in suffix rules where appropriate.

  FORTRAN   -> FC            (POSIX)
  OPTS      -> FFLAGS        (POSIX)
  DRVOPTS   -> FFLAGS_DRV
  NOOPT     -> FFLAGS_NOOPT

  LOADER    -> FC            (use the compiler driver for linking)
  LOADOPTS  -> LDFLAGS       (POSIX)

  ARCH      -> AR            (POSIX)
  ARCHFLAGS -> ARFLAGS       (POSIX)
2019-07-27 18:48:52 -05:00
scr2016 e5dcd4a8a5 This commit provides both CODE and TESTING for COMPLEX Householder
reconstruction routines in SINGLE precision.
(i.e. for  COMPLEX FORTRAN floating point type).

modified:   SRC/CMakeLists.txt
modified:   SRC/Makefile
new file:   SRC/claorhr.f
new file:   SRC/claorhr_getrfnp.f
new file:   SRC/claorhr_getrfnp2.f
new file:   SRC/corhr.f
modified:   TESTING/LIN/CMakeLists.txt
modified:   TESTING/LIN/Makefile
modified:   TESTING/LIN/cchkaa.f
new file:   TESTING/LIN/cchkorhr.f
new file:   TESTING/LIN/cerrorhr.f
new file:   TESTING/LIN/corhr01.f
modified:   TESTING/ctest.in
2019-06-28 14:09:00 -07:00
scr2016 767df38f20 This commit provides both CODE and TESTING for COMPLEX Householder
reconstruction routines in DOUBLE PRECISION.
(i.e. for  COMPLEX*16 FORTRAN floating point type).

modified:   SRC/CMakeLists.txt
modified:   SRC/Makefile
new file:   SRC/zlaorhr.f
new file:   SRC/zlaorhr_getrfnp.f
new file:   SRC/zlaorhr_getrfnp2.f
new file:   SRC/zorhr.f
modified:   TESTING/LIN/CMakeLists.txt
modified:   TESTING/LIN/Makefile
modified:   TESTING/LIN/zchkaa.f
new file:   TESTING/LIN/zchkorhr.f
new file:   TESTING/LIN/zerrorhr.f
new file:   TESTING/LIN/zorhr01.f
modified:   TESTING/ztest.in
2019-06-26 18:08:00 -07:00
scr2016 fd6651b535 modified: SRC/CMakeLists.txt
modified:   SRC/Makefile
new file:   SRC/slaorhr.f
new file:   SRC/slaorhr_getrfnp.f
new file:   SRC/slaorhr_getrfnp2.f
new file:   SRC/sorhr.f
modified:   TESTING/LIN/CMakeLists.txt
modified:   TESTING/LIN/Makefile
modified:   TESTING/LIN/schkaa.f
new file:   TESTING/LIN/schkorhr.f
new file:   TESTING/LIN/serrorhr.f
new file:   TESTING/LIN/sorhr01.f
modified:   TESTING/stest.in

This commit provides both CODE and TESTING for Householder
reconstruction routines in single precision.
(i.e. for  REAL FORTRAN floating point type).
2019-06-25 20:46:43 -07:00
scr2016 4e98851419 modified: LIN/CMakeLists.txt
modified:   LIN/Makefile
	modified:   LIN/alahd.f
	modified:   LIN/dchkaa.f
	new file:   LIN/dchkorhr.f
	new file:   LIN/derrorhr.f
	new file:   LIN/dorhr01.f
	modified:   dtest.in

        This commit provides DOUBLE PRECISON testing code for Householder reconstruction
        routines in DOUBLE PRECISION that were commited in the previous commit.
        Now, both CODE and TESTING in DOUBLE for Householder reconstruction routines
        are commited.
2019-06-25 01:27:40 -07:00
Julie e85ec9634c getting testing for SY for Aasen in 2017-11-11 20:29:57 -08:00
julielangou 275c28dbca Merge branch 'master' into aasen-2stage 2017-11-11 18:14:06 -08:00
Julie ef3b282a25 adding double precision testing 2017-11-11 17:46:52 -08:00
iyamazaki 0c40422ee3 Testers for CSY two-stage Aasen's 2017-11-11 16:30:22 -05:00
iyamazaki fd8e3da169 add two-stage Aasen's testers into Makefile 2017-11-03 14:24:53 -04:00
Kyle Guinn 8fce0e24bd Simplify the clean targets
cleanobj:  Remove object files
cleanlib:  Remove libraries
cleanexe:  Remove test and example executables
cleantest: Remove test output and core dumps
clean:     All of the above
2017-02-06 01:07:10 -06:00
Kyle Guinn 9746cd7d82 Fix missing or unnecessary prerequisites 2017-02-05 02:54:37 -06:00
Kyle Guinn a203318e67 Add libraries as prerequisites
Use the automatic variable $^ to refer to all prerequisites when
linking or creating an archive.
2017-02-04 22:47:19 -06:00
Kyle Guinn d91ece25a2 Update comments 2017-02-04 21:38:42 -06:00
Kyle Guinn dcbc9e8f4d Fix Makefile/CMakeLists.txt differences
Consists of rearranging linebreaks, moving the following files to
conditionally-compiled sections, and adding the equivalent files for
USEXBLAS.

?errvx
?drvsy
?drvhe
?errsy
?errhe
?errpo
2017-01-20 01:13:30 -06:00
Kyle Guinn 30b0b7a5e8 Fix whitespace and flag ordering leftovers from merge 2017-01-19 23:25:35 -06:00
Julie 3f23bd5d53 merging: Various cleanups to makefiles #84
Contribution by @turboencabulator
Closing #84
2016-11-25 17:03:13 -08:00
Ichitaro Yamazaki a2710c2aeb add Aasen's for complex symmetric into Makefiles. 2016-11-21 14:16:05 -05:00
Julie ead2c73f1a Added (S,D,C,Z) (SY,HE) routines, drivers for new rook code
Close #82

Added routines for new factorization code for symmetric indefinite
( or Hermitian indefinite ) matrices with bounded Bunch-Kaufman
( rook ) pivoting algorithm.

New more efficient storage format for factors U ( or L ),
block-diagonal matrix D, and pivoting information stored in IPIV:

factor L is stored explicitly in lower triangle of A;
diagonal of D is stored on the diagonal of A;
subdiagonal elements of D are stored in array E;
IPIV format is the same as in *_ROOK routines, but differs
from SY Bunch-Kaufman routines (e.g. *SYTRF).
The factorization output of these new rook _RK routines is not
compatible
with the existing _ROOK routines and vice versa. This new factorization
format is designed in such a way, that there is a possibility in the
future
to write new Bunch-Kaufman routines that conform to this new
factorization format.
Then the future Bunch-Kaufman routines could share solver
*TRS_3,inversion *TRI_3
and condition estimator *CON_3.

To convert between the factorization formats in both ways the following
routines
are developed:

CONVERSION ROUTINES BETWEEN FACTORIZATION FORMATS

DOUBLE PRECISION (symmetric indefinite matrices):

new file:   SRC/dsyconvf.f
new file:   SRC/dsyconvf_rook.f
REAL (symmetric indefinite matrices):

new file:   SRC/csyconvf.f
new file:   SRC/csyconvf_rook.f
COMPLEX*16 (symmetric indefinite and Hermitian indefinite matrices):

new file:   SRC/zsyconvf.f
new file:   SRC/zsyconvf_rook.f
COMPLEX (symmetric indefinite and Hermitian indefinite matrices):

new file:   SRC/ssyconvf.f
new file:   SRC/ssyconvf_rook.f
*SYCONVF routine converts between old Bunch-Kaufman storage format (
denote (L1,D1,IPIV1) )
that is used by *SYTRF and new rook storage format ( denote (L2,D2,
IPIV2))
that is used by *SYTRF_RK

*SYCONVF_ROOK routine between old rook storage format ( denote
(L1,D1,IPIV2) )
that is used by *SYTRF_ROOK and new rook storage format ( denote
(L2,D2, IPIV2))
that is used by *SYTRF_RK

ROUTINES AND DRIVERS

DOUBLE PRECISION (symmetric indefinite matrices):

new file:   SRC/dsytf2_rk.f BLAS2 unblocked factorization
new file:   SRC/dlasyf_rk.f BLAS3 auxiliary blocked partial
factorization
new file:   SRC/dsytrf_rk.f BLAS3 blocked factorization
new file:   SRC/dsytrs_3.f BLAS3 solver
new file:   SRC/dsycon_3.f BLAS3 condition number estimator
new file:   SRC/dsytri_3.f BLAS3 inversion, sets the size of work array
and calls *sytri_3x
new file:   SRC/dsytri_3x.f BLAS3 auxiliary inversion, actually
computes blocked inversion
new file:   SRC/dsysv_rk.f BLAS3 solver driver
REAL (symmetric indefinite matrices):

new file:   SRC/ssytf2_rk.f BLAS2 unblocked factorization
new file:   SRC/slasyf_rk.f BLAS3 auxiliary blocked partial
factorization
new file:   SRC/ssytrf_rk.f BLAS3 blocked factorization
new file:   SRC/ssytrs_3.f BLAS3 solver
new file:   SRC/ssycon_3.f BLAS3 condition number estimator
new file:   SRC/ssytri_3.f BLAS3 inversion, sets the size of work array
and calls *sytri_3x
new file:   SRC/ssytri_3x.f BLAS3 auxiliary inversion, actually
computes blocked inversion
new file:   SRC/ssysv_rk.f BLAS3 solver driver
COMPLEX*16 (symmetric indefinite matrices):

new file:   SRC/zsytf2_rk.f BLAS2 unblocked factorization
new file:   SRC/zlasyf_rk.f BLAS3 auxiliary blocked partial
factorization
new file:   SRC/zsytrf_rk.f BLAS3 blocked factorization
new file:   SRC/zsytrs_3.f BLAS3 solver
new file:   SRC/zsycon_3.f BLAS3 condition number estimator
new file:   SRC/zsytri_3.f BLAS3 inversion, sets the size of work array
and calls *sytri_3x
new file:   SRC/zsytri_3x.f BLAS3 auxiliary inversion, actually
computes blocked inversion
new file:   SRC/zsysv_rk.f BLAS3 solver driver
COMPLEX*16 (Hermitian indefinite matrices):

new file:   SRC/zhetf2_rk.f BLAS2 unblocked factorization
new file:   SRC/zlahef_rk.f BLAS3 auxiliary blocked partial
factorization
new file:   SRC/zhetrf_rk.f BLAS3 blocked factorization
new file:   SRC/zhetrs_3.f BLAS3 solver
new file:   SRC/zhecon_3.f BLAS3 condition number estimator
new file:   SRC/zhetri_3.f BLAS3 inversion, sets the size of work array
and calls *sytri_3x
new file:   SRC/zhetri_3x.f BLAS3 auxiliary inversion, actually
computes blocked inversion
new file:   SRC/zhesv_rk.f BLAS3 solver driver
COMPLEX (symmetric indefinite matrices):

new file:   SRC/csytf2_rk.f BLAS2 unblocked factorization
new file:   SRC/clasyf_rk.f BLAS3 auxiliary blocked partial
factorization
new file:   SRC/csytrf_rk.f BLAS3 blocked factorization
new file:   SRC/csytrs_3.f BLAS3 solver
new file:   SRC/csycon_3.f BLAS3 condition number estimator
new file:   SRC/csytri_3.f BLAS3 inversion, sets the size of work array
and calls *sytri_3x
new file:   SRC/csytri_3x.f BLAS3 auxiliary inversion, actually
computes blocked inversion
new file:   SRC/csysv_rk.f BLAS3 solver driver
COMPLEX (Hermitian indefinite matrices):

new file:   SRC/chetf2_rk.f BLAS2 unblocked factorization
new file:   SRC/clahef_rk.f BLAS3 auxiliary blocked partial
factorization
new file:   SRC/chetrf_rk.f BLAS3 blocked factorization
new file:   SRC/chetrs_3.f BLAS3 solver
new file:   SRC/checon_3.f BLAS3 condition number estimator
new file:   SRC/chetri_3.f BLAS3 inversion, sets the size of work array
and calls *sytri_3x
new file:   SRC/chetri_3x.f BLAS3 auxiliary inversion, actually
computes blocked inversion
new file:   SRC/chesv_rk.f BLAS3 solver driver
MISC

modified:   SRC/CMakeLists.txt
modified:   SRC/Makefile
TEST CODE

modified:   TESTING/LIN/CMakeLists.txt
modified:   TESTING/LIN/Makefile

modified:   TESTING/LIN/aladhd.f
modified:   TESTING/LIN/alaerh.f
modified:   TESTING/LIN/alahd.f
DOUBLE PRECISION (symmetric indefinite matrices):

modified:   TESTING/LIN/dchkaa.f
modified:   TESTING/LIN/derrsy.f
modified:   TESTING/LIN/derrsyx.f
modified:   TESTING/LIN/derrvx.f
modified:   TESTING/LIN/derrvxx.f

modified:   TESTING/dtest.in

new file:   TESTING/LIN/dchksy_rk.f
new file:   TESTING/LIN/ddrvsy_rk.f
new file:   TESTING/LIN/dsyt01_3.f
REAL (symmetric indefinite matrices):

modified:   TESTING/LIN/schkaa.f
modified:   TESTING/LIN/serrsy.f
modified:   TESTING/LIN/serrsyx.f
modified:   TESTING/LIN/serrvx.f
modified:   TESTING/LIN/serrvxx.f

modified:   TESTING/stest.in

new file:   TESTING/LIN/schksy_rk.f
new file:   TESTING/LIN/sdrvsy_rk.f
new file:   TESTING/LIN/ssyt01_3.f
COMPLEX*16 (symmetric indefinite and Hermitian indefinite matrices):

modified:   TESTING/LIN/zchkaa.f
modified:   TESTING/LIN/zerrsy.f
modified:   TESTING/LIN/zerrsyx.f
modified:   TESTING/LIN/zerrhe.f
modified:   TESTING/LIN/zerrhex.f
modified:   TESTING/LIN/zerrvx.f
modified:   TESTING/LIN/zerrvxx.f

modified:   TESTING/ztest.in

new file:   TESTING/LIN/zchksy_rk.f
new file:   TESTING/LIN/zdrvsy_rk.f
new file:   TESTING/LIN/zsyt01_3.f
new file:   TESTING/LIN/zchkhe_rk.f
new file:   TESTING/LIN/zdrvhe_rk.f
new file:   TESTING/LIN/zhet01_3.f
COMPLEX (symmetric indefinite and Hermitian indefinite matrices):

modified:   TESTING/LIN/cchkaa.f
modified:   TESTING/LIN/cerrsy.f
modified:   TESTING/LIN/cerrsyx.f
modified:   TESTING/LIN/cerrhe.f
modified:   TESTING/LIN/cerrhex.f
modified:   TESTING/LIN/cerrvx.f
modified:   TESTING/LIN/cerrvxx.f

modified:   TESTING/ctest.in

new file:   TESTING/LIN/cchksy_rk.f
new file:   TESTING/LIN/cdrvsy_rk.f
new file:   TESTING/LIN/csyt01_3.f
new file:   TESTING/LIN/cchkhe_rk.f
new file:   TESTING/LIN/cdrvhe_rk.f
new file:   TESTING/LIN/chet01_3.f
2016-11-15 20:39:35 -08:00
Julie 5bb749aeff Changing Assen routines suffix from _Aassen to _aa 2016-11-10 23:17:11 -06:00
Julie 511b9d0dbf merging with latest version
Contribution was based on 3.6.x version
2016-10-23 16:42:56 -07:00
Syd Hashemi a6afc403fa Tall skinny and short wide routines 2016-10-19 09:52:19 -07:00
Julie a50de3c8cc Adding Assen for SV, TRF, SV from @iyamazak@icl.utk.edu
Contribution by Ichitaro Yamazaki, University of Tennessee

Note: need to add corresponding LAPACKE routines
2016-10-09 10:07:56 -07:00
Hans Johnson 9c7f84bd60 STYLE: Remove trailing whitespace in MISC files
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-07-09 11:19:33 -05:00
julie 21c91533ff Committing Sébastien Villemot patches (5) sent on Jan 6th 2016 to LAPACK Mailing list
From Sébastien Villemot:
I attach to this message 5 patches that are currently applied to the
Debian package for LAPACK, and that I think could be usefully merged in
the LAPACK SVN tree.

The patches include fixes for old outstanding bugs in the CBLAS test
programs, fixes for the build system, and fixes for various typos.

Each patch file contains a more detailed description of its purpose.
2016-01-08 03:07:42 +00:00
philippe.theveny e12970ddbe Remove deprecated xGEQPF from the test suite.
WARNING: xGEQPF is still used in xGGSVP routines.
2015-08-06 20:57:14 +00:00
philippe.theveny f6dc581dc6 Remove all but one deprecated routines from the test suite.
NOTE: The tests are renumbered in xDRVLS and xCHKTZ.
TODO: remove deprecated xGEQPF, when it is replaced by xGEQP3 in xGGSVP.
2015-08-06 17:56:35 +00:00
igor175 72ee3708a3 LAPACK bug fix for XBLAS: bug revealed in testing of linear equation routines, when XBLAS is linked 2013-11-18 23:51:04 +00:00
igor175 ca8c0412b0 Added LAPACK tests for 'rook' routines and drivers to LIN/Makefile LIN/CMakeLists.txt 2013-07-09 04:45:46 +00:00
julie fea16a1196 Undoing unvoluntary change commited in 1237 2012-04-02 21:58:34 +00:00
julie 2df2e59305 2012-04-02 21:44:14 +00:00
julie 972d055ebd Fix Makefile in LIN 2012-01-26 19:59:40 +00:00
james eb4f5ca43b Fixed QRT routine testing 2012-01-18 22:38:18 +00:00
igor175 4b1ceab1d7 added a test for double precision complex SV driver for symmetric indefinite matrices with rook pivoting 2012-01-12 07:14:31 +00:00