Import LAPACK: INSTALL directory
This commit is contained in:
parent
1357b8d93b
commit
4c29d20108
|
@ -1,7 +1,7 @@
|
||||||
include ../make.inc
|
include ../make.inc
|
||||||
|
|
||||||
.SUFFIXES : .o .f
|
.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
|
testlsame: lsame.o lsametst.o
|
||||||
$(LOADER) $(LOADOPTS) -o testlsame lsame.o lsametst.o
|
$(LOADER) $(LOADOPTS) -o testlsame lsame.o lsametst.o
|
||||||
|
|
|
@ -41,7 +41,7 @@
|
||||||
*> \author Univ. of Colorado Denver
|
*> \author Univ. of Colorado Denver
|
||||||
*> \author NAG Ltd.
|
*> \author NAG Ltd.
|
||||||
*
|
*
|
||||||
*> \date November 2015
|
*> \date June 2016
|
||||||
*
|
*
|
||||||
*> \ingroup auxOTHERauxiliary
|
*> \ingroup auxOTHERauxiliary
|
||||||
*
|
*
|
||||||
|
@ -51,7 +51,7 @@
|
||||||
* -- LAPACK computational routine (version 3.6.0) --
|
* -- LAPACK computational routine (version 3.6.0) --
|
||||||
* -- LAPACK is a software package provided by Univ. of Tennessee, --
|
* -- LAPACK is a software package provided by Univ. of Tennessee, --
|
||||||
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
|
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
|
||||||
* November 2015
|
* June 2016
|
||||||
*
|
*
|
||||||
* =====================================================================
|
* =====================================================================
|
||||||
*
|
*
|
||||||
|
@ -59,7 +59,7 @@
|
||||||
* =====================================================================
|
* =====================================================================
|
||||||
VERS_MAJOR = 3
|
VERS_MAJOR = 3
|
||||||
VERS_MINOR = 6
|
VERS_MINOR = 6
|
||||||
VERS_PATCH = 0
|
VERS_PATCH = 1
|
||||||
* =====================================================================
|
* =====================================================================
|
||||||
*
|
*
|
||||||
RETURN
|
RETURN
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
####################################################################
|
####################################################################
|
||||||
# LAPACK make include file. #
|
# LAPACK make include file. #
|
||||||
# LAPACK, Version 3.6.0 #
|
# LAPACK, Version 3.6.0 #
|
||||||
# November 2015 #
|
# June 2016 #
|
||||||
####################################################################
|
####################################################################
|
||||||
#
|
#
|
||||||
SHELL = /bin/sh
|
SHELL = /bin/sh
|
||||||
|
@ -13,9 +13,9 @@ SHELL = /bin/sh
|
||||||
# and desired load options for your machine.
|
# and desired load options for your machine.
|
||||||
#
|
#
|
||||||
FORTRAN = ifort
|
FORTRAN = ifort
|
||||||
OPTS = -O3
|
OPTS = -O3 -fp-model strict
|
||||||
DRVOPTS = $(OPTS)
|
DRVOPTS = $(OPTS)
|
||||||
NOOPT = -O3 -fltconsistency -fp_port
|
NOOPT = -O0 -fp-model strict
|
||||||
LOADER = ifort
|
LOADER = ifort
|
||||||
LOADOPTS =
|
LOADOPTS =
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in New Issue