Merge branch 'release-0.1.1' into develop
This commit is contained in:
commit
60a58e03ea
|
@ -1,4 +1,17 @@
|
||||||
OpenBLAS ChangeLog
|
OpenBLAS ChangeLog
|
||||||
|
====================================================================
|
||||||
|
Version 0.1.1
|
||||||
|
29-Apr-2012
|
||||||
|
common:
|
||||||
|
* Upgraded LAPACK to 3.4.1 version. (Thank Zaheer Chothia)
|
||||||
|
* Supported LAPACKE, a C interface to LAPACKE. (Thank Zaheer Chothia)
|
||||||
|
* Fixed the build bug (MD5 and download) on Mac OSX.
|
||||||
|
* Auto download CUnit 2.1.2-2 from SF.net with UTEST_CHECK=1.
|
||||||
|
x86/x86_64:
|
||||||
|
* Auto-detect Intel Sandy Bridge Core i7-3xxx & Xeon E7 Westmere-EX.
|
||||||
|
* Test alpha=Nan in dscale.
|
||||||
|
* Fixed a SEGFAULT bug in samax on x86 windows.
|
||||||
|
|
||||||
====================================================================
|
====================================================================
|
||||||
Version 0.1.0
|
Version 0.1.0
|
||||||
23-Mar-2012
|
23-Mar-2012
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
# This library's version
|
# This library's version
|
||||||
VERSION = 0.1.0
|
VERSION = 0.1.1
|
||||||
|
|
||||||
# If you set the suffix, the library name will be libopenblas_$(LIBNAMESUFFIX).a
|
# If you set the suffix, the library name will be libopenblas_$(LIBNAMESUFFIX).a
|
||||||
# and libopenblas_$(LIBNAMESUFFIX).so. Meanwhile, the soname in shared library
|
# and libopenblas_$(LIBNAMESUFFIX).so. Meanwhile, the soname in shared library
|
||||||
|
|
3
README
3
README
|
@ -2,6 +2,7 @@ OpenBLAS Readme
|
||||||
|
|
||||||
1.Introduction
|
1.Introduction
|
||||||
OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version. OpenBLAS is an open source project supported by Lab of Parallel Software and Computational Science, ISCAS.(http://www.rdcps.ac.cn)
|
OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version. OpenBLAS is an open source project supported by Lab of Parallel Software and Computational Science, ISCAS.(http://www.rdcps.ac.cn)
|
||||||
|
Please read the documents on OpenBLAS wiki pages(http://github.com/xianyi/OpenBLAS/wiki).
|
||||||
|
|
||||||
2.Intallation
|
2.Intallation
|
||||||
Download from project homepage. http://xianyi.github.com/OpenBLAS/
|
Download from project homepage. http://xianyi.github.com/OpenBLAS/
|
||||||
|
@ -34,7 +35,7 @@ Additional support CPU:
|
||||||
x86_64:
|
x86_64:
|
||||||
Intel Xeon 56xx (Westmere) //Used GotoBLAS2 Nehalem codes.
|
Intel Xeon 56xx (Westmere) //Used GotoBLAS2 Nehalem codes.
|
||||||
MIPS64:
|
MIPS64:
|
||||||
ICT Loongson 3A //The initial version used GotoBLAS2 MIPS64 kernels. Thus, the performance is not good.
|
ICT Loongson 3A //Level 3 BLAS subroutines are optimized.
|
||||||
|
|
||||||
4.Usages
|
4.Usages
|
||||||
Link with libopenblas.a or -lopenblas for shared library.
|
Link with libopenblas.a or -lopenblas for shared library.
|
||||||
|
|
Loading…
Reference in New Issue