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