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