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