diff options
author | julie <julielangou@users.noreply.github.com> | 2011-06-28 08:07:35 +0000 |
---|---|---|
committer | julie <julielangou@users.noreply.github.com> | 2011-06-28 08:07:35 +0000 |
commit | 27164edcec308756c7acdcfee63d67aef9d389ff (patch) | |
tree | 238526765e46a777836907a40304ff97093c990f /Makefile | |
parent | 6470158d34c1bb48a0257436742e226dbabcd69f (diff) | |
download | lapack-27164edcec308756c7acdcfee63d67aef9d389ff.tar.gz lapack-27164edcec308756c7acdcfee63d67aef9d389ff.tar.bz2 lapack-27164edcec308756c7acdcfee63d67aef9d389ff.zip |
CHANGE IN THE SCRIPT:
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%)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -6,7 +6,7 @@ include make.inc -all: lapack_install lib lapack_testing blas_testing +all: lapack_install lib blas_testing lapack_testing lib: lapacklib tmglib #lib: blaslib variants lapacklib tmglib @@ -31,6 +31,7 @@ tmglib: lapack_testing: lib ( cd TESTING ; $(MAKE) ) + ./lapack_testing.py variants_testing: lib variants ( cd TESTING ; rm -f xlintst* ; $(MAKE) VARLIB='SRC/VARIANTS/LIB/cholrl.a' ; \ |