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