Updated the doc for 0.2.0 version.
authorZhang Xianyi <xianyi@iscas.ac.cn>
Mon, 25 Jun 2012 23:43:06 +0000 (07:43 +0800)
committerZhang Xianyi <xianyi@iscas.ac.cn>
Mon, 25 Jun 2012 23:43:06 +0000 (07:43 +0800)
Changelog.txt
README.md

index 0ed35b0..c222c7e 100644 (file)
@@ -1,5 +1,18 @@
 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
 29-Apr-2012
 common:
@@ -7,6 +20,8 @@ common:
        * 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.
+       * Fxied the compatibility issue for compilers without C99 complex number
+         (e.g. Visual Studio)
 x86/x86_64:
        * Auto-detect Intel Sandy Bridge Core i7-3xxx & Xeon E7 Westmere-EX.
        * Test alpha=Nan in dscale.
index a13e069..82e9f52 100644 (file)
--- a/README.md
+++ b/README.md
@@ -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>.
 
-## Intallation
+## Installation
 Download from project homepage. http://xianyi.github.com/OpenBLAS/
 
 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.
 
-### 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);