summaryrefslogtreecommitdiff
path: root/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2017-01-22Consolidate the BLAS/TESTING MakefilesKyle Guinn1-21/+4
Move the test inputs into the TESTING dir.
2017-01-22Move some rules to INSTALL/MakefileKyle Guinn1-3/+3
2016-11-25merging: Various cleanups to makefiles #84Julie1-20/+19
Contribution by @turboencabulator Closing #84
2016-07-09STYLE: Remove trailing whitespace in MISC filesHans Johnson1-7/+7
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-01-08Committing Sébastien Villemot patches (5) sent on Jan 6th 2016 to LAPACK ↵julie1-2/+2
Mailing list From Sébastien Villemot: I attach to this message 5 patches that are currently applied to the Debian package for LAPACK, and that I think could be usefully merged in the LAPACK SVN tree. The patches include fixes for old outstanding bugs in the CBLAS test programs, fixes for the build system, and fixes for various typos. Each patch file contains a more detailed description of its purpose.
2015-11-01remove extra tabs - Thank you Matyas A Sustikjulie1-4/+4
2014-10-09correct typo while editing Makefile with VIjulie1-1/+1
2014-10-08Fixing folder uppercase / lower case issue - Thank you Donjulie1-7/+7
2014-08-23Commit to integrate CMAKE and MAKEFILE build system for CBLASjulie1-2/+19
Also modify the way the CBLAS mangling was generated...now CBLAS follows LAPACKE model Details on MAKEFILE build To compile CBLAS library from the LAPACK folder: - make cblaslib --> create the cblas lib - make cblas_testing --> compile BLAS Ref if necessary, build exe, then run exe Details on CMAKE build Now you have an option to select CBLAS If CBLAS is check the Library is built and if BUILD_TESTING is enable, test and example are built and run following --> modification of all make.inc --> more clean up --> debugging on other platforms ** PLEASE TRY and SEND FEEDBACK - Thanks - Julie **
2012-04-13Update version numberjulie1-2/+2
2011-12-03Integrate LAPACKE into LAPACK make and CMAKE build system.julie1-0/+8
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-2/+19
2011-10-01Per consultation with Julie, added ./testieee to main Makefile ↵igor1751-2/+2
lapack_install target
2011-09-30Reverting previous bad commit and going back to revision 1008igor1751-5/+2
2011-09-29convinience change to Makefile to clean BLAS directory from object filesigor1751-2/+5
2011-06-28CHANGE IN THE SCRIPT:julie1-1/+2
lapack_testing.py has been moved to the top directory One argument was added : - d [dir] is to indicate where is the LAPACK testing directory (.out files). By default, the script will use .-d or --dir to The -f argument was replaced by -r argument. Now by default the script will use the LAPACK output. - r is to use to run the LAPACK tests then analyse the output (.out files). By default, the script will not run all the LAPACK tests INTEGRATION: Integration of the LAPACK Testing parsing in the Makefile and CMake build process. In the Makefile build: now the lapack_testing target will call the script after running the tests In the CMAKE build: after the tests are run, the script will be executed with the option -s (short) the end of the output will look like this: 100% tests passed, 0 tests failed out of 98 Total Test time (real) = 211.83 sec SUMMARY numerical error other error ================ ================= ================ REAL 40 (0.004%) 0 (0.000%) DOUBLE PRECISION 202 (0.020%) 0 (0.000%) COMPLEX 2 (0.000%) 0 (0.000%) COMPLEX16 28 (0.005%) 0 (0.000%) --> ALL PRECISIONS 272 (0.009%) 0 (0.000%)
2010-06-23Update date and version for 3.2.2 releasejulie1-2/+2
2010-02-10Following a complain from John Tellefson (Salina, KS), added the make of thelangou1-1/+1
variant library to the testing of the variants if the variant library is not present.
2009-06-04fixed the variants_testing Makefile problem du1-6/+6
2008-12-16(no commit message)julie1-48/+11
2008-10-28Move LAPACK trunk into position.jason1-0/+123