Commit Graph
19 Commits
Author SHA1 Message Date
Julie e18d437924 Making LAPACK's code eternal... no more version and date in source files.
GitHub is now enabling us to track accurately version and date.
No need for this anymore.
2021-03-25 10:16:58 -07: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 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
Julie d97a30482e Updating Version number on files for 3.8.0 2017-11-12 20:15:12 -08:00
Nick Papior 5afcdaf000 Reinserted frecursive due to prior bug-reports.
See 3a87b2df45 for details.

Signed-off-by: Nick Papior <nickpapior@gmail.com>
2017-10-12 20:38:59 +02:00
Nick Papior 7b651690c7 Added ilaenv2stage -> circumvents requirement of recursive compilation
Added ilaenv2stage.f to enable the extraction of 2stage machine dependent
variables from the 2stage solver without having to rely on compiling the
entire library with the recursive flag.

Secondly, all calls to ILAENV( 17 <= 21, ...) have been fixed to
use the corresponding ILAENV2STAGE routine by translating ISPEC by -16
I.e.

  ILAENV( 17, ...) == ILAENV2STAGE( 1, ...)

Also fixed the documentation of ilaenv.f to specify the cases of ISPEC > 16.

Signed-off-by: Nick Papior <nickpapior@gmail.com>
2017-07-20 13:26:56 +02:00
Kyle Guinn 60a5d3c6dd Fix formatting differences and omissions in make.inc.*
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.
2017-01-25 02:22:29 -06: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 50d40d7852 Updating version number 2015-11-15 20:33:40 +00:00
julie 77a356fe35 Propagate comment added in rev 1568 to make.inc with gfortran compiler 2015-08-26 01:43:34 +00:00
julie cd88b0b21d Update make.inc's following the integration of CBLAS 2014-08-23 01:31:15 +00:00
julie 16a3151347 Update version and date on make.inc templates 2013-11-17 01:17:17 +00:00
julie ddd12e2c0e Update release number and date 2013-11-17 00:25:52 +00:00
langou 3a87b2df45 FIX BUG 112.
(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
2013-10-04 19:55:20 +00:00
julie f0b200da5b Update version number 2012-04-13 18:22:32 +00:00
julie 7c9b02423f Add an option LAPACKE_WITH_TMG that will generate the LAPACKE with the TMG routines needed in plasma (by default regular LAPACKE with only LAPACK routines 2012-01-12 01:46:17 +00:00
julie 82da7c3203 Add name of LAPACKE library in make.inc 2011-12-20 02:14:29 +00:00
julie 3542df4eea Integrate LAPACKE into LAPACK make and CMAKE build system.
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-12-03 05:37:44 +00:00
julie ba4f3e59e4 Various change: add target to generate doc (man and html) and cleanup make.inc's 2011-11-11 21:08:04 +00:00