Merge branch 'release-0.2.0'
[platform/upstream/openblas.git] / Changelog.txt
1 OpenBLAS ChangeLog
2 ====================================================================
3 Version 0.2.0
4 26-Jun-2012
5 common:
6         * Removed the limitation (64) of numbers of CPU cores.
7           Now, it supports 256 cores at max.
8         * Supported clang compiler.
9         * Fixed some build bugs on FreeBSD
10 x86/x86-64:
11         * Optimized Level-3 BLAS on Intel Sandy Bridge x86-64 by AVX instructions.
12           Please use gcc >= 4.6 or clang >=3.1.
13         * Support AMD Bobcat by using GotoBLAS2 AMD Barcelona codes.
14
15 ====================================================================
16 Version 0.1.1
17 29-Apr-2012
18 common:
19         * Upgraded LAPACK to 3.4.1 version. (Thank Zaheer Chothia)
20         * Supported LAPACKE, a C interface to LAPACKE. (Thank Zaheer Chothia)
21         * Fixed the build bug (MD5 and download) on Mac OSX.
22         * Auto download CUnit 2.1.2-2 from SF.net with UTEST_CHECK=1.
23         * Fxied the compatibility issue for compilers without C99 complex number
24           (e.g. Visual Studio)
25 x86/x86_64:
26         * Auto-detect Intel Sandy Bridge Core i7-3xxx & Xeon E7 Westmere-EX.
27         * Test alpha=Nan in dscale.
28         * Fixed a SEGFAULT bug in samax on x86 windows.
29         
30 ====================================================================
31 Version 0.1.0
32 23-Mar-2012
33 common:
34         * Set soname of shared library on Linux.
35         * Added LIBNAMESUFFIX flag in Makefile.rule. The user can use 
36           this flag to control the library name, e.g. libopenblas.a, 
37           libopenblas_ifort.a or libopenblas_omp.a.
38         * Added GEMM_MULTITHREAD_THRESHOLD flag in Makefile.rule.
39           The lib use single thread in GEMM function with small matrices.
40 x86/x86_64:
41         * Used GEMV SSE/SSE2 kernels on x86 32-bit.
42         * Exported CBLAS functions in Windows DLL.
43 MIPS64:
44         * Completed Level-3 BLAS optimization on Loongson 3A CPU.
45         * Improved GEMV performance on Loongson 3A CPU.
46         * Improved Level-3 BLAS performance on Loongson 3B CPU. (EXPERIMENT)
47
48 ====================================================================
49 Version 0.1 alpha2.5
50 19-Feb-2012
51 common:
52         * Fixed missing "#include <sched.h>" bug on Mac OS X.
53           Thank Mike Nolta for the patch.
54         * Upgraded LAPACK to 3.4.0 version
55         * Fixed a bug on Mac OS X. Don't require SystemStubs on OS X.
56           SystemStubs does not exist on Lion. Thank Stefan Karpinski.
57         * Improved README with using OpenMP. Check the internal threads
58           count less than or equal to omp_get_max_threads()
59 x86/x86_64:
60         * Auto-detect Intel Core i6/i7 (Sandy Bridge) CPU with Nehalem assembly kernels
61         * Fixed some bugs on MingW 64-bit including zgemv, cdot, zdot.
62
63 ====================================================================
64 Version 0.1 alpha2.4
65 18-Sep-2011
66 common:
67         * Fixed a bug about installation. The header file "fblas77.h" 
68           works fine now.
69         * Fixed #61 a building bug about setting TARGET and DYNAMIC_ARCH.
70         * Try to handle absolute path of shared library in OSX. (#57)
71           Thank Dr Kane O'Donnell.
72         * Changed the installation folder layout to $(PREFIX)/include and
73           $(PREFIX)/lib
74
75 x86/x86_64:
76         * Fixed #58 zdot/xdot SEGFAULT bug with GCC-4.6 on x86. According 
77           to i386 calling convention, The callee should remove the first 
78           hidden parameter.Thank Mr. John for this patch. 
79
80 ====================================================================
81 Version 0.1 alpha2.3
82 5-Sep-2011
83
84 x86/x86_64:
85         *  Added DTB_ENTRIES into dynamic arch setting parameters. Now, 
86            it can read DTB_ENTRIES on runtime. (Refs issue #55 on github)
87
88 ====================================================================
89 Version 0.1 alpha2.2
90 14-Jul-2011
91
92 common:
93         * Fixed a building bug when DYNAMIC_ARCH=1 & INTERFACE64=1. 
94           (Refs issue #44 on github)
95
96 ====================================================================
97 Version 0.1 alpha2.1
98 28-Jun-2011
99
100 common:
101         * Stop the build and output the error message when detecting 
102           fortran compiler failed. (Refs issue #42 on github)
103
104 ====================================================================
105 Version 0.1 alpha2
106 23-Jun-2011
107
108 common:
109         * Fixed blasint undefined bug in <cblas.h> file. Other software 
110           could include this header successfully(Refs issue #13 on github)
111         * Fixed the SEGFAULT bug on 64 cores. On SMP server, the number 
112           of CPUs or cores should be less than or equal to 64.(Refs issue #14 
113           on github)
114         * Support "void goto_set_num_threads(int num_threads)" and "void
115           openblas_set_num_threads(int num_threads)" when USE_OPENMP=1
116         * Added extern "C" to support C++. Thank Tasio for the patch(Refs 
117           issue #21 on github)
118         * Provided an error message when the arch is not supported.(Refs 
119           issue #19 on github)
120         * Fixed issue #23. Fixed a bug of f_check script about generating link flags.
121         * Added openblas_set_num_threads for Fortran.
122         * Fixed #25 a wrong result of rotmg.
123         * Fixed a bug about detecting underscore prefix in c_check.
124         * Print the wall time (cycles) with enabling FUNCTION_PROFILE
125         * Fixed #35 a build bug with NO_LAPACK=1 & DYNAMIC_ARCH=1
126         * Added install target. You can use "make install". (Refs #20)
127
128
129 x86/x86_64:
130         * Fixed #28 a wrong result of dsdot on x86_64.
131         * Fixed #32 a SEGFAULT bug of zdotc with gcc-4.6.
132         * Fixed #33 ztrmm bug on Nehalem.
133         * Walk round #27 the low performance axpy issue with small imput size & multithreads.
134
135 MIPS64:
136         * Fixed #28 a wrong result of dsdot on Loongson3A/MIPS64. 
137         * Optimized single/double precision BLAS Level3 on Loongson3A/MIPS64. (Refs #2)
138         * Optimized single/double precision axpy function on Loongson3A/MIPS64. (Refs #3)
139
140 ====================================================================
141 Version 0.1 alpha1
142 20-Mar-2011
143
144 common:
145         * Support "make  NO_LAPACK=1" to build the library without 
146           LAPACK functions.
147         * Fixed randomly SEGFAULT when nodemask==NULL with above Linux 2.6.34. 
148           Thank Mr.Ei-ji Nakama providing this patch. (Refs issue #12 on github)
149         * Added DEBUG=1 rule in Makefile.rule to build debug version.
150         * Disable compiling quad precision in reference BLAS library(netlib BLAS).
151         * Added unit testcases in utest/ subdir. Used  CUnit framework.
152         * Supported OPENBLAS_* & GOTO_* environment variables (Pleas see README)
153         * Imported GotoBLAS2 1.13 BSD version
154
155 x86/x86_64:
156         * On x86 32bits, fixed a bug in zdot_sse2.S line 191. This would casue 
157           zdotu & zdotc failures.Instead,Walk around it. (Refs issue #8 #9 on github)
158         * Modified ?axpy functions to return same netlib BLAS results 
159           when incx==0 or incy==0 (Refs issue #7 on github)
160         * Modified ?swap functions to return same netlib BLAS results 
161           when incx==0 or incy==0 (Refs issue #6 on github)
162         * Modified ?rot functions to return same netlib BLAS results 
163           when incx==0 or incy==0 (Refs issue #4 on github)
164         * Detect Intel Westmere,Intel Clarkdale and Intel Arrandale 
165           to use Nehalem codes.
166         * Fixed a typo bug about compiling dynamic ARCH library.
167 MIPS64:
168         * Improve daxpy performance on ICT Loongson 3A.
169         * Supported ICT Loongson 3A CPU (Refs issue #1 on github)
170 ====================================================================