summaryrefslogtreecommitdiff
path: root/LAPACKE
AgeCommit message (Collapse)AuthorFilesLines
2015-11-13Adding *gesvj and *gejsv to LAPACKEjulie11-2/+1198
2015-11-11 Rook with 2 o , not 3...julie1-1/+1
2015-11-11Adding xlapmt to LAPACKE ( continue ) .. forgot to save the include filejulie1-0/+39
2015-11-11Adding xlapmt to LAPACKEjulie10-0/+544
2015-11-11Fix cast for lwork in complex [cz]uncsd2by1 routinesjulie2-2/+2
2015-11-04Fix some typos..julie4-13/+13
2015-10-29minor: (1) eliminate trailing spaces in comments and (2) comment indicatorslangou4-24/+24
along the left margin of the commented fragment, in order to show explicitly that the fragment is a comment rather than a code between two comments. Thanks Dmitry.
2015-10-28Remove NaN check from LAPACKE_?laswp and add a comment on why the NaN check ↵langou4-0/+36
is removed. This might not be the best fix but this will do for now. Current behavior: LAPACKE_?laswp does not check for NaNs. See: http://icl.cs.utk.edu/lapack-forum/viewtopic.php?t=4827 for more information. Thanks to Dmitry Baksheev from Intel.
2015-10-22Fix bug 137 and 138 submitted by Dan Kortschak julie8-16/+16
Applied patch submitted by Dan Kortschak
2015-10-06Quick and dirty bug fix.langou4-4/+4
Bug report and bug fix from Dan Kortschak. See: http://icl.cs.utk.edu/lapack-forum/viewtopic.php?t=4810 https://github.com/xianyi/OpenBLAS/issues/642 This is a quick bug fix, this only checks the triangular part of the trapezoid, the rectangular part is not checked. Another commit should follow up soon.
2015-10-05Adding [un/or]csd2by1 routines to LAPACKEjulie11-0/+1321
2015-10-05Adding xlascl to LAPACKEjulie11-0/+781
2015-09-25Adding xsytrf_rook, xsytrs_rook, xhetrf_rook and xhetrs_rook to LAPACKEjulie27-21/+2134
2015-09-16Handle Deprecated routines in LAPACKE Makefilejulie1-26/+31
2015-09-15Issues and fixes submitted by Christoph Conrads on Sept 14th by emailjulie2-27/+37
(1st commit) -> File modified: DOCS/Doxyfile -- - Doxygen documentation The Doxygen "project version" is still 3.4.2. The attached patch bumps this to 3.6.0. -> let's be ready! - Doxygen documentation The Doxygen configuration file uses multiple obsolete tags and warnings are shown right after starting Doxygen. The warnings are easy to see if you set "QUIET = YES" in DOCS/Doxyfile. -> set "QUIET = YES" -> File modified: SRC/*larfgp.f It says "non-negatibe" in the documentation of xLARFGP. -> Fixed typo -> File modified: SRC/*orcsd2by1.f SRC/*uncsd2by1.f The parameter M in the xORCSD2BY1 is not the number of columns of X and there is no X12 (parameter P). -> Fixed -> File modified: LAPACKE/src/CMakeLists.txt The C interfaces for the deprecated GSVD routines are still built with cmake -DBUILD_DEPRECATED=OFF. This causes a linker error with cmake -DBUILD_TESTING=ON as soon as the Fortran functions are not found in liblapack.so. -> Add a if(BUILD_DEPRECATED) -> File modified: trunk/LAPACKE/include/lapacke.h The C declaration (lapacke.h:11840-11843) for xGGSVD3 is in a block of #defines for LAPACK 3.2.X (see lapacke.h:12089,12122). -> moved them down
2015-09-10Bug Fix for bug0135julie10-20/+20
Bug reported by kortschak on Sep 10th Link: http://icl.cs.utk.edu/lapack-forum/viewtopic.php?f=13&t=4793 Fix typo substituting O with 0
2015-09-03Fixing bug 133julie4-4/+12
Bug reported by the GONUM team member: btracey on LAPACK forum Link: http://icl.cs.utk.edu/lapack-forum/viewtopic.php?f=13&t=4771 Description: the number of columns of A depends on the Side, so the test should compare against m or n. Fix by Julie.
2015-08-26Correcting Bug 129julie5-46/+13
See http://icl.cs.utk.edu/lapack-forum/viewtopic.php?f=13&t=4747 Modify LAPACK_?syconv interface - Work is used to return values (1) Remove the local work variable and its allocation and deallocation (2) Add work in LAPACK_?syconv interface (3) Update lapacke.h
2015-08-26correcting bug 128langou4-13/+33
See: http://icl.cs.utk.edu/lapack-forum/viewtopic.php?t=4746 When LAPACK_NAN_CHECK is enabled, in input of xLASET, we now allow if the matrix A contains NaN. Since the goal of xLASET is to set values in A, we consider it OK if A contains NaN in input. In other words, the rationale is that we do not consider A has an input/output. We consider A as an output only. Note: We allow neither alpha nor beta to be a NaN. (So we do check for NaN in alpha and in beta and return error if NaN.) So this commit (1) removes the NaN check on matrix A in LAPACKE wrappers: lapacke_?laset.c (2) declares that A is OUTPUT in LAPACK subroutines: ?laset.f (3) adds a thanks to Victor Kostin from Intel
2015-08-17Added LAPACKE wrappers for GSVD (complements r1572).philippe.theveny19-31/+2567
2015-05-06Applying patch provided by Julien Schueller (Phimeca) on March 20th 2015 via ↵julie13-20/+7
Lapack mailing list to fix some warnings
2015-05-06Propagate fix to bug111 to lapacke - minimum work space - Issue reported by ↵julie2-4/+4
Andrew James on LAPACK mailing list on April 30th 2015
2015-02-24Add xGGHD3: blocked Hessenberg reduction, code from Daniel Kressner.philippe.theveny27-6/+3453
Add xGGES3 and xGGEV3: computation of the Schur form, the Schur vectors, and the generalized eigenvalues using the blocked Hessenberg reduction.
2014-10-08Fixing folder uppercase / lower case issue - Thank you Donjulie2258-0/+221568