summaryrefslogtreecommitdiff
path: root/make.inc.example
AgeCommit message (Collapse)AuthorFilesLines
2017-06-10Preparing for 3.7.1 releaseJulie1-2/+2
Update version number from discussion with Vendors, they still would like to have the version number inside the source file.
2017-01-25Fix formatting differences and omissions in make.inc.*Kyle Guinn1-52/+56
Adds LAPACKE_WITH_TMG to make.inc.example, adds BUILD_DEPRECATED to everything in the INSTALL dir. Sort the variables by programs and their flags, then build options, then library names.
2016-12-23Updating version on Version filesJulie1-2/+2
2016-09-15Fix #35 reported by @brandimarteJulie1-1/+1
2016-07-09STYLE: Remove trailing whitespace in MISC filesHans Johnson1-5/+5
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-2/+2
2015-11-15Updating version numberjulie1-1/+1
2015-08-11adding a comment in make.inc.example saying the following:langou1-0/+4
# # 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.theveny1-0/+5
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 CBLASjulie1-3/+4
2013-11-17Update release number and datejulie1-2/+2
2013-10-04FIX BUG 112.langou1-2/+2
(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 numberjulie1-1/+1
2011-12-20Add name of LAPACKE library in make.incjulie1-0/+1
2011-12-03Integrate LAPACKE into LAPACK make and CMAKE build system.julie1-0/+12
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'sjulie1-30/+18
2011-04-18Update ilaver and make.inc to 3.3.1julie1-2/+2
2010-11-08Start getting ready for the releasejulie1-2/+2
2010-07-02Time has come to have the fortran90 slamch and dlamch in the lapack package.julie1-1/+1
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 releasejulie1-2/+2
2009-04-16Big commit before 3.2.1 release.julie1-2/+2
Those are just cosmetic changes to update version number and various other minor change.
2008-12-16(no commit message)julie1-29/+29
2008-10-28Move LAPACK trunk into position.jason1-0/+70