summaryrefslogtreecommitdiff
path: root/BLAS/TESTING
AgeCommit message (Collapse)AuthorFilesLines
2017-02-06Simplify the clean targetsKyle Guinn1-2/+7
cleanobj: Remove object files cleanlib: Remove libraries cleanexe: Remove test and example executables cleantest: Remove test output and core dumps clean: All of the above
2017-02-04Add libraries as prerequisitesKyle Guinn1-24/+24
Use the automatic variable $^ to refer to all prerequisites when linking or creating an archive.
2017-01-22Consolidate the BLAS/TESTING MakefilesKyle Guinn13-230/+279
Move the test inputs into the TESTING dir.
2016-12-23Updating version number on source file modified since 3.6.1Julie12-12/+12
This is really old school, but a lot of times we have users sending us copy pasting of codes, and that is the only way to know the version of the code.
2016-11-25merging: Various cleanups to makefiles #84Julie4-45/+24
Contribution by @turboencabulator Closing #84
2016-07-10Remove CMake-language block-end command argumentsHans Johnson1-1/+1
Ancient versions of CMake required else(), endif(), and similar block termination commands to have arguments matching the command starting the block. This is no longer the preferred style. NOTE: MUST USE GNU compliant version of sed Run the following shell code: for c in else endif endforeach endfunction endmacro endwhile; do echo 's/\b'"$c"'\(\s*\)(.\+)/'"$c"'\1()/' done >convert.sed \ && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' \ | xargs -0 gsed -i -f convert.sed \ && rm convert.sed
2016-07-09STYLE: Remove trailing whitespace in Fortran filesHans Johnson12-89/+89
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-09STYLE: Remove trailing whitespace in MISC filesHans Johnson3-41/+41
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-09STYLE: Remove trailing whitespace in CMake filesHans Johnson1-1/+1
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.
2014-06-14Applied patch provided from vitaut on LAPACK forum on June 13th.julie1-5/+4
The patch fixes the warnings (Policy CMP0026) by replacing the deprecated LOCATION target property with the generator expression $<TARGET_FILE> See http://icl.cs.utk.edu/lapack-forum/viewtopic.php?f=13&t=4556&p=10939#p10939
2012-04-13Update version numberjulie12-36/+36
2012-04-11Remove unused parametersjulie8-16/+16
2012-01-20Fixed problem with optimizer breaking error checking, now using F90 EPSILON ↵james4-10/+15
intrinsic. Thanks to Harald Anlauf for providing the solution.
2012-01-20replaced calculation of EPS with F90 call to EPSILON intrinsicjames8-64/+8
2011-11-23Correct some more new lines in program - Thanks Igor for finding out the problemjulie12-12/+24
2011-11-03Cosmetic changes in Doxygen presentation.julie12-144/+120
Use \par instead of \details for section. add a Contributors Section and a Reference Section. Remove (some) verbatim section when not needed. Those changes have been done by hand so I am not sure I manage to catch them all.
2011-10-06Integrating Doxygen in commentsjulie12-460/+977
2011-09-23Improve CMAKE BUILD system and OUTPUT PARSING when not all precisions are ↵julie1-14/+22
needed. The following variables will control the precision to be built: BUILD_SINGLE BUILD_DOUBLE BUILD_COMPLEX BUILD_COMPLEX16 For mixed precision SINGLE/DOUBLE routines, both BUILD_SINGLE and BUILD_DOUBLE needs to be on. (same for COMPLEX/COMPLEX16)
2011-08-15Replace DOUBLE COMPLEX by COMPLEX*16julie3-4/+4
Replace SNGL by REAL
2011-06-22Summer cleanupjulie8-8/+0
Cleanup some codes, like unused variables. Used -Walls to detect problems.
2011-03-16Remove GO TO STATEMENT in DROTMG/DROTM and SROTMG/SROTM.julie2-79/+622
Incorporate OLD Testings from ACM Collected algorithms : algorithm 539 for: - DROTMG/SROTMG - DROTM/SROTM - DSDOT / SDSDOT All BLAS routines are now tested. Now up to us to change the BLAS but at least this is consistent.
2009-08-11Add CMAKE support to LAPACKjulie1-0/+63
2008-10-28Move LAPACK trunk into position.jason15-0/+28425