Updated the doc for 0.2.0 version.
This commit is contained in:
parent
857a0fa0df
commit
13f5f18140
|
@ -1,4 +1,17 @@
|
||||||
OpenBLAS ChangeLog
|
OpenBLAS ChangeLog
|
||||||
|
====================================================================
|
||||||
|
Version 0.2.0
|
||||||
|
26-Jun-2012
|
||||||
|
common:
|
||||||
|
* Removed the limitation (64) of numbers of CPU cores.
|
||||||
|
Now, it supports 256 cores at max.
|
||||||
|
* Supported clang compiler.
|
||||||
|
* Fixed some build bugs on FreeBSD
|
||||||
|
x86/x86-64:
|
||||||
|
* Optimized Level-3 BLAS on Intel Sandy Bridge x86-64 by AVX instructions.
|
||||||
|
Please use gcc >= 4.6 or clang >=3.1.
|
||||||
|
* Support AMD Bobcat by using GotoBLAS2 AMD Barcelona codes.
|
||||||
|
|
||||||
====================================================================
|
====================================================================
|
||||||
Version 0.1.1
|
Version 0.1.1
|
||||||
29-Apr-2012
|
29-Apr-2012
|
||||||
|
@ -7,6 +20,8 @@ common:
|
||||||
* Supported LAPACKE, a C interface to LAPACKE. (Thank Zaheer Chothia)
|
* Supported LAPACKE, a C interface to LAPACKE. (Thank Zaheer Chothia)
|
||||||
* Fixed the build bug (MD5 and download) on Mac OSX.
|
* Fixed the build bug (MD5 and download) on Mac OSX.
|
||||||
* Auto download CUnit 2.1.2-2 from SF.net with UTEST_CHECK=1.
|
* Auto download CUnit 2.1.2-2 from SF.net with UTEST_CHECK=1.
|
||||||
|
* Fxied the compatibility issue for compilers without C99 complex number
|
||||||
|
(e.g. Visual Studio)
|
||||||
x86/x86_64:
|
x86/x86_64:
|
||||||
* Auto-detect Intel Sandy Bridge Core i7-3xxx & Xeon E7 Westmere-EX.
|
* Auto-detect Intel Sandy Bridge Core i7-3xxx & Xeon E7 Westmere-EX.
|
||||||
* Test alpha=Nan in dscale.
|
* Test alpha=Nan in dscale.
|
||||||
|
|
|
@ -5,7 +5,7 @@ OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version. OpenB
|
||||||
|
|
||||||
Please read the documents on OpenBLAS wiki pages <http://github.com/xianyi/OpenBLAS/wiki>.
|
Please read the documents on OpenBLAS wiki pages <http://github.com/xianyi/OpenBLAS/wiki>.
|
||||||
|
|
||||||
## Intallation
|
## Installation
|
||||||
Download from project homepage. http://xianyi.github.com/OpenBLAS/
|
Download from project homepage. http://xianyi.github.com/OpenBLAS/
|
||||||
|
|
||||||
Or, check out codes from git://github.com/xianyi/OpenBLAS.git
|
Or, check out codes from git://github.com/xianyi/OpenBLAS.git
|
||||||
|
@ -76,9 +76,9 @@ The priorities are OPENBLAS_NUM_THREADS > GOTO_NUM_THREADS > OMP_NUM_THREADS.
|
||||||
|
|
||||||
If you compile this lib with USE_OPENMP=1, you should set OMP_NUM_THREADS environment variable. OpenBLAS ignores OPENBLAS_NUM_THREADS and GOTO_NUM_THREADS with USE_OPENMP=1.
|
If you compile this lib with USE_OPENMP=1, you should set OMP_NUM_THREADS environment variable. OpenBLAS ignores OPENBLAS_NUM_THREADS and GOTO_NUM_THREADS with USE_OPENMP=1.
|
||||||
|
|
||||||
### Set the number of threads with calling functions.
|
### Set the number of threads on runtime.
|
||||||
|
|
||||||
Examples:
|
We provided the below functions to controll the number of threads on runtime. So far, we didn't support changing the number of threads on Windows. On Windows, these functions are dummy.
|
||||||
|
|
||||||
void goto_set_num_threads(int num_threads);
|
void goto_set_num_threads(int num_threads);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue