summaryrefslogtreecommitdiff
path: root/INSTALL/make.inc.ifort
AgeCommit message (Collapse)AuthorFilesLines
2016-09-05Add the flag `-assume protect_parens` for the Intel Fortran compilerJulien Langou1-2/+2
Suggestion from J. Kay Dewhurst, Max Planck Institute of Microstructure Physics See: https://github.com/Reference-LAPACK/lapack/issues/43
2016-07-09STYLE: Remove trailing whitespace in MISC filesHans Johnson1-4/+4
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-1/+1
2016-01-25Change the default compilation flags for the Intel Fortran compiler. langou1-2/+2
The LAPACK TESTING should run error free with these settings. Previously were: OPTS = -O3 NOOPT = -O3 -fltconsistency -fp_port Now are: OPTS = -O3 -fp-model strict NOOPT = -O0 -fp-model strict Thanks to Viswanathan Elumalai the University of Pittsburgh for reporting the problem, Jason Riedy for suggesting to use the flags "fp-model strict" and Osni Marques for playing with a lots of flag combinations!
2015-11-15Updating version numberjulie1-1/+1
2014-08-23Update make.inc's following the integration of CBLASjulie1-2/+3
2013-11-17Update version and date on make.inc templatesjulie1-2/+2
2012-04-13Update version numberjulie1-2/+2
2012-01-12Add an option LAPACKE_WITH_TMG that will generate the LAPACKE with the TMG ↵julie1-0/+4
routines needed in plasma (by default regular LAPACKE with only LAPACK routines
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-20/+8
2010-02-10Add make.inc for ifortjulie1-0/+70