aboutsummaryrefslogtreecommitdiff
path: root/make.inc.example
AgeCommit message (Collapse)Author
2016-12-23Updating version on Version filesJulie
2016-09-15Fix #35 reported by @brandimarteJulie
2016-07-09STYLE: Remove trailing whitespace in MISC 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
2015-11-15Updating version numberjulie
2015-08-11adding a comment in make.inc.example saying the following:langou
# # Note: During a regular execution, LAPACK might create NaN and Inf # and handle these quantities appropriately. As a consequence, one # should not compile LAPACK with flags such as -ffpe-trap=overflow. # Julien.
2015-08-06Move all but one deprecated routines to a new separate directory.philippe.theveny
They are compiled and included in the liblapack.a archive when the MAKEDEPRECATED option in the make.inc file is set. TODO: Add the corresponding behavior to the cmake files. NOTE: The xGEQPF routines are deprecated but still used by some non-deprecated routines. They have not been moved to the DEPRECATED directory.
2014-08-23Update make.inc's following the integration of CBLASjulie
2013-11-17Update release number and datejulie
2013-10-04FIX BUG 112.langou
(Bug reported on Aug 18 2013 by Daniel Strobusch on LAPACK mailing list) (Bug fixed by Rodney on Aug 19 2013) This is a problem with gfortran. One need to force gfortran to allocate all local arrays on the stack. One way to do this is to have the option -frecursive
2012-04-13Update version numberjulie
2011-12-20Add name of LAPACKE library in make.incjulie
2011-12-03Integrate LAPACKE into LAPACK make and CMAKE build system.julie
First commit, works on my mac! Need to see how to adapt to intel compilers and of course Windows. LAPACKE is not built by default. Is that OK? User need to type 'make lapackelib' to generate the lib I add a couple of examples taken from MKL LAPACKE 'make lapacke_example'
2011-11-11Various change: add target to generate doc (man and html) and cleanup make.inc'sjulie
2011-04-18Update ilaver and make.inc to 3.3.1julie
2010-11-08Start getting ready for the releasejulie
2010-07-02Time has come to have the fortran90 slamch and dlamch in the lapack package.julie
Jason (Riedy) wrote our ( ... his? :) ) ideas about it three years ago: http://www.netlib.org/lapack-dev/lapack-coding/program-style.html#id2537289 Piotr (Luszczek) has written two subroutines, tested them on few platforms, collected the result on his webpage, and sent emails to the lapackers a few times. See: http://www.cs.utk.edu/~luszczek/lapack/lamch.html Theses slamch.f and dlamch.f subroutines were taken from PLASMA-2.1.0. Change to the LAPACK library: * move the current LAPACK subroutine slamch.f (resp dlamch.f) as slamchf77.f (resp. dlamchf77.f), * take the new slamch.f subroutines (resp. dlamch.f), remove the PLASMA header, have a LAPACK header, and insert the new routines in the library. Minor: * I would leave these routines compiled with the NOOPT flag. Problem: * CLAPACK: no idea how CLAPACK's going to handle this. CLAPACK can rely on IEEE arithmetic, can relay on float.h, or can rely on the previous xlamch.f
2010-06-23Update date and version for 3.2.2 releasejulie
2009-04-16Big commit before 3.2.1 release.julie
Those are just cosmetic changes to update version number and various other minor change.
2008-12-16(no commit message)julie
2008-10-28Move LAPACK trunk into position.jason