Update Changelog for 0.2.16.rc1.
[platform/upstream/openblas.git] / Changelog.txt
1 OpenBLAS ChangeLog
2 ====================================================================
3 Version 0.2.16.rc1
4 23-Feb-2016
5 common:
6         * Upgrade LAPACK to 3.6.0 version.
7           Add BUILD_LAPACK_DEPRECATED option in Makefile.rule to build
8           LAPACK deprecated functions.
9         * Add MAKE_NB_JOBS option in Makefile.
10           Force number of make jobs.This is particularly
11           useful when using distcc. (#735. Thanks, Jerome Robert.)
12         * Redesign unit test. Run unit/regression test at every build (Travis-CI and Appveyor).
13         * Disable multi-threading for small size swap and ger. (#744. Thanks, Jerome Robert)
14         * Improve small zger, zgemv, ztrmv using stack alloction (#727. Thanks, Jerome Robert)
15         * Let openblas_get_num_threads return the number of active threads. 
16           (#760. Thanks, Jerome Robert)
17         * Support illumos(OmniOS). (#749. Thanks, Lauri Tirkkonen)
18         * Fix LAPACK Dormbr, Dormlq bug. (#711, #713. Thanks, Brendan Tracey)
19         * Update scipy benchmark script. (#745. Thanks, John Kirkham)
20
21 x86/x86_64:
22         * Optimize trsm kernels for AMD Bulldozer, Piledriver, Steamroller.
23         * Detect Intel Avoton.
24         * Detect AMD Trinity, Richland, E2-3200.
25         * Fix gemv performance bug on Mac OSX Intel Haswell.
26         * Fix some bugs with CMake and Visual Studio
27
28 ARM:
29         * Support and optimize Cortex-A57 AArch64.
30           (#686. Thanks, Ashwin Sekhar TK)
31         * Fix Android build on ARMV7 (#778. Thanks, Paul Mustiere)
32         * Update ARMV6 kernels.
33
34 POWER:
35         * Fix detection of POWER architecture
36           (#684. Thanks, Sebastien Villemot)
37
38 ====================================================================
39 Version 0.2.15
40 27-Oct-2015
41 common:
42         * Support cmake on x86/x86-64. Natively compiling on MS Visual Studio.
43           (experimental. Thank Hank Anderson for the initial cmake porting work.)
44           
45           On Linux and Mac OSX, OpenBLAS cmake supports assembly kernels.
46           e.g. cmake .
47                make
48                make test (Optional)
49
50           On Windows MS Visual Studio, OpenBLAS cmake only support C kernels.
51           (OpenBLAS uses AT&T style assembly, which is not supported by MSVC.)
52           e.g. cmake -G "Visual Studio 12 Win64" .
53                Open OpenBLAS.sln and build.
54           
55         * Enable MAX_STACK_ALLOC flags by default.
56           Improve ger and gemv for small matrices.
57         * Improve gemv parallel with small m and large n case.
58         * Improve ?imatcopy when lda==ldb (#633. Thanks, Martin Koehler)
59         * Add vecLib benchmarks (#565. Thanks, Andreas Noack.)
60         * Fix LAPACK lantr for row major matrices (#634. Thanks, Dan Kortschak)
61         * Fix LAPACKE lansy (#640. Thanks, Dan Kortschak)
62         * Import bug fixes for LAPACKE s/dormlq, c/zunmlq 
63         * Raise the signal when pthread_create fails (#668. Thanks, James K. Lowden)
64         * Remove g77 from compiler list.
65         * Enable AppVeyor Windows CI.
66
67 x86/x86-64:
68         * Support pure C generic kernels for x86/x86-64.
69         * Support Intel Boardwell and Skylake by Haswell kernels.
70         * Support AMD Excavator by Steamroller kernels.
71         * Optimize s/d/c/zdot for Intel SandyBridge and Haswell.
72         * Optimize s/d/c/zdot for AMD Piledriver and Steamroller.
73         * Optimize s/d/c/zapxy for Intel SandyBridge and Haswell.
74         * Optimize s/d/c/zapxy for AMD Piledriver and Steamroller.
75         * Optimize d/c/zscal for Intel Haswell, dscal for Intel SandyBridge.
76         * Optimize d/c/zscal for AMD Bulldozer, Piledriver and Steamroller.
77         * Optimize s/dger for Intel SandyBridge.
78         * Optimize s/dsymv for Intel SandyBridge.
79         * Optimize ssymv for Intel Haswell.
80         * Optimize dgemv for Intel Nehalem and Haswell.
81         * Optimize dtrmm for Intel Haswell.
82
83 ARM:
84         * Support Android NDK armeabi-v7a-hard ABI (-mfloat-abi=hard)
85           e.g. make HOSTCC=gcc CC=arm-linux-androideabi-gcc NO_LAPACK=1 TARGET=ARMV7
86         * Fix lock, rpcc bugs (#616, #617. Thanks, Grazvydas Ignotas)
87 POWER:
88         * Support ppc64le platform (ELF ABI v2. #612. Thanks, Matthew Brandyberry.)
89         * Support POWER7/8 by POWER6 kernels. (#612. Thanks, Fábio Perez.)
90
91 ====================================================================
92 Version 0.2.14
93 24-Mar-2015
94 common:
95         * Improve OpenBLASConfig.cmake. (#474, #475. Thanks, xantares.)
96         * Improve ger and gemv for small matrices by stack allocation.
97           e.g. make -DMAX_STACK_ALLOC=2048 (#482. Thanks, Jerome Robert.)
98         * Introduce openblas_get_num_threads and openblas_get_num_procs.
99           (#497. Thanks, Erik Schnetter.)
100         * Add ATLAS-style ?geadd function. (#509. Thanks, Martin Köhler.)
101         * Fix c/zsyr bug with negative incx. (#492.)
102         * Fix race condition during shutdown causing a crash in
103           gotoblas_set_affinity(). (#508. Thanks, Ton van den Heuvel.)
104
105 x86/x86-64:
106         * Support AMD Streamroller.
107
108 ARM:
109         * Add Cortex-A9 and Cortex-A15 targets.
110
111 ====================================================================
112 Version 0.2.13
113 3-Dec-2014
114 common:
115         * Add SYMBOLPREFIX and SYMBOLSUFFIX makefile options
116           for adding a prefix or suffix to all exported symbol names
117           in the shared library.(#459, Thanks Tony Kelman)
118         * Provide OpenBLASConfig.cmake at installation.
119         * Fix Fortran compiler detection on FreeBSD.
120           (#470, Thanks Mike Nolta)
121
122
123 x86/x86-64:
124         * Add generic kernel files for x86-64. make TARGET=GENERIC
125         * Fix a bug of sgemm kernel on Intel Sandy Bridge.
126         * Fix c_check bug on some amd64 systems. (#471, Thanks Mike Nolta)
127
128 ARM:
129         * Support APM's X-Gene 1 AArch64 processors.
130           Optimize trmm and sgemm. (#465, Thanks Dave Nuechterlein)
131
132 ====================================================================
133 Version 0.2.12
134 13-Oct-2014
135 common:
136         * Added CBLAS interface for ?omatcopy and ?imatcopy.
137         * Enable ?gemm3m functions.
138         * Added benchmark for ?gemm3m.
139         * Optimized multithreading lower limits.
140         * Disabled SYMM3M and HEMM3M functions 
141           because of segment violations.
142
143 x86/x86-64:
144         * Improved axpy and symv performance on AMD Bulldozer.
145         * Improved gemv performance on modern Intel and AMD CPUs.
146
147 ====================================================================
148 Version 0.2.11
149 18-Aug-2014
150 common:
151         * Added some benchmark codes.
152         * Fix link error on Linux/musl.(Thanks Isaac Dunham)
153
154 x86/x86-64:
155         * Improved s/c/zgemm performance for Intel Haswell.
156         * Improved s/d/c/zgemv performance.
157         * Support the big numa machine.(EXPERIMENT)
158
159 ARM:
160         * Fix detection when cpuinfo uses "Processor". (Thanks Isaiah)
161
162 ====================================================================
163 Version 0.2.10
164 16-Jul-2014
165 common:
166         * Added BLAS extensions as following.
167           s/d/c/zaxpby, s/d/c/zimatcopy, s/d/c/zomatcopy.
168         * Added OPENBLAS_CORETYPE environment for dynamic_arch. (a86d34)
169         * Added NO_AVX2 flag for old binutils. (#401)
170         * Support outputing the CPU corename on runtime.(#407)
171         * Patched LAPACK to fix bug 114, 117, 118. 
172           (http://www.netlib.org/lapack/bug_list.html)
173         * Disabled ?gemm3m for a work-around fix. (#400)
174 x86/x86-64:
175         * Fixed lots of bugs for optimized kernels on sandybridge,Haswell, 
176           bulldozer, and piledriver.
177           https://github.com/xianyi/OpenBLAS/wiki/Fixed-optimized-kernels-To-do-List
178
179 ARM:
180         * Improved LAPACK testing.
181
182 ====================================================================
183 Version 0.2.9
184 10-Jun-2014
185 common:
186         * Improved the result for LAPACK testing. (#372)
187         * Installed DLL to prefix/bin instead of prefix/lib. (#366)
188         * Build import library on Windows.(#374)
189 x86/x86-64:
190         * To improve LAPACK testing, we fallback some kernels. (#372)
191         https://github.com/xianyi/OpenBLAS/wiki/Fixed-optimized-kernels-To-do-List
192
193 ====================================================================
194 Version 0.2.9.rc2
195 06-Mar-2014
196 common:
197         * Added OPENBLAS_VERBOSE environment variable.(#338)
198         * Make OpenBLAS thread-pool resilient to fork via pthread_atfork.
199           (#294, Thank Olivier Grisel)
200         * Rewrote rotmg
201         * Fixed sdsdot bug.
202 x86/x86-64:
203         * Detect Intel Haswell for new Macbook.
204
205 ====================================================================
206 Version 0.2.9.rc1
207 13-Jan-2013
208 common:
209         * Update LAPACK to 3.5.0 version
210         * Fixed compatiable issues with Clang and Pathscale compilers.
211
212 x86/x86-64:
213         * Optimization on Intel Haswell.
214         * Enable optimization kernels on AMD Bulldozer and Piledriver.
215
216 ARM:
217         * Support ARMv6 and ARMv7 ISA.
218         * Optimization on ARM Cortex-A9.
219
220 ====================================================================
221 Version 0.2.8
222 01-Aug-2013
223 common:
224         * Support Open64 5.0. (#266)
225         * Add executable stack markings. (#262, Thank Sébastien Fabbro)
226         * Respect user's LDFLAGS (Thank Sébastien Fabbro)
227
228 x86/x86-64:
229         * Rollback bulldozer and piledriver kernels to barcelona kernels (#263)
230           We will fix the compuational error bug in bulldozer and piledriver kernels.
231
232 ====================================================================
233 Version 0.2.7
234 20-Jul-2013
235 common:
236         * Support LSB (Linux Standard Base) 4.1.
237           e.g. make CC=lsbcc
238         * Include LAPACK 3.4.2 source codes to the repo.
239           Avoid downloading at compile time.
240         * Add NO_PARALLEL_MAKE flag to disable parallel make.
241         * Create openblas_get_parallel to retrieve information which
242           parallelization model is used by OpenBLAS. (Thank grisuthedragon)
243         * Detect LLVM/Clang compiler. The default compiler is Clang on Mac OS X.
244         * Change LIBSUFFIX from .lib to .a on windows.
245         * A work-around for dtrti_U single thread bug. Replace it with LAPACK codes. (#191)
246
247 x86/x86-64:
248         * Optimize c/zgemm, trsm, dgemv_n, ddot, daxpy, dcopy on
249           AMD Bulldozer. (Thank Werner Saar)
250         * Add Intel Haswell support (using Sandybridge optimizations).
251           (Thank Dan Luu)
252         * Add AMD Piledriver support (using Bulldozer optimizations).
253         * Fix the computational error in zgemm avx kernel on
254           Sandybridge. (#237)
255         * Fix the overflow bug in gemv.
256         * Fix the overflow bug in multi-threaded BLAS3, getrf when NUM_THREADS
257           is very large.(#214, #221, #246).
258 MIPS64:
259         * Support loongcc (Open64 based) compiler for ICT Loongson 3A/B.
260
261 Power:
262         * Support Power7 by old Power6 kernels. (#220)
263
264 ====================================================================
265 Version 0.2.6
266 2-Mar-2013
267 common:
268         * Improved OpenMP performance slightly. (d744c9)
269         * Improved cblas.h compatibility with Intel MKL.(#185)
270         * Fixed the overflowing bug in single thread cholesky factorization.
271         * Fixed the overflowing buffer bug of multithreading hbmv and sbmv.(#174)
272
273 x86/x86-64:
274         * Added AMD Bulldozer x86-64 S/DGEMM AVX kernels. (Thank Werner Saar)
275           We will tune the performance in future.
276         * Auto-detect Intel Xeon E7540.
277         * Fixed the overflowing buffer bug of gemv. (#173)
278         * Fixed the bug of s/cdot about invalid reading NAN on x86_64. (#189)
279
280 MIPS64:
281
282 ====================================================================
283 Version 0.2.5
284 26-Nov-2012
285 common:
286         * Added NO_SHARED flag to disable generating the shared library.
287         * Compile LAPACKE with ILP64 modle when INTERFACE64=1 (#158)
288         * Export LAPACK 3.4.2 symbols in shared library. (#147)
289         * Only detect the number of physical CPU cores on Mac OSX. (#157)
290         * Fixed NetBSD build. (#155)
291         * Fixed compilation with TARGET=GENERIC. (#160)
292 x86/x86-64:
293         * Restore the original CPU affinity when calling
294           openblas_set_num_threads(1) (#153)
295         * Fixed a SEGFAULT bug in dgemv_t when m is very large.(#154)
296 MIPS64:
297
298 ====================================================================
299 Version 0.2.4
300 8-Oct-2012
301 common:
302         * Upgraded LAPACK to 3.4.2 version. (#145)
303         * Provided support for passing CFLAGS, FFLAGS, PFLAGS,
304           FPFLAGS to make. (#137)
305         * f77blas.h:compatibility for compilers without C99 complex
306           number support. (#141)
307 x86/x86-64:
308         * Added NO_AVX flag. Check OS supporting AVX on runtime. (#139)
309         * Fixed zdot incompatibility ABI issue with GCC 4.7 on
310           Windows 32-bit. (#140)
311 MIPS64:
312         * Fixed the generation of shared library bug.
313         * Fixed the detection bug on the Loongson 3A server.
314 ====================================================================
315 Version 0.2.3
316 20-Aug-2012
317 common:
318         * Fixed LAPACK unstable bug about ?laswp. (#130)
319         * Fixed the shared library bug about unloading the library on
320           Linux (#132).
321         * Fixed the compilation failure on BlueGene/P (TARGET=PPC440FP2)
322           Please use gcc and IBM xlf. (#134)
323 x86/x86-64:
324         * Supported goto_set_num_threads and openblas_set_num_threads
325           APIs in Windows. They can set the number of threads on runtime.
326
327 ====================================================================
328 Version 0.2.2
329 6-July-2012
330 common:
331         * Fixed exporting DLL functions bug on Windows/MingW
332         * Support GNU Hurd (Thank Sylvestre Ledru)
333         * Support kfreebsd kernel (Thank Sylvestre Ledru)
334 x86/x86-64:
335         * Support Intel Sandy Bridge 22nm desktop/mobile CPU
336 SPARC:
337         * Improve the detection of SPARC (Thank Sylvestre Ledru)
338
339 ====================================================================
340 Version 0.2.1
341 30-Jun-2012
342 common:
343 x86/x86-64:
344         * Fixed the SEGFAULT bug about hyper-theading
345         * Support AMD Bulldozer by using GotoBLAS2 AMD Barcelona codes
346
347 ====================================================================
348 Version 0.2.0
349 26-Jun-2012
350 common:
351         * Removed the limitation (64) of numbers of CPU cores.
352           Now, it supports 256 cores at max.
353         * Supported clang compiler.
354         * Fixed some build bugs on FreeBSD
355 x86/x86-64:
356         * Optimized Level-3 BLAS on Intel Sandy Bridge x86-64 by AVX instructions.
357           Please use gcc >= 4.6 or clang >=3.1.
358         * Support AMD Bobcat by using GotoBLAS2 AMD Barcelona codes.
359
360 ====================================================================
361 Version 0.1.1
362 29-Apr-2012
363 common:
364         * Upgraded LAPACK to 3.4.1 version. (Thank Zaheer Chothia)
365         * Supported LAPACKE, a C interface to LAPACKE. (Thank Zaheer Chothia)
366         * Fixed the build bug (MD5 and download) on Mac OSX.
367         * Auto download CUnit 2.1.2-2 from SF.net with UTEST_CHECK=1.
368         * Fxied the compatibility issue for compilers without C99 complex number
369           (e.g. Visual Studio)
370 x86/x86_64:
371         * Auto-detect Intel Sandy Bridge Core i7-3xxx & Xeon E7 Westmere-EX.
372         * Test alpha=Nan in dscale.
373         * Fixed a SEGFAULT bug in samax on x86 windows.
374
375 ====================================================================
376 Version 0.1.0
377 23-Mar-2012
378 common:
379         * Set soname of shared library on Linux.
380         * Added LIBNAMESUFFIX flag in Makefile.rule. The user can use
381           this flag to control the library name, e.g. libopenblas.a,
382           libopenblas_ifort.a or libopenblas_omp.a.
383         * Added GEMM_MULTITHREAD_THRESHOLD flag in Makefile.rule.
384           The lib use single thread in GEMM function with small matrices.
385 x86/x86_64:
386         * Used GEMV SSE/SSE2 kernels on x86 32-bit.
387         * Exported CBLAS functions in Windows DLL.
388 MIPS64:
389         * Completed Level-3 BLAS optimization on Loongson 3A CPU.
390         * Improved GEMV performance on Loongson 3A CPU.
391         * Improved Level-3 BLAS performance on Loongson 3B CPU. (EXPERIMENT)
392
393 ====================================================================
394 Version 0.1 alpha2.5
395 19-Feb-2012
396 common:
397         * Fixed missing "#include <sched.h>" bug on Mac OS X.
398           Thank Mike Nolta for the patch.
399         * Upgraded LAPACK to 3.4.0 version
400         * Fixed a bug on Mac OS X. Don't require SystemStubs on OS X.
401           SystemStubs does not exist on Lion. Thank Stefan Karpinski.
402         * Improved README with using OpenMP. Check the internal threads
403           count less than or equal to omp_get_max_threads()
404 x86/x86_64:
405         * Auto-detect Intel Core i6/i7 (Sandy Bridge) CPU with Nehalem assembly kernels
406         * Fixed some bugs on MingW 64-bit including zgemv, cdot, zdot.
407
408 ====================================================================
409 Version 0.1 alpha2.4
410 18-Sep-2011
411 common:
412         * Fixed a bug about installation. The header file "fblas77.h"
413           works fine now.
414         * Fixed #61 a building bug about setting TARGET and DYNAMIC_ARCH.
415         * Try to handle absolute path of shared library in OSX. (#57)
416           Thank Dr Kane O'Donnell.
417         * Changed the installation folder layout to $(PREFIX)/include and
418           $(PREFIX)/lib
419
420 x86/x86_64:
421         * Fixed #58 zdot/xdot SEGFAULT bug with GCC-4.6 on x86. According
422           to i386 calling convention, The callee should remove the first
423           hidden parameter.Thank Mr. John for this patch.
424
425 ====================================================================
426 Version 0.1 alpha2.3
427 5-Sep-2011
428
429 x86/x86_64:
430         *  Added DTB_ENTRIES into dynamic arch setting parameters. Now,
431            it can read DTB_ENTRIES on runtime. (Refs issue #55 on github)
432
433 ====================================================================
434 Version 0.1 alpha2.2
435 14-Jul-2011
436
437 common:
438         * Fixed a building bug when DYNAMIC_ARCH=1 & INTERFACE64=1.
439           (Refs issue #44 on github)
440
441 ====================================================================
442 Version 0.1 alpha2.1
443 28-Jun-2011
444
445 common:
446         * Stop the build and output the error message when detecting
447           fortran compiler failed. (Refs issue #42 on github)
448
449 ====================================================================
450 Version 0.1 alpha2
451 23-Jun-2011
452
453 common:
454         * Fixed blasint undefined bug in <cblas.h> file. Other software
455           could include this header successfully(Refs issue #13 on github)
456         * Fixed the SEGFAULT bug on 64 cores. On SMP server, the number
457           of CPUs or cores should be less than or equal to 64.(Refs issue #14
458           on github)
459         * Support "void goto_set_num_threads(int num_threads)" and "void
460           openblas_set_num_threads(int num_threads)" when USE_OPENMP=1
461         * Added extern "C" to support C++. Thank Tasio for the patch(Refs
462           issue #21 on github)
463         * Provided an error message when the arch is not supported.(Refs
464           issue #19 on github)
465         * Fixed issue #23. Fixed a bug of f_check script about generating link flags.
466         * Added openblas_set_num_threads for Fortran.
467         * Fixed #25 a wrong result of rotmg.
468         * Fixed a bug about detecting underscore prefix in c_check.
469         * Print the wall time (cycles) with enabling FUNCTION_PROFILE
470         * Fixed #35 a build bug with NO_LAPACK=1 & DYNAMIC_ARCH=1
471         * Added install target. You can use "make install". (Refs #20)
472
473
474 x86/x86_64:
475         * Fixed #28 a wrong result of dsdot on x86_64.
476         * Fixed #32 a SEGFAULT bug of zdotc with gcc-4.6.
477         * Fixed #33 ztrmm bug on Nehalem.
478         * Work-around #27 the low performance axpy issue with small imput size & multithreads.
479
480 MIPS64:
481         * Fixed #28 a wrong result of dsdot on Loongson3A/MIPS64.
482         * Optimized single/double precision BLAS Level3 on Loongson3A/MIPS64. (Refs #2)
483         * Optimized single/double precision axpy function on Loongson3A/MIPS64. (Refs #3)
484
485 ====================================================================
486 Version 0.1 alpha1
487 20-Mar-2011
488
489 common:
490         * Support "make  NO_LAPACK=1" to build the library without
491           LAPACK functions.
492         * Fixed randomly SEGFAULT when nodemask==NULL with above Linux 2.6.34.
493           Thank Mr.Ei-ji Nakama providing this patch. (Refs issue #12 on github)
494         * Added DEBUG=1 rule in Makefile.rule to build debug version.
495         * Disable compiling quad precision in reference BLAS library(netlib BLAS).
496         * Added unit testcases in utest/ subdir. Used  CUnit framework.
497         * Supported OPENBLAS_* & GOTO_* environment variables (Pleas see README)
498         * Imported GotoBLAS2 1.13 BSD version
499
500 x86/x86_64:
501         * On x86 32bits, fixed a bug in zdot_sse2.S line 191. This would casue
502           zdotu & zdotc failures. Instead, work-around it. (Refs issue #8 #9 on github)
503         * Modified ?axpy functions to return same netlib BLAS results
504           when incx==0 or incy==0 (Refs issue #7 on github)
505         * Modified ?swap functions to return same netlib BLAS results
506           when incx==0 or incy==0 (Refs issue #6 on github)
507         * Modified ?rot functions to return same netlib BLAS results
508           when incx==0 or incy==0 (Refs issue #4 on github)
509         * Detect Intel Westmere,Intel Clarkdale and Intel Arrandale
510           to use Nehalem codes.
511         * Fixed a typo bug about compiling dynamic ARCH library.
512 MIPS64:
513         * Improve daxpy performance on ICT Loongson 3A.
514         * Supported ICT Loongson 3A CPU (Refs issue #1 on github)
515 ====================================================================