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