Import LAPACK: INSTALL directory

This commit is contained in:
Martin Köhler 2016-10-26 15:04:39 +02:00
parent 1357b8d93b
commit 4c29d20108
3 changed files with 7 additions and 7 deletions

View File

@ -1,7 +1,7 @@
include ../make.inc
.SUFFIXES : .o .f
all: slamch.o dlamch.o testlsame testslamch testdlamch testsecond testdsecnd testieee testversion
all: testlsame testslamch testdlamch testsecond testdsecnd testieee testversion
testlsame: lsame.o lsametst.o
$(LOADER) $(LOADOPTS) -o testlsame lsame.o lsametst.o

View File

@ -41,7 +41,7 @@
*> \author Univ. of Colorado Denver
*> \author NAG Ltd.
*
*> \date November 2015
*> \date June 2016
*
*> \ingroup auxOTHERauxiliary
*
@ -51,7 +51,7 @@
* -- LAPACK computational routine (version 3.6.0) --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
* November 2015
* June 2016
*
* =====================================================================
*
@ -59,7 +59,7 @@
* =====================================================================
VERS_MAJOR = 3
VERS_MINOR = 6
VERS_PATCH = 0
VERS_PATCH = 1
* =====================================================================
*
RETURN

View File

@ -1,7 +1,7 @@
####################################################################
# LAPACK make include file. #
# LAPACK, Version 3.6.0 #
# November 2015 #
# June 2016 #
####################################################################
#
SHELL = /bin/sh
@ -13,9 +13,9 @@ SHELL = /bin/sh
# and desired load options for your machine.
#
FORTRAN = ifort
OPTS = -O3
OPTS = -O3 -fp-model strict
DRVOPTS = $(OPTS)
NOOPT = -O3 -fltconsistency -fp_port
NOOPT = -O0 -fp-model strict
LOADER = ifort
LOADOPTS =
#