Merge branch 'develop' into issue2227
[platform/upstream/openblas.git] / Changelog.txt
1 OpenBLAS ChangeLog
2 ====================================================================
3 Version 0.3.7
4 11-Aug 2019
5
6 common:
7         * having the gmake special variables TARGET_ARCH or TARGET_MACH
8           defined no longer causes build failures in ctest or utest
9         * defining NO_AFFINITY or USE_TLS to 0 in gmake builds no longer
10           has the same effect as setting them to 1
11         * a new test program was added to allow checking the library for
12           thread safety
13         * a new option USE_LOCKING was added to ensure thread safety when
14           OpenBLAS itself is built without multithreading but will be 
15           called from multiple threads.
16         * a build failure on Linux with glibc versions earlier than 2.5
17           was fixed
18         * a runtime error with CPU enumeration (and NO_AFFINITY not set)
19           on glibc 2.6 was fixed
20         * NO_AFFINITY was added to the CMAKE options (and defaults to being
21           active on Linux, as in the gmake builds)
22
23 x86_64:
24         * the build-time logic for detection of AVX512 availability in
25           the processor and compiler was fixed
26         * gmake builds on OSX now set the internal name of the library to 
27           libopenblas.0.dylib (consistent with CMAKE)
28         * the Haswell DGEMM kernel received a significant speedup through
29           improved prefetch and load instructions
30         * performance of DGEMM, DTRMM, DTRSM and ZDOT on Zen/Zen2 was markedly
31           increased by avoiding vpermpd instructions
32         * the SKYLAKEX (AVX512) DGEMM helper functions have now been disabled
33           to fix remaining errors in DGEMM, DSYMM and DTRMM
34
35 ## POWER:
36         * added support for building on FreeBSD/powerpc64 and FreeBSD/ppc970
37         * added optimized kernels for POWER9 SGEMM and STRMM
38
39 ## ARMV7:
40         * fixed the softfp implementations of xAMAX and IxAMAX
41         * removed the predefined -march= flags on both ARMV5 and ARMV6 as
42           they were appropriate for only a subset of platforms
43
44 ====================================================================
45 Version 0.3.6
46 29-Apr-2019
47
48 common:
49         * the build tools now check that a given cpu TARGET is actually valid
50         * the build-time check of system features (c_check) has been made
51           less dependent on particular perl features (this should mainly
52           benefit building on Windows)
53         * several problem with the ReLAPACK integration were fixed,
54           including INTERFACE64 support and building a shared library
55         * building with CMAKE on BSD systems was improved
56         * a non-absolute SUM function was added based on the
57           existing optimized code for ASUM
58         * CBLAS interfaces to the IxMIN and IxMAX functions were added
59         * a name clash between LAPACKE and BOOST headers was resolved
60         * CMAKE builds with OpenMP failed to include the appropriate getrf_parallel
61           kernels
62         * a crash on thread (key) deletion with the USE_TLS=1 memory management
63           option was fixed
64         * restored several earlier fixes, in particular for OpenMP performance,
65           building on BSD, and calling fork on CYGWIN, which had inadvertently
66           been dropped in the 0.3.3 rewrite of the memory management code.
67
68 x86_64:
69         * the AVX512 DGEMM kernel has been disabled again due to unsolved problems
70         * building with old versions of MSVC was fixed
71         * it is now possible to build a static library on Windows with CMAKE
72         * accessing environment variables on CYGWIN at run time was fixed
73         * the CMAKE build system now recognizes 32bit userspace on 64bit hardware
74         * Intel "Denverton" atom and Hygon "Dhyana" zen CPUs are now autodetected
75         * building for DYNAMIC_ARCH with a DYNAMIC_LIST of targets is now supported
76           with CMAKE as well
77         * building for DYNAMIC_ARCH with GENERIC as the default target is now supported
78         * a buffer overflow in the SSE GEMM kernel for Intel Nano targets was fixed
79         * assembly bugs involving undeclared modification of input operands were fixed
80           in the AXPY, DOT, GEMV, GER, SCAL, SYMV and TRSM microkernels for Nehalem,
81           Sandybridge, Haswell, Bulldozer and Piledriver. These would typically cause
82           test failures or segfaults when compiled with recent versions of gcc from 8 onward.
83         * a similar bug was fixed in the blas_quickdivide code used to split workloads
84           in most functions
85         * a bug in the IxMIN implementation for the GENERIC target made it return the result of IxMAX
86         * fixed building on SkylakeX systems when either the compiler or the (emulated) operating
87           environment does not support AVX512
88         * improved GEMM performance on ZEN targets
89
90 x86:
91         * build failures caused by the recently added checks for AVX512 were fixed
92         * an inline assembly bug involving undeclared modification of an input argument was
93           fixed in the blas_quickdivide code used to split workloads in most functions
94         * a bug in the IMIN implementation for the GENERIC target made it return the result of IMAX
95
96 MIPS32:
97         * a bug in the IMIN implementation made it return the result of IMAX
98
99 POWER:
100         * single precision BLAS1/2 functions have received optimized POWER8 kernels
101         * POWER9 is now a separate target, with an optimized DGEMM/DTRMM kernel
102         * building on PPC970 systems under OSX Leopard or Tiger is now supported
103         * out-of-bounds memory accesses in the gemm_beta microkernels were fixed
104         * building a shared library on AIX is now supported for POWER6
105         * DYNAMIC_ARCH support has been added for POWER6 and newer
106
107 ARMv7:
108         * corrected xDOT behaviour with zero INC_X or INC_Y
109         * a bug in the IMIN implementation made it return the result of IMAX
110
111 ARMv8:
112         * added support for HiSilicon TSV110 cpus
113         * the CMAKE build system now recognizes 32bit userspace on 64bit hardware
114         * cross-compilation with CMAKE now works again
115         * a bug in the IMIN implementation made it return the result of IMAX
116         * ARMV8 builds with the BINARY=32 option are now automatically handled as ARMV7
117
118 IBM Z:
119         * optimized microkernels for single precicion BLAS1/2 functions have been added
120           for both Z13 and Z14
121
122 ====================================================================
123 Version 0.3.5
124 31-Dec-2018
125
126 common:
127         * loop unrolling in TRMV has been enabled again.
128         * A domain error in the thread workload distribution for SYRK
129           has been fixed.
130         * gmake builds will now automatically add -fPIC to the build
131           options if the platform requires it.
132         * a pthreads key leakage (and associate crash on dlclose) in
133           the USE_TLS codepath was fixed.
134         * building of the utest cases on systems that do not provide
135           an implementation of complex.h was fixed.
136           
137 x86_64:
138         * the SkylakeX code was changed to compile on OSX.
139         * unwanted application of the -march=skylake-avx512 option
140           to the common code parts of a DYNAMIC_ARCH build was fixed.
141         * improved performance of SGEMM for small workloads on Skylake X.
142         * performance of SGEMM and DGEMM was improved on Haswell.
143
144 ARMV8:
145         * a configuration error that broke the CNRM2 kernel was corrected.
146         * compilation of the GEMM kernels with CMAKE was fixed.
147         * DYNAMIC_ARCH builds are now available with CMAKE as well.
148         * using CMAKE for cross-compilation to the new cpu TARGETs
149           introduced in 0.3.4 now works.
150           
151 POWER:
152         * a problem in cpu autodetection for AIX has been corrected.
153         
154 ====================================================================
155 Version 0.3.4
156 02-Dec-2018
157
158 common:
159         * the new, experimental thread-local memory allocation had 
160           inadvertently been left enabled for gmake builds in 0.3.3
161           despite the announcement. It is now disabled by default, and
162           single-threaded builds will keep using the old allocator even
163           if the USE_TLS option is turned on.
164         * OpenBLAS will now provide enough buffer space for at least 50
165           threads by default.
166         * The output of openblas_get_config() now contains the version
167           number.
168         * A serious thread safety bug in GEMV operation with small M and
169           large N size has been fixed.
170         * The code will now automatically call blas_thread_init after a
171           fork if needed before handling a call to openblas_set_num_threads
172         * Accesses to parallelized level3 functions from multiple callers
173           are now serialized to avoid thread races (unless using OpenMP).
174           This should provide better performance than the known-threadsafe
175           (but non-default) USE_SIMPLE_THREADED_LEVEL3 option.
176         * When building LAPACK with gfortran, -frecursive is now (again)
177           enabled by default to ensure correct behaviour.
178         * The OpenBLAS version cblas.h now supports both CBLAS_ORDER and
179           CBLAS_LAYOUT as the name of the matrix row/column order option.
180         * Externally set LDFLAGS are now passed through to the final compile/link
181           steps to facilitate setting platform-specific linker flags.
182         * A potential race condition during the build of LAPACK (that would 
183           usually manifest itself as a failure to build TESTING/MATGEN) has been 
184           fixed.
185         * xHEMV has been changed to stay single-threaded for small input sizes
186           where the overhead of multithreading exceeds any possible gains
187         * CSWAP and ZSWAP have been limited to a single thread except on ARMV8 or
188           ThunderX hardware with sizable input.
189         * Linker flags for the PGI compiler have been updated
190         * Behaviour of AXPY with zero increments is now handled in the C interface,
191           correcting the result on at least Intel Atom.
192         * The result matrix from calling SGELSS with an all-zero input matrix is 
193           now zeroed completely.
194           
195 x86_64:
196         * Autodetection of AMD Ryzen2 has been fixed (again).
197         * CMAKE builds now support labeling of an INTERFACE64=1 build of
198           the library with the _64 suffix.
199         * AVX512 version of DGEMM has been added and the AVX512 SGEMM kernel
200           has been sped up by rewriting with C intrinsics
201         * Fixed compilation on RHEL5/CENTOS5 (issue with typename __WAIT_STATUS)
202         
203 POWER:
204         * added support for building on AIX (with gcc and GNU tools from AIX Toolbox).
205         * CPU type detection has been implemented for AIX.
206         * CPU type detection has been fixed for NETBSD.
207         
208 MIPS64:
209         * AXPY on LOONGSON3A has been corrected to pass "zero increment" utest.
210         * DSDOT on LOONGSON3A has been fixed.
211         * the SGEMM microkernel has been hardened against potential data loss.
212         
213 ARMV8:
214         * DYNAMic_ARCH support is now available for 64bit ARM
215         * cross-compiling for ARMV8 under iOS now works.
216         * cpu-specific code has been rearranged to make better use of both
217           hardware commonalities and model-specific compiler optimizations.
218         * XGENE1 has been removed as a TARGET, superseded by the improved generic
219           ARMV8 support.
220         
221 ARMV7:
222         * Older assembly mnemonics have been converted to UAL form to allow
223           building with clang 7.0
224         * Cross compiling LAPACKE for Android has been fixed again (broken by
225           update to LAPACK 3.7.0 some while ago).  
226           
227 ====================================================================
228 Version 0.3.3
229 31-Aug-2018
230
231 common:
232         * thread memory allocation has been switched back to the method
233           used before version 0.3.1 due to unexpected problems caused by
234           the new code under some circumstances. A new compile-time option
235           USE_TLS has been added to enable the new code, and it is hoped
236           that this can become the default again in the next version.
237         * LAPAck PR272 has been integrated, which fixes spurious errors
238           in DSYEVR and related functions caused by missing conversion 
239           from ILAENV to ILAENV_2STAGE in several _2stage routines.
240         * the cmake-generated OpenBLASConfig.cmake now uses correct case
241           for the name of the library
242         * added support for Haiku OS  
243
244 x86_64:
245         * added AVX512 implementations of SDOT, DDOT, SAXPY, DAXPY,
246           DSCAL, DGEMVN and DSYMVL 
247         * added a workaround for a cygwin issue that prevented compilation
248           of AVX512 code
249           
250 IBM Z:
251         * added autodetection of Z14
252         * fixed TRMM errors in the generic target
253         
254 ====================================================================
255 Version 0.3.2
256 30-Jul-2018
257
258 common:
259         * fixes for regressions caused by the rewrite of the thread
260           initialization code in 0.3.1
261
262 POWER:
263         * fixed cpu autodetection for the BSDs
264
265 MIPS64:
266         * fixed utest errors in AXPY, DSDOT, ROT and SWAP
267
268 x86_64:
269         * added autodetection of AMD Ryzen 2
270         * fixed build with older versions of MSVC
271
272 ====================================================================
273 Version 0.3.1
274 01-Jul-2018
275
276 common:
277         * rewritten thread initialization code with significantly reduced overhead
278         * added CBLAS interfaces to the IxAMIN BLAS extension functions
279         * fixed the lapack-test target
280         * CMAKE builds now create an OpenBLASConfig.cmake file
281         * ZAXPY now uses a single thread for small input sizes
282         * the LAPACK code was updated from Reference-LAPACK/lapack#253
283           (fixing LAPACKE interfaces to Aasen's functions)
284
285 POWER:
286         * corrected CROT and ZROT behaviour with zero INC_X
287
288 ARMV7:
289         * corrected xDOT behaviour with zero INC_X or INC_Y
290
291 x86_64:
292         * retired some older targets of DYNAMIC_ARCH builds to a new option DYNAMIC_OLDER,
293           this affects PENRYN,DUNNINGTON,OPTERON,OPTERON_SSE3,BOBCAT,ATOM and NANO
294           (which will still be supported via the slower PRESCOTT kernels when this option is not set)
295         * added an option DYNAMIC_LIST that (used in conjunction with DYNAMIC_ARCH) allows to 
296           specify the list of x86_64 targets to include. Any target not on the list will be supported 
297           by the Sandybridge or Nehalem kernels if available, or by Prescott.
298         * improved SWITCH_RATIO on Haswell for increased GEMM throughput
299         * added initial support for Intel Skylake X, including an AVX512 SGEMM kernel
300         * added autodetection of Intel Cannon Lake series as Skylake X
301         * added a default L2 cache size for hypervisors that return zero here (Chromebook)
302         * fixed a name clash with recent Windows10 headers that broke the build with (at least)
303           recent mingw from MSYS2
304         * fixed a link error in mixed clang/gfortran builds with OpenMP
305         * updated the OSX deployment target to 10.8
306         * switched on parallel make for builds on MS Windows by default
307
308 x86:
309         * fixed SSWAP and DSWAP behaviour with zero INC_X and INC_Y
310
311 ====================================================================
312 Version 0.3.0
313 23-May-2108
314
315 common:
316         * fixed some more thread race and locking bugs
317         * added preliminary support for calling an OpenMP build of the library from multiple threads
318         * removed performance impact of thread locks added in 0.2.20 on OpenMP code
319         * general code cleanup 
320         * optimized DSDOT implementation
321         * improved thread distribution for GEMM
322         * corrected IMATCOPY/OMATCOPY implementation
323         * fixed out-of-bounds accesses in the multithreaded xBMV/xPMV and SYMV implementations
324         * cmake build improvements
325         * pkgconfig file now contains build options
326         * openblas_get_config() now reports USE_OPENMP and NUM_THREADS settings used for the build
327         * corrections and improvements for systems with more than 64 cpus
328         * LAPACK code updated to 3.8.0 including later fixes
329         * added ReLAPACK, a recursive implementation of several LAPACK functions
330         * Rewrote ROTMG to handle cases that the netlib code failed to address
331         * Disabled (broken) multithreading code for xTRMV
332         * corrected prototypes of complex CBLAS functions to make our cblas.h match the generally accepted standard
333         * shared memory access failures on startup are now handled more gracefully
334         * restored utests from earlier releases (and made them pass on all affected systems)
335
336 SPARC:
337         * several fixes for cpu autodetection
338
339 POWER:
340         * corrected vector register overwriting in several Power8 kernels
341         * optimized additional BLAS functions
342
343 ARM:
344         * added support for CortexA53 and A72 
345         * added autodetection for ThunderX2T99
346         * made most optimized kernels the default for generic ARMv8 targets 
347
348 x86_64:
349         * parallelized DDOT kernel for Haswell
350         * changed alignment directives in assembly kernels to boost performance on OSX
351         * fixed register handling in the GEMV microkernels (bug exposed by gcc7)
352         * added support for building on OpenBSD and Dragonfly 
353         * updated compiler options to work with Intel release 2018
354         * support fully optimized build with clang/flang on Microsoft Windows
355         * fixed building on AIX
356
357 IBM Z:
358         * added optimized BLAS 1/2 functions
359
360 MIPS:
361         * fixed cpu autodetection helper code
362         * added mips32 1004K cpu (Mediatek MT7621 and similar SoC)
363         * added mips64 I6500 cpu
364
365 ====================================================================
366 Version 0.2.20
367 24-Jul-2017
368
369 common:
370         * Improved CMake support
371         * Fixed several thread race and locking bugs
372         * Fixed default LAPACK optimization level
373         * Updated LAPACK to 3.7.0
374         * Added ReLAPACK (https://github.com/HPAC/ReLAPACK, make BUILD_RELAPACK=1)
375
376 POWER:
377         * Optimizations for Power9
378         * Fixed several Power8 assembly bugs
379
380 ARM:
381         * New optimized Vulcan and ThunderX2T99 targets
382         * Support for ARMV7 SOFT_FP ABI (make ARM_SOFTFP_ABI=1)
383         * Detect all cpu cores including offline ones
384         * Fix compilation with CLANG
385         * Support building a shared library for Android
386
387 MIPS:
388         * Fixed several threading issues
389         * Fix compilation with CLANG
390
391 x86_64:
392         * Detect Intel Bay Trail and Apollo Lake
393         * Detect Intel Sky Lake and Kaby Lake
394         * Detect Intel Knights Landing
395         * Detect AMD A8, A10, A12 and Ryzen
396         * Support 64bit builds with Visual Studio
397         * Fix building with Intel and PGI compilers
398         * Fix building with MINGW and TDM-GCC
399         * Fix cmake builds for Haswell and related cpus
400         * Fix building for Sandybridge with CLANG 3.9
401         * Add support for the FLANG compiler
402
403 IBM Z:
404         * New target z13 with BLAS3 optimizations
405
406 ====================================================================
407 Version 0.2.19
408 1-Sep-2016
409 common:
410         * Improved cross compiling.
411         * Fix the bug on musl libc.
412
413 POWER:
414         * Optimize BLAS on Power8
415         * Fixed Julia+OpenBLAS bugs on Power8
416
417 MIPS:
418         * Optimize BLAS on MIPS P5600 and I6400 (Thanks, Shivraj Patil, Kaustubh Raste)
419
420 ARM:
421         * Improved on ARM Cortex-A57. (Thanks, Ashwin Sekhar T K)
422
423
424 ====================================================================
425 Version 0.2.18
426 12-Apr-2016
427 common:
428         * If you set MAKE_NB_JOBS flag less or equal than zero,
429           make will be without -j.
430
431 x86/x86_64:
432         * Support building Visual Studio static library. (#813, Thanks, theoractice)
433         * Fix bugs to pass buidbot CI tests (http://build.openblas.net)
434
435 ARM:
436         * Provide DGEMM 8x4 kernel for Cortex-A57 (Thanks, Ashwin Sekhar T K)
437
438 POWER:
439         * Optimize S and C BLAS3 on Power8
440         * Optimize BLAS2/1 on Power8
441
442 ====================================================================
443 Version 0.2.17
444 20-Mar-2016
445 common:
446         * Enable BUILD_LAPACK_DEPRECATED=1 by default.
447
448 ====================================================================
449 Version 0.2.16
450 15-Mar-2016
451 common:
452         * Avoid potential getenv segfault. (#716)
453         * Import LAPACK svn bugfix #142-#147,#150-#155
454
455 x86/x86_64:
456         * Optimize c/zgemv for AMD Bulldozer, Piledriver, Steamroller
457         * Fix bug with scipy linalg test.
458
459 ARM:
460         * Improve DGEMM for ARM Cortex-A57. (Thanks, Ashwin Sekhar T K)
461
462 POWER:
463         * Optimize D and Z BLAS3 functions for Power8.
464
465 ====================================================================
466 Version 0.2.16.rc1
467 23-Feb-2016
468 common:
469         * Upgrade LAPACK to 3.6.0 version.
470           Add BUILD_LAPACK_DEPRECATED option in Makefile.rule to build
471           LAPACK deprecated functions.
472         * Add MAKE_NB_JOBS option in Makefile.
473           Force number of make jobs.This is particularly
474           useful when using distcc. (#735. Thanks, Jerome Robert.)
475         * Redesign unit test. Run unit/regression test at every build (Travis-CI and Appveyor).
476         * Disable multi-threading for small size swap and ger. (#744. Thanks, Jerome Robert)
477         * Improve small zger, zgemv, ztrmv using stack alloction (#727. Thanks, Jerome Robert)
478         * Let openblas_get_num_threads return the number of active threads. 
479           (#760. Thanks, Jerome Robert)
480         * Support illumos(OmniOS). (#749. Thanks, Lauri Tirkkonen)
481         * Fix LAPACK Dormbr, Dormlq bug. (#711, #713. Thanks, Brendan Tracey)
482         * Update scipy benchmark script. (#745. Thanks, John Kirkham)
483
484 x86/x86_64:
485         * Optimize trsm kernels for AMD Bulldozer, Piledriver, Steamroller.
486         * Detect Intel Avoton.
487         * Detect AMD Trinity, Richland, E2-3200.
488         * Fix gemv performance bug on Mac OSX Intel Haswell.
489         * Fix some bugs with CMake and Visual Studio
490
491 ARM:
492         * Support and optimize Cortex-A57 AArch64.
493           (#686. Thanks, Ashwin Sekhar TK)
494         * Fix Android build on ARMV7 (#778. Thanks, Paul Mustiere)
495         * Update ARMV6 kernels.
496
497 POWER:
498         * Fix detection of POWER architecture
499           (#684. Thanks, Sebastien Villemot)
500
501 ====================================================================
502 Version 0.2.15
503 27-Oct-2015
504 common:
505         * Support cmake on x86/x86-64. Natively compiling on MS Visual Studio.
506           (experimental. Thank Hank Anderson for the initial cmake porting work.)
507           
508           On Linux and Mac OSX, OpenBLAS cmake supports assembly kernels.
509           e.g. cmake .
510                make
511                make test (Optional)
512
513           On Windows MS Visual Studio, OpenBLAS cmake only support C kernels.
514           (OpenBLAS uses AT&T style assembly, which is not supported by MSVC.)
515           e.g. cmake -G "Visual Studio 12 Win64" .
516                Open OpenBLAS.sln and build.
517           
518         * Enable MAX_STACK_ALLOC flags by default.
519           Improve ger and gemv for small matrices.
520         * Improve gemv parallel with small m and large n case.
521         * Improve ?imatcopy when lda==ldb (#633. Thanks, Martin Koehler)
522         * Add vecLib benchmarks (#565. Thanks, Andreas Noack.)
523         * Fix LAPACK lantr for row major matrices (#634. Thanks, Dan Kortschak)
524         * Fix LAPACKE lansy (#640. Thanks, Dan Kortschak)
525         * Import bug fixes for LAPACKE s/dormlq, c/zunmlq 
526         * Raise the signal when pthread_create fails (#668. Thanks, James K. Lowden)
527         * Remove g77 from compiler list.
528         * Enable AppVeyor Windows CI.
529
530 x86/x86-64:
531         * Support pure C generic kernels for x86/x86-64.
532         * Support Intel Boardwell and Skylake by Haswell kernels.
533         * Support AMD Excavator by Steamroller kernels.
534         * Optimize s/d/c/zdot for Intel SandyBridge and Haswell.
535         * Optimize s/d/c/zdot for AMD Piledriver and Steamroller.
536         * Optimize s/d/c/zapxy for Intel SandyBridge and Haswell.
537         * Optimize s/d/c/zapxy for AMD Piledriver and Steamroller.
538         * Optimize d/c/zscal for Intel Haswell, dscal for Intel SandyBridge.
539         * Optimize d/c/zscal for AMD Bulldozer, Piledriver and Steamroller.
540         * Optimize s/dger for Intel SandyBridge.
541         * Optimize s/dsymv for Intel SandyBridge.
542         * Optimize ssymv for Intel Haswell.
543         * Optimize dgemv for Intel Nehalem and Haswell.
544         * Optimize dtrmm for Intel Haswell.
545
546 ARM:
547         * Support Android NDK armeabi-v7a-hard ABI (-mfloat-abi=hard)
548           e.g. make HOSTCC=gcc CC=arm-linux-androideabi-gcc NO_LAPACK=1 TARGET=ARMV7
549         * Fix lock, rpcc bugs (#616, #617. Thanks, Grazvydas Ignotas)
550 POWER:
551         * Support ppc64le platform (ELF ABI v2. #612. Thanks, Matthew Brandyberry.)
552         * Support POWER7/8 by POWER6 kernels. (#612. Thanks, Fábio Perez.)
553
554 ====================================================================
555 Version 0.2.14
556 24-Mar-2015
557 common:
558         * Improve OpenBLASConfig.cmake. (#474, #475. Thanks, xantares.)
559         * Improve ger and gemv for small matrices by stack allocation.
560           e.g. make -DMAX_STACK_ALLOC=2048 (#482. Thanks, Jerome Robert.)
561         * Introduce openblas_get_num_threads and openblas_get_num_procs.
562           (#497. Thanks, Erik Schnetter.)
563         * Add ATLAS-style ?geadd function. (#509. Thanks, Martin Köhler.)
564         * Fix c/zsyr bug with negative incx. (#492.)
565         * Fix race condition during shutdown causing a crash in
566           gotoblas_set_affinity(). (#508. Thanks, Ton van den Heuvel.)
567
568 x86/x86-64:
569         * Support AMD Streamroller.
570
571 ARM:
572         * Add Cortex-A9 and Cortex-A15 targets.
573
574 ====================================================================
575 Version 0.2.13
576 3-Dec-2014
577 common:
578         * Add SYMBOLPREFIX and SYMBOLSUFFIX makefile options
579           for adding a prefix or suffix to all exported symbol names
580           in the shared library.(#459, Thanks Tony Kelman)
581         * Provide OpenBLASConfig.cmake at installation.
582         * Fix Fortran compiler detection on FreeBSD.
583           (#470, Thanks Mike Nolta)
584
585
586 x86/x86-64:
587         * Add generic kernel files for x86-64. make TARGET=GENERIC
588         * Fix a bug of sgemm kernel on Intel Sandy Bridge.
589         * Fix c_check bug on some amd64 systems. (#471, Thanks Mike Nolta)
590
591 ARM:
592         * Support APM's X-Gene 1 AArch64 processors.
593           Optimize trmm and sgemm. (#465, Thanks Dave Nuechterlein)
594
595 ====================================================================
596 Version 0.2.12
597 13-Oct-2014
598 common:
599         * Added CBLAS interface for ?omatcopy and ?imatcopy.
600         * Enable ?gemm3m functions.
601         * Added benchmark for ?gemm3m.
602         * Optimized multithreading lower limits.
603         * Disabled SYMM3M and HEMM3M functions 
604           because of segment violations.
605
606 x86/x86-64:
607         * Improved axpy and symv performance on AMD Bulldozer.
608         * Improved gemv performance on modern Intel and AMD CPUs.
609
610 ====================================================================
611 Version 0.2.11
612 18-Aug-2014
613 common:
614         * Added some benchmark codes.
615         * Fix link error on Linux/musl.(Thanks Isaac Dunham)
616
617 x86/x86-64:
618         * Improved s/c/zgemm performance for Intel Haswell.
619         * Improved s/d/c/zgemv performance.
620         * Support the big numa machine.(EXPERIMENT)
621
622 ARM:
623         * Fix detection when cpuinfo uses "Processor". (Thanks Isaiah)
624
625 ====================================================================
626 Version 0.2.10
627 16-Jul-2014
628 common:
629         * Added BLAS extensions as following.
630           s/d/c/zaxpby, s/d/c/zimatcopy, s/d/c/zomatcopy.
631         * Added OPENBLAS_CORETYPE environment for dynamic_arch. (a86d34)
632         * Added NO_AVX2 flag for old binutils. (#401)
633         * Support outputing the CPU corename on runtime.(#407)
634         * Patched LAPACK to fix bug 114, 117, 118. 
635           (http://www.netlib.org/lapack/bug_list.html)
636         * Disabled ?gemm3m for a work-around fix. (#400)
637 x86/x86-64:
638         * Fixed lots of bugs for optimized kernels on sandybridge,Haswell, 
639           bulldozer, and piledriver.
640           https://github.com/xianyi/OpenBLAS/wiki/Fixed-optimized-kernels-To-do-List
641
642 ARM:
643         * Improved LAPACK testing.
644
645 ====================================================================
646 Version 0.2.9
647 10-Jun-2014
648 common:
649         * Improved the result for LAPACK testing. (#372)
650         * Installed DLL to prefix/bin instead of prefix/lib. (#366)
651         * Build import library on Windows.(#374)
652 x86/x86-64:
653         * To improve LAPACK testing, we fallback some kernels. (#372)
654         https://github.com/xianyi/OpenBLAS/wiki/Fixed-optimized-kernels-To-do-List
655
656 ====================================================================
657 Version 0.2.9.rc2
658 06-Mar-2014
659 common:
660         * Added OPENBLAS_VERBOSE environment variable.(#338)
661         * Make OpenBLAS thread-pool resilient to fork via pthread_atfork.
662           (#294, Thank Olivier Grisel)
663         * Rewrote rotmg
664         * Fixed sdsdot bug.
665 x86/x86-64:
666         * Detect Intel Haswell for new Macbook.
667
668 ====================================================================
669 Version 0.2.9.rc1
670 13-Jan-2013
671 common:
672         * Update LAPACK to 3.5.0 version
673         * Fixed compatiable issues with Clang and Pathscale compilers.
674
675 x86/x86-64:
676         * Optimization on Intel Haswell.
677         * Enable optimization kernels on AMD Bulldozer and Piledriver.
678
679 ARM:
680         * Support ARMv6 and ARMv7 ISA.
681         * Optimization on ARM Cortex-A9.
682
683 ====================================================================
684 Version 0.2.8
685 01-Aug-2013
686 common:
687         * Support Open64 5.0. (#266)
688         * Add executable stack markings. (#262, Thank Sébastien Fabbro)
689         * Respect user's LDFLAGS (Thank Sébastien Fabbro)
690
691 x86/x86-64:
692         * Rollback bulldozer and piledriver kernels to barcelona kernels (#263)
693           We will fix the compuational error bug in bulldozer and piledriver kernels.
694
695 ====================================================================
696 Version 0.2.7
697 20-Jul-2013
698 common:
699         * Support LSB (Linux Standard Base) 4.1.
700           e.g. make CC=lsbcc
701         * Include LAPACK 3.4.2 source codes to the repo.
702           Avoid downloading at compile time.
703         * Add NO_PARALLEL_MAKE flag to disable parallel make.
704         * Create openblas_get_parallel to retrieve information which
705           parallelization model is used by OpenBLAS. (Thank grisuthedragon)
706         * Detect LLVM/Clang compiler. The default compiler is Clang on Mac OS X.
707         * Change LIBSUFFIX from .lib to .a on windows.
708         * A work-around for dtrti_U single thread bug. Replace it with LAPACK codes. (#191)
709
710 x86/x86-64:
711         * Optimize c/zgemm, trsm, dgemv_n, ddot, daxpy, dcopy on
712           AMD Bulldozer. (Thank Werner Saar)
713         * Add Intel Haswell support (using Sandybridge optimizations).
714           (Thank Dan Luu)
715         * Add AMD Piledriver support (using Bulldozer optimizations).
716         * Fix the computational error in zgemm avx kernel on
717           Sandybridge. (#237)
718         * Fix the overflow bug in gemv.
719         * Fix the overflow bug in multi-threaded BLAS3, getrf when NUM_THREADS
720           is very large.(#214, #221, #246).
721 MIPS64:
722         * Support loongcc (Open64 based) compiler for ICT Loongson 3A/B.
723
724 Power:
725         * Support Power7 by old Power6 kernels. (#220)
726
727 ====================================================================
728 Version 0.2.6
729 2-Mar-2013
730 common:
731         * Improved OpenMP performance slightly. (d744c9)
732         * Improved cblas.h compatibility with Intel MKL.(#185)
733         * Fixed the overflowing bug in single thread cholesky factorization.
734         * Fixed the overflowing buffer bug of multithreading hbmv and sbmv.(#174)
735
736 x86/x86-64:
737         * Added AMD Bulldozer x86-64 S/DGEMM AVX kernels. (Thank Werner Saar)
738           We will tune the performance in future.
739         * Auto-detect Intel Xeon E7540.
740         * Fixed the overflowing buffer bug of gemv. (#173)
741         * Fixed the bug of s/cdot about invalid reading NAN on x86_64. (#189)
742
743 MIPS64:
744
745 ====================================================================
746 Version 0.2.5
747 26-Nov-2012
748 common:
749         * Added NO_SHARED flag to disable generating the shared library.
750         * Compile LAPACKE with ILP64 modle when INTERFACE64=1 (#158)
751         * Export LAPACK 3.4.2 symbols in shared library. (#147)
752         * Only detect the number of physical CPU cores on Mac OSX. (#157)
753         * Fixed NetBSD build. (#155)
754         * Fixed compilation with TARGET=GENERIC. (#160)
755 x86/x86-64:
756         * Restore the original CPU affinity when calling
757           openblas_set_num_threads(1) (#153)
758         * Fixed a SEGFAULT bug in dgemv_t when m is very large.(#154)
759 MIPS64:
760
761 ====================================================================
762 Version 0.2.4
763 8-Oct-2012
764 common:
765         * Upgraded LAPACK to 3.4.2 version. (#145)
766         * Provided support for passing CFLAGS, FFLAGS, PFLAGS,
767           FPFLAGS to make. (#137)
768         * f77blas.h:compatibility for compilers without C99 complex
769           number support. (#141)
770 x86/x86-64:
771         * Added NO_AVX flag. Check OS supporting AVX on runtime. (#139)
772         * Fixed zdot incompatibility ABI issue with GCC 4.7 on
773           Windows 32-bit. (#140)
774 MIPS64:
775         * Fixed the generation of shared library bug.
776         * Fixed the detection bug on the Loongson 3A server.
777 ====================================================================
778 Version 0.2.3
779 20-Aug-2012
780 common:
781         * Fixed LAPACK unstable bug about ?laswp. (#130)
782         * Fixed the shared library bug about unloading the library on
783           Linux (#132).
784         * Fixed the compilation failure on BlueGene/P (TARGET=PPC440FP2)
785           Please use gcc and IBM xlf. (#134)
786 x86/x86-64:
787         * Supported goto_set_num_threads and openblas_set_num_threads
788           APIs in Windows. They can set the number of threads on runtime.
789
790 ====================================================================
791 Version 0.2.2
792 6-July-2012
793 common:
794         * Fixed exporting DLL functions bug on Windows/MingW
795         * Support GNU Hurd (Thank Sylvestre Ledru)
796         * Support kfreebsd kernel (Thank Sylvestre Ledru)
797 x86/x86-64:
798         * Support Intel Sandy Bridge 22nm desktop/mobile CPU
799 SPARC:
800         * Improve the detection of SPARC (Thank Sylvestre Ledru)
801
802 ====================================================================
803 Version 0.2.1
804 30-Jun-2012
805 common:
806 x86/x86-64:
807         * Fixed the SEGFAULT bug about hyper-theading
808         * Support AMD Bulldozer by using GotoBLAS2 AMD Barcelona codes
809
810 ====================================================================
811 Version 0.2.0
812 26-Jun-2012
813 common:
814         * Removed the limitation (64) of numbers of CPU cores.
815           Now, it supports 256 cores at max.
816         * Supported clang compiler.
817         * Fixed some build bugs on FreeBSD
818 x86/x86-64:
819         * Optimized Level-3 BLAS on Intel Sandy Bridge x86-64 by AVX instructions.
820           Please use gcc >= 4.6 or clang >=3.1.
821         * Support AMD Bobcat by using GotoBLAS2 AMD Barcelona codes.
822
823 ====================================================================
824 Version 0.1.1
825 29-Apr-2012
826 common:
827         * Upgraded LAPACK to 3.4.1 version. (Thank Zaheer Chothia)
828         * Supported LAPACKE, a C interface to LAPACKE. (Thank Zaheer Chothia)
829         * Fixed the build bug (MD5 and download) on Mac OSX.
830         * Auto download CUnit 2.1.2-2 from SF.net with UTEST_CHECK=1.
831         * Fxied the compatibility issue for compilers without C99 complex number
832           (e.g. Visual Studio)
833 x86/x86_64:
834         * Auto-detect Intel Sandy Bridge Core i7-3xxx & Xeon E7 Westmere-EX.
835         * Test alpha=Nan in dscale.
836         * Fixed a SEGFAULT bug in samax on x86 windows.
837
838 ====================================================================
839 Version 0.1.0
840 23-Mar-2012
841 common:
842         * Set soname of shared library on Linux.
843         * Added LIBNAMESUFFIX flag in Makefile.rule. The user can use
844           this flag to control the library name, e.g. libopenblas.a,
845           libopenblas_ifort.a or libopenblas_omp.a.
846         * Added GEMM_MULTITHREAD_THRESHOLD flag in Makefile.rule.
847           The lib use single thread in GEMM function with small matrices.
848 x86/x86_64:
849         * Used GEMV SSE/SSE2 kernels on x86 32-bit.
850         * Exported CBLAS functions in Windows DLL.
851 MIPS64:
852         * Completed Level-3 BLAS optimization on Loongson 3A CPU.
853         * Improved GEMV performance on Loongson 3A CPU.
854         * Improved Level-3 BLAS performance on Loongson 3B CPU. (EXPERIMENT)
855
856 ====================================================================
857 Version 0.1 alpha2.5
858 19-Feb-2012
859 common:
860         * Fixed missing "#include <sched.h>" bug on Mac OS X.
861           Thank Mike Nolta for the patch.
862         * Upgraded LAPACK to 3.4.0 version
863         * Fixed a bug on Mac OS X. Don't require SystemStubs on OS X.
864           SystemStubs does not exist on Lion. Thank Stefan Karpinski.
865         * Improved README with using OpenMP. Check the internal threads
866           count less than or equal to omp_get_max_threads()
867 x86/x86_64:
868         * Auto-detect Intel Core i6/i7 (Sandy Bridge) CPU with Nehalem assembly kernels
869         * Fixed some bugs on MingW 64-bit including zgemv, cdot, zdot.
870
871 ====================================================================
872 Version 0.1 alpha2.4
873 18-Sep-2011
874 common:
875         * Fixed a bug about installation. The header file "fblas77.h"
876           works fine now.
877         * Fixed #61 a building bug about setting TARGET and DYNAMIC_ARCH.
878         * Try to handle absolute path of shared library in OSX. (#57)
879           Thank Dr Kane O'Donnell.
880         * Changed the installation folder layout to $(PREFIX)/include and
881           $(PREFIX)/lib
882
883 x86/x86_64:
884         * Fixed #58 zdot/xdot SEGFAULT bug with GCC-4.6 on x86. According
885           to i386 calling convention, The callee should remove the first
886           hidden parameter.Thank Mr. John for this patch.
887
888 ====================================================================
889 Version 0.1 alpha2.3
890 5-Sep-2011
891
892 x86/x86_64:
893         *  Added DTB_ENTRIES into dynamic arch setting parameters. Now,
894            it can read DTB_ENTRIES on runtime. (Refs issue #55 on github)
895
896 ====================================================================
897 Version 0.1 alpha2.2
898 14-Jul-2011
899
900 common:
901         * Fixed a building bug when DYNAMIC_ARCH=1 & INTERFACE64=1.
902           (Refs issue #44 on github)
903
904 ====================================================================
905 Version 0.1 alpha2.1
906 28-Jun-2011
907
908 common:
909         * Stop the build and output the error message when detecting
910           fortran compiler failed. (Refs issue #42 on github)
911
912 ====================================================================
913 Version 0.1 alpha2
914 23-Jun-2011
915
916 common:
917         * Fixed blasint undefined bug in <cblas.h> file. Other software
918           could include this header successfully(Refs issue #13 on github)
919         * Fixed the SEGFAULT bug on 64 cores. On SMP server, the number
920           of CPUs or cores should be less than or equal to 64.(Refs issue #14
921           on github)
922         * Support "void goto_set_num_threads(int num_threads)" and "void
923           openblas_set_num_threads(int num_threads)" when USE_OPENMP=1
924         * Added extern "C" to support C++. Thank Tasio for the patch(Refs
925           issue #21 on github)
926         * Provided an error message when the arch is not supported.(Refs
927           issue #19 on github)
928         * Fixed issue #23. Fixed a bug of f_check script about generating link flags.
929         * Added openblas_set_num_threads for Fortran.
930         * Fixed #25 a wrong result of rotmg.
931         * Fixed a bug about detecting underscore prefix in c_check.
932         * Print the wall time (cycles) with enabling FUNCTION_PROFILE
933         * Fixed #35 a build bug with NO_LAPACK=1 & DYNAMIC_ARCH=1
934         * Added install target. You can use "make install". (Refs #20)
935
936
937 x86/x86_64:
938         * Fixed #28 a wrong result of dsdot on x86_64.
939         * Fixed #32 a SEGFAULT bug of zdotc with gcc-4.6.
940         * Fixed #33 ztrmm bug on Nehalem.
941         * Work-around #27 the low performance axpy issue with small imput size & multithreads.
942
943 MIPS64:
944         * Fixed #28 a wrong result of dsdot on Loongson3A/MIPS64.
945         * Optimized single/double precision BLAS Level3 on Loongson3A/MIPS64. (Refs #2)
946         * Optimized single/double precision axpy function on Loongson3A/MIPS64. (Refs #3)
947
948 ====================================================================
949 Version 0.1 alpha1
950 20-Mar-2011
951
952 common:
953         * Support "make  NO_LAPACK=1" to build the library without
954           LAPACK functions.
955         * Fixed randomly SEGFAULT when nodemask==NULL with above Linux 2.6.34.
956           Thank Mr.Ei-ji Nakama providing this patch. (Refs issue #12 on github)
957         * Added DEBUG=1 rule in Makefile.rule to build debug version.
958         * Disable compiling quad precision in reference BLAS library(netlib BLAS).
959         * Added unit testcases in utest/ subdir. Used  CUnit framework.
960         * Supported OPENBLAS_* & GOTO_* environment variables (Pleas see README)
961         * Imported GotoBLAS2 1.13 BSD version
962
963 x86/x86_64:
964         * On x86 32bits, fixed a bug in zdot_sse2.S line 191. This would casue
965           zdotu & zdotc failures. Instead, work-around it. (Refs issue #8 #9 on github)
966         * Modified ?axpy functions to return same netlib BLAS results
967           when incx==0 or incy==0 (Refs issue #7 on github)
968         * Modified ?swap functions to return same netlib BLAS results
969           when incx==0 or incy==0 (Refs issue #6 on github)
970         * Modified ?rot functions to return same netlib BLAS results
971           when incx==0 or incy==0 (Refs issue #4 on github)
972         * Detect Intel Westmere,Intel Clarkdale and Intel Arrandale
973           to use Nehalem codes.
974         * Fixed a typo bug about compiling dynamic ARCH library.
975 MIPS64:
976         * Improve daxpy performance on ICT Loongson 3A.
977         * Supported ICT Loongson 3A CPU (Refs issue #1 on github)
978 ====================================================================