Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-03-30 | Line endings changed from win style to lnx style | Kirana Bergstrom | 2 | -4472/+4472 | |
2017-03-29 | Changed indendation for correct alignment | Kirana Bergstrom | 2 | -16/+16 | |
2017-03-28 | took out extra spaces, added workspace calculation condition | Kirana Bergstrom | 2 | -3/+3 | |
2017-03-28 | took out extra spaces | kirana.bergstrom | 1 | -1/+1 | |
2017-03-27 | Merge pull request #136 from echeresh/370_fix | langou | 8 | -220/+391 | |
A number of fixes for routines and testing sources integrated in LAPACK 3.7.0 | |||||
2017-03-24 | Fix *2st_kernels.f: unify doc comments | eugene.chereshnev | 4 | -112/+283 | |
2017-03-24 | Fix *lasyf_aa.f: replace N -> M in comments | eugene.chereshnev | 4 | -108/+108 | |
2017-03-23 | Merge branch 'master' of https://github.com/Reference-LAPACK/lapack | Julien Langou | 58 | -271/+284 | |
2017-03-23 | This is related to #135 | Julien Langou | 2 | -4/+4 | |
Since the order of multiplication in Fortran is left to right, the expression MAXITR*N*N*UNFL first computes MAXITR*N*N as an INTEGER. This causes INTEGER overflow for N>=18919. To avoid the problem, rewrite as: MAXITR*(N*(N*UNFL)) | |||||
2017-03-23 | Fix #135 | Julien Langou | 2 | -12/+45 | |
Thanks Cezary Dendek! | |||||
2017-03-17 | Replace **C -> **H in complex routines | eugene.chereshnev | 6 | -25/+25 | |
2017-03-17 | *gemlqt.f, *tpmlqt.f: replace **C -> **H, T is MB-by-K, fix names | eugene.chereshnev | 6 | -37/+37 | |
2017-03-17 | *geqrt.f: T is NB-by-K | eugene.chereshnev | 4 | -4/+4 | |
2017-03-17 | *gelqt.f: replace NB -> MB | eugene.chereshnev | 4 | -20/+20 | |
2017-03-17 | *trs_aa.f: a is input only parameter | eugene.chereshnev | 6 | -6/+6 | |
2017-03-17 | *tplqt.f, *tplqt2.f: incorrect dimensions | eugene.chereshnev | 8 | -52/+52 | |
2017-03-17 | *gemlqt.f: incorrect dimension of V | eugene.chereshnev | 4 | -16/+16 | |
2017-03-17 | *gelqt.f, *gelqt3.f: reflectors are stored in rows | eugene.chereshnev | 8 | -16/+16 | |
2017-03-17 | *gemlqt.f, *lamswlq.f, *lamtsqr.f: fix mistakes in comments | eugene.chereshnev | 16 | -39/+47 | |
2017-03-06 | Fix documentation for ?LASWP routine | eugene.chereshnev | 4 | -16/+24 | |
2017-03-03 | Merge pull request #132 from turboencabulator/cleanup | langou | 3 | -43/+40 | |
Update makefile prerequisites | |||||
2017-02-22 | Fix missing comma on continued line | Martin Kroeker | 3 | -3/+3 | |
EXTERNAL declaration of subroutines missed a comma before the continuation line, causing a strange run-together name to appear in the object when compiled with ifort. | |||||
2017-02-22 | Fix missing comma on continued line | Martin Kroeker | 1 | -1/+1 | |
EXTERNAL declaration of subroutines missed a comma before the continuation line, causing a strange run-together name to appear in the object when compiled with ifort. | |||||
2017-02-22 | Fix missing comma on continued line | Martin Kroeker | 1 | -1/+1 | |
EXTERNAL declaration of subroutines missed a comma before the continuation line, causing a strange run-together name to appear in the object when compiled with ifort. | |||||
2017-02-21 | [coverage] Added CMake rules for code coverage | Guillaume Jacquenot | 1 | -0/+5 | |
2017-02-16 | Fix #124 | Julien Langou | 1 | -1/+1 | |
2017-02-06 | Simplify the clean targets | Kyle Guinn | 2 | -6/+10 | |
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-04 | Remove VARIANTSDIR so we don't have to use mkdir | Kyle Guinn | 2 | -29/+26 | |
Make the target an actual filename to avoid rebuilding the variant libraries. | |||||
2017-02-04 | Add libraries as prerequisites | Kyle Guinn | 2 | -15/+11 | |
Use the automatic variable $^ to refer to all prerequisites when linking or creating an archive. | |||||
2017-02-03 | Strip out comments that don't apply | Kyle Guinn | 2 | -25/+6 | |
2017-02-03 | Use the BUILD_* option variables for BLAS and CBLAS | Kyle Guinn | 1 | -10/+0 | |
Removes duplication and allows error checking to be done in one spot. Moved most of the status printouts to where the options are defined. | |||||
2017-02-03 | Use appending to create lists of source files | Kyle Guinn | 1 | -9/+9 | |
Allows any combination of types/precisions to be built at once. Name the lists "SOURCES" instead of "ALLOBJ" since they contain lists of source files, not object files. Fix problems in BLAS: Was missing the ${CBLAS3} file set when building with BLAS_COMPLEX. Was adding ${BLASLIB} as if it were a source file. | |||||
2017-02-02 | Fix overlinking/underlinking LAPACK dependencies | Kyle Guinn | 1 | -2/+2 | |
2017-02-01 | Allow building LAPACKE with XBLAS and TMGLIB simultaneously | Kyle Guinn | 1 | -9/+14 | |
Order the libraries the same as the Makefiles are ordering them: tmglib, lapack, xblas, blas. Fix combinations of USE_XBLAS with BUILD_SINGLE, etc. so that it only builds the LAPACK extended functions of the desired type and precision. Remove "OBJ" from variable names that are not lists of objects. | |||||
2017-01-22 | Fix Doxygen warnings | Kyle Guinn | 41 | -43/+47 | |
2017-01-22 | Remove duplicate ilaver.f | Kyle Guinn | 1 | -72/+0 | |
All the build scripts use the one in the INSTALL directory. | |||||
2017-01-21 | Merge pull request #112 from turboencabulator/cleanup | langou | 2 | -21/+22 | |
Makefile cleanup | |||||
2017-01-21 | Use ${DSLASRC} and ${ZCLASRC} when building single-precision | Kyle Guinn | 1 | -15/+16 | |
2017-01-21 | Add a missing file | Kyle Guinn | 1 | -1/+2 | |
2017-01-21 | Remove duplicate line | Kyle Guinn | 1 | -1/+0 | |
2017-01-19 | Fix whitespace and flag ordering leftovers from merge | Kyle Guinn | 1 | -4/+4 | |
2016-12-29 | Fix issue #105 | Julien Langou | 2 | -2/+0 | |
2016-12-29 | Fix various typos. | Sébastien Villemot | 36 | -37/+37 | |
2016-12-23 | Updating version number on source file modified since 3.6.1 | Julie | 1962 | -5081/+5081 | |
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-12-23 | Updating version on Version files | Julie | 1 | -4/+4 | |
2016-12-22 | somewhat better description of the minimal workspace needed for a workspace ↵ | Julien Langou | 2 | -6/+6 | |
query | |||||
2016-12-22 | Follow up with ad5bc21cb50535d66d628a309d60128db96c8851 | Julien Langou | 2 | -3748/+4472 | |
Contribution from Zlatko Drmac 1) LWORK query added; 2) few modifications in pure one sided Jacobi (XGESVJ) to remove possible error in the really extreme cases (sigma_max close to overflow and sigma_min close to underflow) - note that XGESVJ is deigned to compute the singular values in the full range; I used it (double complex) to compute SVD of certain factored Hankel matrices with the condition number 1.0e616; 3) in the preconditioned Jacobi SVD (XGEJSV), the code I sent before to Julie had one experimental modification that I had forgotten to remove before sending - now this is done (the idea was to extend the computational range, but that brings to much too risky dependence on how other lapack routines behave under those extreme conditions). | |||||
2016-12-19 | contribution from Zlatko Drmac | Julien Langou | 6 | -370/+415 | |
Note: I still need to work on merging [C/Z]GEJSV, but there is much more work on these two files. We will see when this can be done. | |||||
2016-12-19 | ( oops, forgot to commit ztrevc3.f in previous commit. ) | Julien Langou | 1 | -0/+1 | |
( related to commit: 58e4d0ec7e992c763a60813352407e8103cd3386 ) | |||||
2016-12-19 | Merge branch 'master' of https://github.com/Reference-LAPACK/lapack | Julien Langou | 1 | -1/+1 | |