Merge pull request #3488 from xianyi/develop
[platform/upstream/openblas.git] / Changelog.txt
1 OpenBLAS ChangeLog
2 ====================================================================
3 Version 0.3.19
4  19-Dec-2021
5  
6  general:
7  - reverted unsafe TRSV/ZRSV optimizations introduced in 0.3.16
8  - fixed a potential thread race in the thread buffer reallocation routines
9    that were introduced in 0.3.18
10  - fixed miscounting of thread pool size on Linux with OMP_PROC_BIND=TRUE
11  - fixed CBLAS interfaces for CSROT/ZSROT and CROTG/ZROTG
12  - made automatic library suffix for CMAKE builds with INTERFACE64 available
13    to CBLAS-only builds
14
15 x86_64:
16  - DYNAMIC_ARCH builds now fall back to the cpu with most similar capabilities
17    when an unknown CPUID is encountered, instead of defaulting to Prescott
18  - added cpu detection for Intel Alder Lake
19  - added cpu detection for Intel Sapphire Rapids
20  - added an optimized SBGEMM kernel for Sapphire Rapids
21  - fixed DYNAMIC_ARCH builds on OSX with CMAKE
22  - worked around DYNAMIC_ARCH builds made on Sandybridge failing on SkylakeX
23  - fixed missing thread initialization for static builds on Windows/MSVC
24  - fixed an excessive read in ZSYMV
25
26 POWER:
27  - added support for POWER10 in big-endian mode
28  - added support for building with CMAKE
29  - added optimized SGEMM and DGEMM kernels for small matrix sizes
30
31 ARMV8:
32  - added basic support and cputype detection for Fujitsu A64FX
33  - added a generic ARMV8SVE target  
34  - added SVE-enabled SGEMM and DGEMM kernels for ARMV8SVE and A64FX
35  - added optimized CGEMM and ZGEMM kernels for Cortex A53 and A55 cpus
36  - fixed cpuid detection for Apple M1 and improved performance
37  - improved compiler flag setting in CMAKE builds
38
39 RISCV64:
40  - fixed improper initialization in CSCAL/ZSCAL for strided access patterns
41
42 MIPS:
43  - added a GENERIC target for MIPS32
44  - added support for cross-compiling to MIPS32 on x86_64 using CMAKE
45
46 MIPS64:
47  - fixed misdetection of MSA capability
48
49 ====================================================================
50 Version 0.3.18
51  02-Oct-2021
52
53 general:
54  - when the build-time number of preconfigured threads is exceeded
55    at runtime (typically by an external program calling BLAS functions
56    from a larger number of threads in parallel), OpenBLAS will now 
57    allocate an auxiliary control structure for up to 512 additional
58    threads instead of aborting
59  - added support for Loongson's LoongArch64 cpu architecture
60  - fixed building OpenBLAS with CMAKE and -DBUILD_BFLOAT16=ON
61  - added support for building OpenBLAS as a CMAKE subproject
62  - added support for building for Windows/ARM64 targets with clang
63  - improved support for building with the IBM xlf compiler
64  - imported Reference-LAPACK PR 625 (out-of-bounds reads in ?LARRV)
65  - imported Reference-LAPACK PR 597 for testsuite compatibility with
66    LLVM's libomp
67
68 x86_64:
69  - added SkylakeX S/DGEMM kernels for small problem sizes (M*N*K<=1000000)
70  - added optimized SBGEMM for Intel Cooper Lake
71  - reinstated the performance patch for AVX512 SGEMV_T with a proper fix
72  - added a workaround for a gcc11 tree-vectorizer bug that caused spurious
73    failures in the test programs for complex BLAS3 when compiling at -O3
74    (the default for cmake "release" builds)
75  - added support for runtime cpu count detection under Haiku OS
76  - worked around a long-standing miscompilation issue of the Haswell DGEMV_T
77    kernel with gcc that could produce NaN output in some corner cases
78
79 POWER:
80  - improved performance of DASUM on POWER10
81
82 ARMV8:
83  - fixed crashes (use of reserved register x18) on Apple M1 under OSX
84  - fixed building with gcc releases earlier than 5.1
85
86 MIPS:
87  - fixed building under BSD
88
89 MIPS64:
90  - fixed building under BSD
91
92 ====================================================================
93 Version 0.3.17
94  15-Jul-2021
95
96 common:
97  - reverted the optimization of SGEMV_N/DGEMV_N for small input sizes
98    and consecutive arguments as it led to stack overflows on x86_64
99    with some operating systems (notably OSX and Windows)
100  
101  x86_64:
102   - reverted the performance patch for SGEMV_T on AVX512 as it caused
103     wrong results in some applications
104     
105  SPARC:
106   - fixed compilation with compilers other than gcc
107 ====================================================================
108 Version 0.3.16
109  11-Jul-2021
110
111 common:
112  - drastically reduced the stack size requirements for running the LAPACK
113    testsuite (Reference-LAPACK PR 553)
114  - fixed spurious test failures in the LAPACK testsuite (Reference-LAPACK
115    PR 564)
116  - expressly setting DYNAMIC_ARCH=0 no longer enables dynamic_arch mode 
117  - improved performance of xGER, xSPR, xSPR2, xSYR, xSYR2, xTRSV, SGEMV_N 
118    and DGEMV_N, for small input sizes and consecutive arguments
119  - improved performance of xGETRF, xPORTF and xPOTRI for small input sizes
120    by disabling multithreading
121  - fixed installing with BSD versions of the "install" utility
122
123 RISCV:
124  - fixed the implementation of xIMIN
125  - improved the performance of DSDOT
126  - fixed linking of the tests on C910V with current vendor gcc
127
128 POWER:
129 - fixed SBGEMM computation for some odd value inputs
130 - fixed compilation for PPCG4, PPC970, POWER3, POWER4 and POWER5
131
132 x86_64:
133  - improved performance of SGEMV_N and SGEMV_T for small N on AVX512-capable cpus
134  - worked around a miscompilation of ZGEMM/ZTRMM on Sandybridge with old gcc
135    versions
136  - fixed compilation with MS Visual Studio versions older than 2017
137  - fixed macro name collision with winnt.h from the latest Win10 SDK
138  - added cpu type autodetection for Intel Ice Lake SP
139  - fixed cpu type autodetection for Intel Tiger Lake
140  - added cpu type autodetection for recent Centaur/Zhaoxin models
141  - fixed compilation with musl libc
142
143 ARM64:
144 - fixed compilation with gcc/gfortran on the Apple M1
145 - fixed linking of the tests on FreeBSD
146 - fixed missing restore of a register in the recently rewritten DNRM2 kernel
147   for ThunderX2 and Neoverse N1 that could cause spurious failures in e.g.
148   DGEEV
149 - added compiler optimization flags for the EMAG8180
150 - added initial support for Cortex A55
151
152 ARM:
153 - fixed linking of the tests on FreeBSD
154
155 ====================================================================
156 Version 0.3.15
157   2-May-2021
158
159 common:
160  - imported improvements and bugfixes from Reference-LAPACK 3.9.1
161  - imported LAPACKE interface fixes from Reference-LAPACK PRs 534 + 537
162  - fixed a problem in the cpu detection of 0.3.14 that prevented cross-compilation
163  - fixed a sequence problem in the generation of softlinks to the library in GMAKE
164
165 RISC V:
166  - fixed compilation on RISCV (missing entry in getarch)
167  - fixed a potential division by zero in CROTG and ZROTG
168
169 POWER:
170  - fixed LAPACK testsuite failures seen with the NVIDIA HPC compiler
171  - improved CGEMM, DGEMM and ZGEMM performance on POWER10
172  - added an optimized ZGEMV kernel for POWER10
173  - fixed a potential division by zero in CROTG and ZROTG
174
175 x86_64:
176  - added support for Intel Control-flow Enforcement Technology (CET)
177  - reverted the DOMATCOPY_RT code to the generic C version
178  - fixed a bug in the AVX512 SGEMM kernel introduced in 0.3.14
179  - fixed misapplication of -msse flag to non-SSE cpus in DYNAMIC_ARCH
180  - added support for compilation of the benchmarks on older OSX versions
181  - fix propagation of the NO_AVX512 option in CMAKE builds
182  - fix compilation of the AVX512 SGEMM kernel with clang-cl on Windows
183  - fixed compilation of the CTESTs with INTERFACE64=1 (random faults on OSX)
184  - corrected the Haswell DROT kernel to require AVX2/FMA3 rather than AVX512
185
186 ARM:
187  - fixed a potential division by zero in CROTG and ZROTG
188  - fixed a potential overflow in IMATCOPY/ZIMATCOPY and the CTESTs
189
190 ARM64:
191  - fixed spurious reads outside the array in the SGEMM tcopy macro
192  - fixed a potential division by zero in CROTG and ZROTG
193  - fixed a segmentation fault in DYNAMIC_ARCH builds (reappeared in 0.3.14)
194
195 MIPS
196  - fixed a potential division by zero in CROTG and ZROTG
197  - fixed a potential overflow in IMATCOPY/ZIMATCOPY and the CTESTs
198
199 MIPS64:
200  - fixed a potential division by zero in CROTG and ZROTG
201
202 SPARC:
203  - fixed a potential division by zero in CROTG and ZROTG
204
205 ====================================================================
206 Version 0.3.14
207  17-Mar-2021
208  
209  common:
210         * Fixed a race condition on thread shutdown in non-OpenMP builds
211         * Fixed custom BUFFERSIZE option getting ignored in gmake builds
212         * Fixed CMAKE compilation of the TRMM kernels for GENERIC platforms
213         * Added CBLAS interfaces for CROTG, ZROTG, CSROT and ZDROT
214         * Improved performance of OMATCOPY_RT across all platforms
215         * Changed perl scripts to use env instead of a hardcoded /usr/bin/perl
216         * Fixed potential misreading of the GCC compiler version in the build scripts
217         * Fixed convergence problems in LAPACK complex GGEV/GGES (Reference-LAPACK #477)
218         * Reduced the stacksize requirements for running the LAPACK testsuite (Reference-LAPACK #335)
219
220  RISCV:
221         * Fixed compilation on RISCV (missing entry in getarch)
222         
223  POWER:
224         * Fixed compilation for DYNAMIC_ARCH with clang and with old gcc versions
225         * Added support for compilation on FreeBSD/ppc64le
226         * Added optimized POWER10 kernels for SSCAL, DSCAL, CSCAL, ZSCAL
227         * Added optimized POWER10 kernels for SROT, DROT, CDOT, SASUM, DASUM
228         * Improved SSWAP, DSWAP, CSWAP, ZSWAP performance on POWER10
229         * Improved SCOPY and CCOPY performance on POWER10
230         * Improved SGEMM and DGEMM performance on POWER10
231         * Added support for compilation with the NVIDIA HPC compiler
232
233  x86_64:
234         * Added an optimized bfloat16 GEMM kernel for Cooperlake
235         * Added CPUID autodetection for Intel Rocket Lake and Tiger Lake cpus
236         * Improved the performance of SASUM,DASUM,SROT,DROT on AMD Ryzen cpus
237         * Added support for compilation with the NAG Fortran compiler
238         * Fixed recognition of the AMD AOCC compiler
239         * Fixed compilation for DYNAMIC_ARCH with clang on Windows
240         * Added support for running the BLAS/CBLAS tests on Windows
241         * Fixed signatures of the tls callback functions for Windows x64
242         * Fixed various issues with fma intrinsics support handling 
243
244  ARM:
245         * Added support for embedded Cortex M targets via a new option EMBEDDED
246
247  ARMV8:
248         * Fixed the THUNDERX2T99 and NEOVERSEN1 DNRM2/ZNRM2 kernels for inputs with Inf
249         * Added support for the DYNAMIC_LIST option
250         * Added support for compilation with the NVIDIA HPC compiler
251         * Added support for compiling with the NAG Fortran compiler
252
253 ====================================================================
254 Version 0.3.13
255  12-Dec-2020
256  
257  common:
258         * Added a generic bfloat16 SBGEMV kernel
259         * Fixed a potentially severe memory leak after fork in OpenMP builds
260           that was introduced in 0.3.12
261         * Added detection of the Fujitsu Fortran compiler
262         * Added detection of the (e)gfortran compiler on OpenBSD
263         * Added support for overriding the default name of the library independently
264           from symbol suffixing in the gmake builds (already supported in cmake)
265
266 RISCV:
267         * Added a RISC V port optimized for C910V
268
269 POWER:
270         * Added optimized POWER10 kernels for SAXPY, CAXPY, SDOT, DDOT and DGEMV_N
271         * Improved DGEMM performance on POWER10
272         * Improved STRSM and DTRSM performance on POWER9 and POWER10
273         * Fixed segmemtation faults in DYNAMIC_ARCH builds
274         * Fixed compilation with the PGI compiler
275
276 x86:
277         * Fixed compilation of kernels that require SSE2 intrinsics since 0.3.12
278         
279 x86_64:
280         * Added an optimized bfloat16 SBGEMV kernel for SkylakeX and Cooperlake
281         * Improved the performance of SASUM and DASUM kernels through parallelization
282         * Improved the performance of SROT and DROT kernels
283         * Improved the performance of multithreaded xSYRK
284         * Fixed OpenMP builds that use the LLVM Clang compiler together with GNU gfortran
285           (where linking of both the LLVM libomp and GNU libgomp could lead to lockups or
286           wrong results)
287         * Fixed miscompilations by old gcc 4.6
288         * Fixed misdetection of AVX2 capability in some Sandybridge cpus
289         * Fixed lockups in builds combining DYNAMIC_ARCH with TARGET=GENERIC on OpenBSD
290
291 ARM64:
292         * Fixed segmemtation faults in DYNAMIC_ARCH builds
293
294 MIPS:
295         * Improved kernels for Loongson 3R3 ("3A") and 3R4 ("3B") models, including MSA
296         * Fixed bugs in the MSA kernels for CGEMM, CTRMM, CGEMV and ZGEMV
297         * Added handling of zero increments in the MSA kernels for SSWAP and DSWAP
298         * Added DYNAMIC_ARCH support for MIPS64 (currently Loongson3R3/3R4 only)
299
300 SPARC:
301         * Fixed building 32 and 64 bit SPARC kernels with the SolarisStudio compilers
302
303 ====================================================================
304 Version 0.3.12
305  24-Oct-2020
306
307 common:
308         * Fixed missing BLAS/LAPACK functions (inadvertently dropped during
309           the build system restructuring)
310         * Fixed argument conversion macro in LAPACKE_zgesvdq (LAPACK #458)
311
312 POWER:
313         * Added optimized SCOPY/CCOPY kernels for POWER10
314         * Increased and unified the default size of the GEMM BUFFER
315         * Fixed building for POWER10 in DYNAMIC_ARCH mode
316         * POWER10 compatibility test now checks binutils version as well
317         * Cleaned up compiler warnings
318
319 x86_64:
320         * corrected compiler version checks for AVX2 compatibility
321         * added compiler option -mavx2 for building with flang
322         * fixed direct SGEMM pathway for small matrix sizes (broken by
323           the code refactoring in 0.3.11)
324         * fixed unhandled partial register clobbers in several kernels
325           for AXPY,DOT,GEMV_N and GEMV_T flagged by gcc10 tree-vectorizer
326
327 ARMV8:
328         * improved Apple Vortex support to include cross-compiling
329
330 ====================================================================
331 Version 0.3.11
332  17-Oct-2020
333
334 common:
335         * API change:
336           the newly added BFLOAT16 functions were renamed to use the
337           letter "B" instead of "H" to avoid potential confusion with
338           the IEEE "half precision float" type, i.e. the 0.3.10
339           SHGEMM is now SBGEMM and the corresponding build option
340           was changed from "BUILD_HALF" to "BUILD_BFLOAT16".
341         * Reduced the default BLAS3_MEM_ALLOC_THRESHOLD (used as an upper
342           limit for placing temporary arrays on the stack) to be compatible
343           with a stack size of 1mb (as imposed by the JAVA runtime library) 
344         * Added mixed-precision dot function SBDOT and utility functions
345           shstobf16, shdtobf16, sbf16tos and dbf16tod to convert between
346           single or double precision float arrays and bfloat16 arrays
347         * Fixed prototypes of LAPACK_?ggsvp and LAPACK_?ggsvd functions
348           in lapack.h
349         * Fixed underflow and rounding errors in LAPACK SLANV2 and DLANV2
350           (causing miscalculations in e.g. SHSEQR/DHSEQR, LAPACK issue #263)
351         * Fixed workspace calculation in LAPACK ?GELQ (LAPACK issue #415)
352         * Fixed several bugs in the LAPACK testsuite
353         * Improved performance of TRMM and TRSM for certain problem sizes
354         * Fixed infinite recursions and workspace miscalculations in ReLAPACK
355         * CMAKE builds no longer require pkg-config for creating the .pc file
356         * Makefile builds no longer misread NO_CBLAS=0 or NO_LAPACK=0 as 
357           enabling these options
358         * Fixed detection of gfortran when invoked through an mpi wrapper
359         * Improve thread reinitialization performance with OpenMP after a fork 
360         * Added support for building only the subset of the library required
361           for a particular precision by specifying BUILD_SINGLE, BUILD_DOUBLE
362         * Optional function name prefixes and suffixes are now correctly
363           reflected in the generated cblas.h
364         * Added CMAKE build support for the LAPACK and multithreading tests
365
366 POWER:
367         * Added optimized support for POWER10
368         * Added support for compiling for POWER8 in 32bit mode
369         * Added support for compilation with LLVM/clang
370         * Added support for compilation with NVIDIA/PGI compilers
371         * Fixed building on big-endian POWER8
372         * Fixed miscompilation of ZDOTC by gcc10
373         * Fixed alignment errors in the POWER8 SAXPY kernel
374         * Improved CPU detection on AIX
375         * Supported building with older compilers on POWER9
376
377 x86_64:
378         * Added support for Intel Cooperlake
379         * Added autodetection of AMD Renoir/Matisse/Zen3 cpus
380         * Added autodetection of Intel Comet Lake cpus
381         * Reimplemented ?sum, ?dot and daxpy using universal intrinsics
382         * Reset the fpu state before using the fpu on Windows as a workaround
383           for a problem introduced in Windows 10 build 19041 (a.k.a. SDK 2004)
384         * Fixed potentially undefined behaviour in the dot and gemv_t kernels
385         * Fixed a potential segmentation fault in DYNAMIC_ARCH builds
386         * Fixed building for ZEN with PGI/NVIDIA and AMD AOCC compilers
387         
388 ARMV7:
389         * Fixed cpu detection on BSD-like systems
390
391 ARMV8:
392         * Added preliminary support for Apple Vortex cpus
393         * Added support for the Cavium ThunderX3T110 cpu
394         * Fixed cpu detection on BSD-like systems
395         * Fixed compilation in -std=C18 mode
396
397 IBM Z:
398         * Added support for compiling with the clang compiler
399         * Improved GEMM performance on Z14
400
401 ====================================================================
402 Version 0.3.10
403  14-Jun-2020
404
405 common:
406         * Improved thread locking behaviour in blas_server and parallel getrf                         
407         * Imported bugfix 394 from LAPACK (spurious reference to "XERBL"
408           due to overlong lines)
409         * Imported bugfix 403 from LAPACK (compile option "recursive" required
410           for correctness with Intel and PGI)
411         * Imported bugfix 408 from LAPACK (wrong scaling in ZHEEQUB)
412         * Imported bugfix 411 from LAPACK (infinite loop in LARGV/LARTG/LARTGP)
413         * Fixed mismatches between BUFFERSIZE and GEMM_UNROLL parameters that
414           could lead to crashes at large matrix sizes  
415         * Restored internal soname in dynamic libraries on FreeBSD and Dragonfly 
416         * Added API (openblas_setaffinity) to set the thread affinity on Linux
417         * Added initial infrastructure for half-precision floating point 
418           (bfloat16) support with a generic implementation of SHGEMM     
419         * Added CMAKE build system support for building the cblas_Xgemm3m
420           functions
421         * Fixed CMAKE support for building in a path with embedded spaces
422         * Fixed CMAKE (non)handling of NO_EXPRECISION and MAX_STACK_ALLOC
423         * Fixed GCC version detection in the Makefiles
424         * Allowed overriding the names of AR, AS and LD in Makefile builds
425
426 POWER:
427         * Fixed big-endian POWER8 ELFv2 builds on FreeBSD
428         * Fixed GCC version checks and DYNAMIC_ARCH builds on POWER9
429         * Fixed CMAKE build support for POWER9
430         * fixed a potential race condition in the thread buffer allocation
431         * Worked around LAPACK test failures on PPC G4
432
433 MIPS:
434         * Fixed a potential race condition in the thread buffer allocation
435         * Added support for MIPS 24K/24KE family based on P5600 kernels
436
437 MIPS64:
438         * fixed a potential race condition in the thread buffer allocation
439         * Added TARGET=GENERIC
440
441 ARMV7:
442         * Fixed a race condition in the thread buffer allocation
443
444 ARMV8:
445         * Fixed a race condition in the thread buffer allocation
446         * Fixed zero initialisation in the assembly for SGEMM and DGEMM BETA
447         * Improved performance of the ThunderX2 DAXPY kernel
448         * Added an optimized SGEMM kernel for Cortex A53    
449         * Fixed Makefile support for INTERFACE64 (8-byte integer)
450
451 x86_64:
452         * Fixed a syntax error in the CMAKE setup for SkylakeX
453         * Improved performance of STRSM on Haswell, SkylakeX and Ryzen
454         * Improved SGEMM performance on SGEMM for workloads with ldc a
455           multiple of 1024
456         * Improved DGEMM performance on Skylake X
457         * Fixed unwanted AVX512-dependency of SGEMM in DYNAMIC_ARCH
458           builds created on SkylakeX
459         * Removed data alignment requirement in the SSE2 copy kernels
460           that could cause spurious crashes
461         * Added a workaround for an optimizer bug in AppleClang 11.0.3
462         * Fixed LAPACK test failures due to wrong options for Intel Fortran
463         * Fixed compilation and LAPACK test results with recent Flang
464           and AMD AOCC
465         * Fixed DYNAMIC_ARCH builds with CMAKE on OS X
466         * Fixed missing exports of cblas_i?amin, cblas_i?min, cblas_i?max,
467           cblas_?sum, cblas_?gemm3m in the shared library on OS 
468         * Fixed reporting of cpu name in DYNAMIC_ARCH builds (would sometimes
469           show the name of an older generation chip supported by the same kernels)
470
471 IBM Z:
472         * Improved performance of SGEMM/STRMM and DGEMM/DTRMM on Z14
473
474 ====================================================================
475 Version 0.3.9
476  1-Mar-2020
477  
478  common:
479         * Fixed a miscompilation of the GETRF functions with CMAKE
480         * Imported bugfix 390 from LAPACK (missing NaN propagation in xCOMBSSQ)
481         * The size of the memory buffer used for splitting GEMM tasks across
482           multiple threads can now be configured in the build system.
483
484 POWER:
485         * Fixed several compilation problems related to endianness
486           and ELF version on POWER8 and POWER9
487         * Fixed use of the absolute value IAMIN/IAMAX instead of IMIN/IMAX
488         * Fixed a race condition in the level3 blas code
489         
490 MIPS64:
491         * Fixed use of the absoltute value IAMIN/IAMAX instead of IMIN/IMAX
492         
493 ARMV7:
494         * Fixed a race condition in the level3 blas code
495         * Fixed compilation on Android
496 ARMV8:
497         * Added support for Ampere EMAG8180
498         * Added support for Neoverse N1
499         * Improved performance of the blas_lock function
500         * Fixed a race condition in the level3 blas code
501         * Fixed a performance regression on TSV110-based servers
502
503 x86_64:
504         * Fixed a long-standing error with undeclared register overwrites
505           in the DSCAL microkernel for HASWELL,SKYLAKEX and ZEN
506         * Fixed a long-standing bug in the SSE implementation of IAMAX
507         * Fixed a CMAKE build failure with DYNAMIC_ARCH
508         * Fixed cpu autodetection of Goldmont+, Cannon Lake and Ice Lake
509         * Fixed a compilation failure on OSX with compiler name containing dash
510         * Fixed compilation with MinGW on SkylakeX
511         * Improved speed of the AVX512 GEMM3M kernel on SkylakeX
512         * Added an AVX512 STRMM kernel for SkylakeX
513         * Improved GEMM performance on Haswell and Zen
514
515 zarch:
516         * fixed compilation of the DYNAMIC_ARCH code
517         
518 ====================================================================
519 Version 0.3.8
520  9-Feb-2020
521
522 common: 
523 `       * LAPACK has been updated to 3.9.0 (plus patches up to 
524           January 2nd, 2020)
525         * CMAKE support has been improved in several areas including
526           cross-compilation
527         * a thread race condition in the GEMM3M kernels was resolved
528         * the "generic" (plain C) gemm beta kernel used by many targets
529           has been sped up
530         * an optimized version of the LAPACK trtrs functions has been added
531         * an incompatibilty between the LAPACK tests and the OpenBLAS
532           implementation of XERBLA was resolved, removing the numerous
533           warnings about wrong error exits in the former 
534         * support for NetBSD has been added
535         * support for compilation with g95 and non-GNU versions of ld
536           has been improved
537         * support for compilation with (upcoming) gcc 10 has been added
538
539 POWER:
540         * worked around miscompilation of several POWER8 and POWER9 
541           kernels by older versions of gcc
542         * added support for big-endian POWER8 and for compilation on AIX
543         * corrected bugs in the big-endian support for PPC440 and PPC970
544         * DYNAMIC_ARCH support is now available in CMAKE builds as well
545
546 ARMV8:
547         * performance of DGEMM_BETA and SGEMM_NCOPY has been improved
548         * compilation for 32bit works again 
549         * performance of the RPCC function has been improved
550         * improved performance on small systems
551         * DYNAMIC_ARCH support is now available in CMAKE builds as well
552         * cross-compilation from OSX to IOS was simplified
553  
554 x86_64:
555         * a new AVX512 DGEMM kernel was added and the AVX512 SGEMM kernel
556           was significantly improved
557         * optimized AVX512 kernels for CGEMM and ZGEMM have been added
558         * AVX2 kernels for STRMM, SGEMM, and CGEMM have been significantly
559           sped up and optimized CGEMM3M and ZGEMM3M kernels have been added 
560         * added support for QEMU virtual cpus
561         * a compilation problem with PGI and SUN compilers was fixed
562         * Intel "Goldmont plus" is now autodetected
563         * a potential crash on program exit on MS Windows has been fixed
564
565 x86:
566         * an unwanted case sensitivity in the implementation of LSAME
567           on older 32bit AMD cpus was fixed
568
569 zarch:
570         * Z15 is now supported as Z14
571         * DYNAMIC_ARCH is now available on ZARCH as well
572
573 ====================================================================
574 Version 0.3.7
575 11-Aug 2019
576
577 common:
578   * having the gmake special variables TARGET_ARCH or TARGET_MACH
579     defined no longer causes build failures in ctest or utest
580   * defining NO_AFFINITY or USE_TLS to 0 in gmake builds no longer
581     has the same effect as setting them to 1
582   * a new test program was added to allow checking the library for
583     thread safety
584   * a new option USE_LOCKING was added to ensure thread safety when
585     OpenBLAS itself is built without multithreading but will be 
586     called from multiple threads.
587   * a build failure on Linux with glibc versions earlier than 2.5
588     was fixed
589   * a runtime error with CPU enumeration (and NO_AFFINITY not set)
590     on glibc 2.6 was fixed
591   * NO_AFFINITY was added to the CMAKE options (and defaults to being
592     active on Linux, as in the gmake builds)
593
594 x86_64:
595   * the build-time logic for detection of AVX512 availability in
596     the processor and compiler was fixed
597   * gmake builds on OSX now set the internal name of the library to 
598     libopenblas.0.dylib (consistent with CMAKE)
599   * the Haswell DGEMM kernel received a significant speedup through
600     improved prefetch and load instructions
601   * performance of DGEMM, DTRMM, DTRSM and ZDOT on Zen/Zen2 was markedly
602     increased by avoiding vpermpd instructions
603   * the SKYLAKEX (AVX512) DGEMM helper functions have now been disabled
604     to fix remaining errors in DGEMM, DSYMM and DTRMM
605
606 POWER:
607   * added support for building on FreeBSD/powerpc64 and FreeBSD/ppc970
608   * added optimized kernels for POWER9 SGEMM and STRMM
609
610 ARMV7:
611   * fixed the softfp implementations of xAMAX and IxAMAX
612   * removed the predefined -march= flags on both ARMV5 and ARMV6 as
613     they were appropriate for only a subset of platforms
614
615 ====================================================================
616 Version 0.3.6
617 29-Apr-2019
618
619 common:
620         * the build tools now check that a given cpu TARGET is actually valid
621         * the build-time check of system features (c_check) has been made
622           less dependent on particular perl features (this should mainly
623           benefit building on Windows)
624         * several problem with the ReLAPACK integration were fixed,
625           including INTERFACE64 support and building a shared library
626         * building with CMAKE on BSD systems was improved
627         * a non-absolute SUM function was added based on the
628           existing optimized code for ASUM
629         * CBLAS interfaces to the IxMIN and IxMAX functions were added
630         * a name clash between LAPACKE and BOOST headers was resolved
631         * CMAKE builds with OpenMP failed to include the appropriate getrf_parallel
632           kernels
633         * a crash on thread (key) deletion with the USE_TLS=1 memory management
634           option was fixed
635         * restored several earlier fixes, in particular for OpenMP performance,
636           building on BSD, and calling fork on CYGWIN, which had inadvertently
637           been dropped in the 0.3.3 rewrite of the memory management code.
638
639 x86_64:
640         * the AVX512 DGEMM kernel has been disabled again due to unsolved problems
641         * building with old versions of MSVC was fixed
642         * it is now possible to build a static library on Windows with CMAKE
643         * accessing environment variables on CYGWIN at run time was fixed
644         * the CMAKE build system now recognizes 32bit userspace on 64bit hardware
645         * Intel "Denverton" atom and Hygon "Dhyana" zen CPUs are now autodetected
646         * building for DYNAMIC_ARCH with a DYNAMIC_LIST of targets is now supported
647           with CMAKE as well
648         * building for DYNAMIC_ARCH with GENERIC as the default target is now supported
649         * a buffer overflow in the SSE GEMM kernel for Intel Nano targets was fixed
650         * assembly bugs involving undeclared modification of input operands were fixed
651           in the AXPY, DOT, GEMV, GER, SCAL, SYMV and TRSM microkernels for Nehalem,
652           Sandybridge, Haswell, Bulldozer and Piledriver. These would typically cause
653           test failures or segfaults when compiled with recent versions of gcc from 8 onward.
654         * a similar bug was fixed in the blas_quickdivide code used to split workloads
655           in most functions
656         * a bug in the IxMIN implementation for the GENERIC target made it return the result of IxMAX
657         * fixed building on SkylakeX systems when either the compiler or the (emulated) operating
658           environment does not support AVX512
659         * improved GEMM performance on ZEN targets
660
661 x86:
662         * build failures caused by the recently added checks for AVX512 were fixed
663         * an inline assembly bug involving undeclared modification of an input argument was
664           fixed in the blas_quickdivide code used to split workloads in most functions
665         * a bug in the IMIN implementation for the GENERIC target made it return the result of IMAX
666
667 MIPS32:
668         * a bug in the IMIN implementation made it return the result of IMAX
669
670 POWER:
671         * single precision BLAS1/2 functions have received optimized POWER8 kernels
672         * POWER9 is now a separate target, with an optimized DGEMM/DTRMM kernel
673         * building on PPC970 systems under OSX Leopard or Tiger is now supported
674         * out-of-bounds memory accesses in the gemm_beta microkernels were fixed
675         * building a shared library on AIX is now supported for POWER6
676         * DYNAMIC_ARCH support has been added for POWER6 and newer
677
678 ARMv7:
679         * corrected xDOT behaviour with zero INC_X or INC_Y
680         * a bug in the IMIN implementation made it return the result of IMAX
681
682 ARMv8:
683         * added support for HiSilicon TSV110 cpus
684         * the CMAKE build system now recognizes 32bit userspace on 64bit hardware
685         * cross-compilation with CMAKE now works again
686         * a bug in the IMIN implementation made it return the result of IMAX
687         * ARMV8 builds with the BINARY=32 option are now automatically handled as ARMV7
688
689 IBM Z:
690         * optimized microkernels for single precicion BLAS1/2 functions have been added
691           for both Z13 and Z14
692
693 ====================================================================
694 Version 0.3.5
695 31-Dec-2018
696
697 common:
698         * loop unrolling in TRMV has been enabled again.
699         * A domain error in the thread workload distribution for SYRK
700           has been fixed.
701         * gmake builds will now automatically add -fPIC to the build
702           options if the platform requires it.
703         * a pthreads key leakage (and associate crash on dlclose) in
704           the USE_TLS codepath was fixed.
705         * building of the utest cases on systems that do not provide
706           an implementation of complex.h was fixed.
707           
708 x86_64:
709         * the SkylakeX code was changed to compile on OSX.
710         * unwanted application of the -march=skylake-avx512 option
711           to the common code parts of a DYNAMIC_ARCH build was fixed.
712         * improved performance of SGEMM for small workloads on Skylake X.
713         * performance of SGEMM and DGEMM was improved on Haswell.
714
715 ARMV8:
716         * a configuration error that broke the CNRM2 kernel was corrected.
717         * compilation of the GEMM kernels with CMAKE was fixed.
718         * DYNAMIC_ARCH builds are now available with CMAKE as well.
719         * using CMAKE for cross-compilation to the new cpu TARGETs
720           introduced in 0.3.4 now works.
721           
722 POWER:
723         * a problem in cpu autodetection for AIX has been corrected.
724         
725 ====================================================================
726 Version 0.3.4
727 02-Dec-2018
728
729 common:
730         * the new, experimental thread-local memory allocation had 
731           inadvertently been left enabled for gmake builds in 0.3.3
732           despite the announcement. It is now disabled by default, and
733           single-threaded builds will keep using the old allocator even
734           if the USE_TLS option is turned on.
735         * OpenBLAS will now provide enough buffer space for at least 50
736           threads by default.
737         * The output of openblas_get_config() now contains the version
738           number.
739         * A serious thread safety bug in GEMV operation with small M and
740           large N size has been fixed.
741         * The code will now automatically call blas_thread_init after a
742           fork if needed before handling a call to openblas_set_num_threads
743         * Accesses to parallelized level3 functions from multiple callers
744           are now serialized to avoid thread races (unless using OpenMP).
745           This should provide better performance than the known-threadsafe
746           (but non-default) USE_SIMPLE_THREADED_LEVEL3 option.
747         * When building LAPACK with gfortran, -frecursive is now (again)
748           enabled by default to ensure correct behaviour.
749         * The OpenBLAS version cblas.h now supports both CBLAS_ORDER and
750           CBLAS_LAYOUT as the name of the matrix row/column order option.
751         * Externally set LDFLAGS are now passed through to the final compile/link
752           steps to facilitate setting platform-specific linker flags.
753         * A potential race condition during the build of LAPACK (that would 
754           usually manifest itself as a failure to build TESTING/MATGEN) has been 
755           fixed.
756         * xHEMV has been changed to stay single-threaded for small input sizes
757           where the overhead of multithreading exceeds any possible gains
758         * CSWAP and ZSWAP have been limited to a single thread except on ARMV8 or
759           ThunderX hardware with sizable input.
760         * Linker flags for the PGI compiler have been updated
761         * Behaviour of AXPY with zero increments is now handled in the C interface,
762           correcting the result on at least Intel Atom.
763         * The result matrix from calling SGELSS with an all-zero input matrix is 
764           now zeroed completely.
765           
766 x86_64:
767         * Autodetection of AMD Ryzen2 has been fixed (again).
768         * CMAKE builds now support labeling of an INTERFACE64=1 build of
769           the library with the _64 suffix.
770         * AVX512 version of DGEMM has been added and the AVX512 SGEMM kernel
771           has been sped up by rewriting with C intrinsics
772         * Fixed compilation on RHEL5/CENTOS5 (issue with typename __WAIT_STATUS)
773         
774 POWER:
775         * added support for building on AIX (with gcc and GNU tools from AIX Toolbox).
776         * CPU type detection has been implemented for AIX.
777         * CPU type detection has been fixed for NETBSD.
778         
779 MIPS64:
780         * AXPY on LOONGSON3A has been corrected to pass "zero increment" utest.
781         * DSDOT on LOONGSON3A has been fixed.
782         * the SGEMM microkernel has been hardened against potential data loss.
783         
784 ARMV8:
785         * DYNAMic_ARCH support is now available for 64bit ARM
786         * cross-compiling for ARMV8 under iOS now works.
787         * cpu-specific code has been rearranged to make better use of both
788           hardware commonalities and model-specific compiler optimizations.
789         * XGENE1 has been removed as a TARGET, superseded by the improved generic
790           ARMV8 support.
791         
792 ARMV7:
793         * Older assembly mnemonics have been converted to UAL form to allow
794           building with clang 7.0
795         * Cross compiling LAPACKE for Android has been fixed again (broken by
796           update to LAPACK 3.7.0 some while ago).  
797           
798 ====================================================================
799 Version 0.3.3
800 31-Aug-2018
801
802 common:
803         * thread memory allocation has been switched back to the method
804           used before version 0.3.1 due to unexpected problems caused by
805           the new code under some circumstances. A new compile-time option
806           USE_TLS has been added to enable the new code, and it is hoped
807           that this can become the default again in the next version.
808         * LAPAck PR272 has been integrated, which fixes spurious errors
809           in DSYEVR and related functions caused by missing conversion 
810           from ILAENV to ILAENV_2STAGE in several _2stage routines.
811         * the cmake-generated OpenBLASConfig.cmake now uses correct case
812           for the name of the library
813         * added support for Haiku OS  
814
815 x86_64:
816         * added AVX512 implementations of SDOT, DDOT, SAXPY, DAXPY,
817           DSCAL, DGEMVN and DSYMVL 
818         * added a workaround for a cygwin issue that prevented compilation
819           of AVX512 code
820           
821 IBM Z:
822         * added autodetection of Z14
823         * fixed TRMM errors in the generic target
824         
825 ====================================================================
826 Version 0.3.2
827 30-Jul-2018
828
829 common:
830         * fixes for regressions caused by the rewrite of the thread
831           initialization code in 0.3.1
832
833 POWER:
834         * fixed cpu autodetection for the BSDs
835
836 MIPS64:
837         * fixed utest errors in AXPY, DSDOT, ROT and SWAP
838
839 x86_64:
840         * added autodetection of AMD Ryzen 2
841         * fixed build with older versions of MSVC
842
843 ====================================================================
844 Version 0.3.1
845 01-Jul-2018
846
847 common:
848         * rewritten thread initialization code with significantly reduced overhead
849         * added CBLAS interfaces to the IxAMIN BLAS extension functions
850         * fixed the lapack-test target
851         * CMAKE builds now create an OpenBLASConfig.cmake file
852         * ZAXPY now uses a single thread for small input sizes
853         * the LAPACK code was updated from Reference-LAPACK/lapack#253
854           (fixing LAPACKE interfaces to Aasen's functions)
855
856 POWER:
857         * corrected CROT and ZROT behaviour with zero INC_X
858
859 ARMV7:
860         * corrected xDOT behaviour with zero INC_X or INC_Y
861
862 x86_64:
863         * retired some older targets of DYNAMIC_ARCH builds to a new option DYNAMIC_OLDER,
864           this affects PENRYN,DUNNINGTON,OPTERON,OPTERON_SSE3,BOBCAT,ATOM and NANO
865           (which will still be supported via the slower PRESCOTT kernels when this option is not set)
866         * added an option DYNAMIC_LIST that (used in conjunction with DYNAMIC_ARCH) allows to 
867           specify the list of x86_64 targets to include. Any target not on the list will be supported 
868           by the Sandybridge or Nehalem kernels if available, or by Prescott.
869         * improved SWITCH_RATIO on Haswell for increased GEMM throughput
870         * added initial support for Intel Skylake X, including an AVX512 SGEMM kernel
871         * added autodetection of Intel Cannon Lake series as Skylake X
872         * added a default L2 cache size for hypervisors that return zero here (Chromebook)
873         * fixed a name clash with recent Windows10 headers that broke the build with (at least)
874           recent mingw from MSYS2
875         * fixed a link error in mixed clang/gfortran builds with OpenMP
876         * updated the OSX deployment target to 10.8
877         * switched on parallel make for builds on MS Windows by default
878
879 x86:
880         * fixed SSWAP and DSWAP behaviour with zero INC_X and INC_Y
881
882 ====================================================================
883 Version 0.3.0
884 23-May-2108
885
886 common:
887         * fixed some more thread race and locking bugs
888         * added preliminary support for calling an OpenMP build of the library from multiple threads
889         * removed performance impact of thread locks added in 0.2.20 on OpenMP code
890         * general code cleanup 
891         * optimized DSDOT implementation
892         * improved thread distribution for GEMM
893         * corrected IMATCOPY/OMATCOPY implementation
894         * fixed out-of-bounds accesses in the multithreaded xBMV/xPMV and SYMV implementations
895         * cmake build improvements
896         * pkgconfig file now contains build options
897         * openblas_get_config() now reports USE_OPENMP and NUM_THREADS settings used for the build
898         * corrections and improvements for systems with more than 64 cpus
899         * LAPACK code updated to 3.8.0 including later fixes
900         * added ReLAPACK, a recursive implementation of several LAPACK functions
901         * Rewrote ROTMG to handle cases that the netlib code failed to address
902         * Disabled (broken) multithreading code for xTRMV
903         * corrected prototypes of complex CBLAS functions to make our cblas.h match the generally accepted standard
904         * shared memory access failures on startup are now handled more gracefully
905         * restored utests from earlier releases (and made them pass on all affected systems)
906
907 SPARC:
908         * several fixes for cpu autodetection
909
910 POWER:
911         * corrected vector register overwriting in several Power8 kernels
912         * optimized additional BLAS functions
913
914 ARM:
915         * added support for CortexA53 and A72 
916         * added autodetection for ThunderX2T99
917         * made most optimized kernels the default for generic ARMv8 targets 
918
919 x86_64:
920         * parallelized DDOT kernel for Haswell
921         * changed alignment directives in assembly kernels to boost performance on OSX
922         * fixed register handling in the GEMV microkernels (bug exposed by gcc7)
923         * added support for building on OpenBSD and Dragonfly 
924         * updated compiler options to work with Intel release 2018
925         * support fully optimized build with clang/flang on Microsoft Windows
926         * fixed building on AIX
927
928 IBM Z:
929         * added optimized BLAS 1/2 functions
930
931 MIPS:
932         * fixed cpu autodetection helper code
933         * added mips32 1004K cpu (Mediatek MT7621 and similar SoC)
934         * added mips64 I6500 cpu
935
936 ====================================================================
937 Version 0.2.20
938 24-Jul-2017
939
940 common:
941         * Improved CMake support
942         * Fixed several thread race and locking bugs
943         * Fixed default LAPACK optimization level
944         * Updated LAPACK to 3.7.0
945         * Added ReLAPACK (https://github.com/HPAC/ReLAPACK, make BUILD_RELAPACK=1)
946
947 POWER:
948         * Optimizations for Power9
949         * Fixed several Power8 assembly bugs
950
951 ARM:
952         * New optimized Vulcan and ThunderX2T99 targets
953         * Support for ARMV7 SOFT_FP ABI (make ARM_SOFTFP_ABI=1)
954         * Detect all cpu cores including offline ones
955         * Fix compilation with CLANG
956         * Support building a shared library for Android
957
958 MIPS:
959         * Fixed several threading issues
960         * Fix compilation with CLANG
961
962 x86_64:
963         * Detect Intel Bay Trail and Apollo Lake
964         * Detect Intel Sky Lake and Kaby Lake
965         * Detect Intel Knights Landing
966         * Detect AMD A8, A10, A12 and Ryzen
967         * Support 64bit builds with Visual Studio
968         * Fix building with Intel and PGI compilers
969         * Fix building with MINGW and TDM-GCC
970         * Fix cmake builds for Haswell and related cpus
971         * Fix building for Sandybridge with CLANG 3.9
972         * Add support for the FLANG compiler
973
974 IBM Z:
975         * New target z13 with BLAS3 optimizations
976
977 ====================================================================
978 Version 0.2.19
979 1-Sep-2016
980 common:
981         * Improved cross compiling.
982         * Fix the bug on musl libc.
983
984 POWER:
985         * Optimize BLAS on Power8
986         * Fixed Julia+OpenBLAS bugs on Power8
987
988 MIPS:
989         * Optimize BLAS on MIPS P5600 and I6400 (Thanks, Shivraj Patil, Kaustubh Raste)
990
991 ARM:
992         * Improved on ARM Cortex-A57. (Thanks, Ashwin Sekhar T K)
993
994
995 ====================================================================
996 Version 0.2.18
997 12-Apr-2016
998 common:
999         * If you set MAKE_NB_JOBS flag less or equal than zero,
1000           make will be without -j.
1001
1002 x86/x86_64:
1003         * Support building Visual Studio static library. (#813, Thanks, theoractice)
1004         * Fix bugs to pass buidbot CI tests (http://build.openblas.net)
1005
1006 ARM:
1007         * Provide DGEMM 8x4 kernel for Cortex-A57 (Thanks, Ashwin Sekhar T K)
1008
1009 POWER:
1010         * Optimize S and C BLAS3 on Power8
1011         * Optimize BLAS2/1 on Power8
1012
1013 ====================================================================
1014 Version 0.2.17
1015 20-Mar-2016
1016 common:
1017         * Enable BUILD_LAPACK_DEPRECATED=1 by default.
1018
1019 ====================================================================
1020 Version 0.2.16
1021 15-Mar-2016
1022 common:
1023         * Avoid potential getenv segfault. (#716)
1024         * Import LAPACK svn bugfix #142-#147,#150-#155
1025
1026 x86/x86_64:
1027         * Optimize c/zgemv for AMD Bulldozer, Piledriver, Steamroller
1028         * Fix bug with scipy linalg test.
1029
1030 ARM:
1031         * Improve DGEMM for ARM Cortex-A57. (Thanks, Ashwin Sekhar T K)
1032
1033 POWER:
1034         * Optimize D and Z BLAS3 functions for Power8.
1035
1036 ====================================================================
1037 Version 0.2.16.rc1
1038 23-Feb-2016
1039 common:
1040         * Upgrade LAPACK to 3.6.0 version.
1041           Add BUILD_LAPACK_DEPRECATED option in Makefile.rule to build
1042           LAPACK deprecated functions.
1043         * Add MAKE_NB_JOBS option in Makefile.
1044           Force number of make jobs.This is particularly
1045           useful when using distcc. (#735. Thanks, Jerome Robert.)
1046         * Redesign unit test. Run unit/regression test at every build (Travis-CI and Appveyor).
1047         * Disable multi-threading for small size swap and ger. (#744. Thanks, Jerome Robert)
1048         * Improve small zger, zgemv, ztrmv using stack alloction (#727. Thanks, Jerome Robert)
1049         * Let openblas_get_num_threads return the number of active threads. 
1050           (#760. Thanks, Jerome Robert)
1051         * Support illumos(OmniOS). (#749. Thanks, Lauri Tirkkonen)
1052         * Fix LAPACK Dormbr, Dormlq bug. (#711, #713. Thanks, Brendan Tracey)
1053         * Update scipy benchmark script. (#745. Thanks, John Kirkham)
1054
1055 x86/x86_64:
1056         * Optimize trsm kernels for AMD Bulldozer, Piledriver, Steamroller.
1057         * Detect Intel Avoton.
1058         * Detect AMD Trinity, Richland, E2-3200.
1059         * Fix gemv performance bug on Mac OSX Intel Haswell.
1060         * Fix some bugs with CMake and Visual Studio
1061
1062 ARM:
1063         * Support and optimize Cortex-A57 AArch64.
1064           (#686. Thanks, Ashwin Sekhar TK)
1065         * Fix Android build on ARMV7 (#778. Thanks, Paul Mustiere)
1066         * Update ARMV6 kernels.
1067
1068 POWER:
1069         * Fix detection of POWER architecture
1070           (#684. Thanks, Sebastien Villemot)
1071
1072 ====================================================================
1073 Version 0.2.15
1074 27-Oct-2015
1075 common:
1076         * Support cmake on x86/x86-64. Natively compiling on MS Visual Studio.
1077           (experimental. Thank Hank Anderson for the initial cmake porting work.)
1078           
1079           On Linux and Mac OSX, OpenBLAS cmake supports assembly kernels.
1080           e.g. cmake .
1081                make
1082                make test (Optional)
1083
1084           On Windows MS Visual Studio, OpenBLAS cmake only support C kernels.
1085           (OpenBLAS uses AT&T style assembly, which is not supported by MSVC.)
1086           e.g. cmake -G "Visual Studio 12 Win64" .
1087                Open OpenBLAS.sln and build.
1088           
1089         * Enable MAX_STACK_ALLOC flags by default.
1090           Improve ger and gemv for small matrices.
1091         * Improve gemv parallel with small m and large n case.
1092         * Improve ?imatcopy when lda==ldb (#633. Thanks, Martin Koehler)
1093         * Add vecLib benchmarks (#565. Thanks, Andreas Noack.)
1094         * Fix LAPACK lantr for row major matrices (#634. Thanks, Dan Kortschak)
1095         * Fix LAPACKE lansy (#640. Thanks, Dan Kortschak)
1096         * Import bug fixes for LAPACKE s/dormlq, c/zunmlq 
1097         * Raise the signal when pthread_create fails (#668. Thanks, James K. Lowden)
1098         * Remove g77 from compiler list.
1099         * Enable AppVeyor Windows CI.
1100
1101 x86/x86-64:
1102         * Support pure C generic kernels for x86/x86-64.
1103         * Support Intel Boardwell and Skylake by Haswell kernels.
1104         * Support AMD Excavator by Steamroller kernels.
1105         * Optimize s/d/c/zdot for Intel SandyBridge and Haswell.
1106         * Optimize s/d/c/zdot for AMD Piledriver and Steamroller.
1107         * Optimize s/d/c/zapxy for Intel SandyBridge and Haswell.
1108         * Optimize s/d/c/zapxy for AMD Piledriver and Steamroller.
1109         * Optimize d/c/zscal for Intel Haswell, dscal for Intel SandyBridge.
1110         * Optimize d/c/zscal for AMD Bulldozer, Piledriver and Steamroller.
1111         * Optimize s/dger for Intel SandyBridge.
1112         * Optimize s/dsymv for Intel SandyBridge.
1113         * Optimize ssymv for Intel Haswell.
1114         * Optimize dgemv for Intel Nehalem and Haswell.
1115         * Optimize dtrmm for Intel Haswell.
1116
1117 ARM:
1118         * Support Android NDK armeabi-v7a-hard ABI (-mfloat-abi=hard)
1119           e.g. make HOSTCC=gcc CC=arm-linux-androideabi-gcc NO_LAPACK=1 TARGET=ARMV7
1120         * Fix lock, rpcc bugs (#616, #617. Thanks, Grazvydas Ignotas)
1121 POWER:
1122         * Support ppc64le platform (ELF ABI v2. #612. Thanks, Matthew Brandyberry.)
1123         * Support POWER7/8 by POWER6 kernels. (#612. Thanks, Fábio Perez.)
1124
1125 ====================================================================
1126 Version 0.2.14
1127 24-Mar-2015
1128 common:
1129         * Improve OpenBLASConfig.cmake. (#474, #475. Thanks, xantares.)
1130         * Improve ger and gemv for small matrices by stack allocation.
1131           e.g. make -DMAX_STACK_ALLOC=2048 (#482. Thanks, Jerome Robert.)
1132         * Introduce openblas_get_num_threads and openblas_get_num_procs.
1133           (#497. Thanks, Erik Schnetter.)
1134         * Add ATLAS-style ?geadd function. (#509. Thanks, Martin Köhler.)
1135         * Fix c/zsyr bug with negative incx. (#492.)
1136         * Fix race condition during shutdown causing a crash in
1137           gotoblas_set_affinity(). (#508. Thanks, Ton van den Heuvel.)
1138
1139 x86/x86-64:
1140         * Support AMD Streamroller.
1141
1142 ARM:
1143         * Add Cortex-A9 and Cortex-A15 targets.
1144
1145 ====================================================================
1146 Version 0.2.13
1147 3-Dec-2014
1148 common:
1149         * Add SYMBOLPREFIX and SYMBOLSUFFIX makefile options
1150           for adding a prefix or suffix to all exported symbol names
1151           in the shared library.(#459, Thanks Tony Kelman)
1152         * Provide OpenBLASConfig.cmake at installation.
1153         * Fix Fortran compiler detection on FreeBSD.
1154           (#470, Thanks Mike Nolta)
1155
1156
1157 x86/x86-64:
1158         * Add generic kernel files for x86-64. make TARGET=GENERIC
1159         * Fix a bug of sgemm kernel on Intel Sandy Bridge.
1160         * Fix c_check bug on some amd64 systems. (#471, Thanks Mike Nolta)
1161
1162 ARM:
1163         * Support APM's X-Gene 1 AArch64 processors.
1164           Optimize trmm and sgemm. (#465, Thanks Dave Nuechterlein)
1165
1166 ====================================================================
1167 Version 0.2.12
1168 13-Oct-2014
1169 common:
1170         * Added CBLAS interface for ?omatcopy and ?imatcopy.
1171         * Enable ?gemm3m functions.
1172         * Added benchmark for ?gemm3m.
1173         * Optimized multithreading lower limits.
1174         * Disabled SYMM3M and HEMM3M functions 
1175           because of segment violations.
1176
1177 x86/x86-64:
1178         * Improved axpy and symv performance on AMD Bulldozer.
1179         * Improved gemv performance on modern Intel and AMD CPUs.
1180
1181 ====================================================================
1182 Version 0.2.11
1183 18-Aug-2014
1184 common:
1185         * Added some benchmark codes.
1186         * Fix link error on Linux/musl.(Thanks Isaac Dunham)
1187
1188 x86/x86-64:
1189         * Improved s/c/zgemm performance for Intel Haswell.
1190         * Improved s/d/c/zgemv performance.
1191         * Support the big numa machine.(EXPERIMENT)
1192
1193 ARM:
1194         * Fix detection when cpuinfo uses "Processor". (Thanks Isaiah)
1195
1196 ====================================================================
1197 Version 0.2.10
1198 16-Jul-2014
1199 common:
1200         * Added BLAS extensions as following.
1201           s/d/c/zaxpby, s/d/c/zimatcopy, s/d/c/zomatcopy.
1202         * Added OPENBLAS_CORETYPE environment for dynamic_arch. (a86d34)
1203         * Added NO_AVX2 flag for old binutils. (#401)
1204         * Support outputing the CPU corename on runtime.(#407)
1205         * Patched LAPACK to fix bug 114, 117, 118. 
1206           (http://www.netlib.org/lapack/bug_list.html)
1207         * Disabled ?gemm3m for a work-around fix. (#400)
1208 x86/x86-64:
1209         * Fixed lots of bugs for optimized kernels on sandybridge,Haswell, 
1210           bulldozer, and piledriver.
1211           https://github.com/xianyi/OpenBLAS/wiki/Fixed-optimized-kernels-To-do-List
1212
1213 ARM:
1214         * Improved LAPACK testing.
1215
1216 ====================================================================
1217 Version 0.2.9
1218 10-Jun-2014
1219 common:
1220         * Improved the result for LAPACK testing. (#372)
1221         * Installed DLL to prefix/bin instead of prefix/lib. (#366)
1222         * Build import library on Windows.(#374)
1223 x86/x86-64:
1224         * To improve LAPACK testing, we fallback some kernels. (#372)
1225         https://github.com/xianyi/OpenBLAS/wiki/Fixed-optimized-kernels-To-do-List
1226
1227 ====================================================================
1228 Version 0.2.9.rc2
1229 06-Mar-2014
1230 common:
1231         * Added OPENBLAS_VERBOSE environment variable.(#338)
1232         * Make OpenBLAS thread-pool resilient to fork via pthread_atfork.
1233           (#294, Thank Olivier Grisel)
1234         * Rewrote rotmg
1235         * Fixed sdsdot bug.
1236 x86/x86-64:
1237         * Detect Intel Haswell for new Macbook.
1238
1239 ====================================================================
1240 Version 0.2.9.rc1
1241 13-Jan-2013
1242 common:
1243         * Update LAPACK to 3.5.0 version
1244         * Fixed compatiable issues with Clang and Pathscale compilers.
1245
1246 x86/x86-64:
1247         * Optimization on Intel Haswell.
1248         * Enable optimization kernels on AMD Bulldozer and Piledriver.
1249
1250 ARM:
1251         * Support ARMv6 and ARMv7 ISA.
1252         * Optimization on ARM Cortex-A9.
1253
1254 ====================================================================
1255 Version 0.2.8
1256 01-Aug-2013
1257 common:
1258         * Support Open64 5.0. (#266)
1259         * Add executable stack markings. (#262, Thank Sébastien Fabbro)
1260         * Respect user's LDFLAGS (Thank Sébastien Fabbro)
1261
1262 x86/x86-64:
1263         * Rollback bulldozer and piledriver kernels to barcelona kernels (#263)
1264           We will fix the compuational error bug in bulldozer and piledriver kernels.
1265
1266 ====================================================================
1267 Version 0.2.7
1268 20-Jul-2013
1269 common:
1270         * Support LSB (Linux Standard Base) 4.1.
1271           e.g. make CC=lsbcc
1272         * Include LAPACK 3.4.2 source codes to the repo.
1273           Avoid downloading at compile time.
1274         * Add NO_PARALLEL_MAKE flag to disable parallel make.
1275         * Create openblas_get_parallel to retrieve information which
1276           parallelization model is used by OpenBLAS. (Thank grisuthedragon)
1277         * Detect LLVM/Clang compiler. The default compiler is Clang on Mac OS X.
1278         * Change LIBSUFFIX from .lib to .a on windows.
1279         * A work-around for dtrti_U single thread bug. Replace it with LAPACK codes. (#191)
1280
1281 x86/x86-64:
1282         * Optimize c/zgemm, trsm, dgemv_n, ddot, daxpy, dcopy on
1283           AMD Bulldozer. (Thank Werner Saar)
1284         * Add Intel Haswell support (using Sandybridge optimizations).
1285           (Thank Dan Luu)
1286         * Add AMD Piledriver support (using Bulldozer optimizations).
1287         * Fix the computational error in zgemm avx kernel on
1288           Sandybridge. (#237)
1289         * Fix the overflow bug in gemv.
1290         * Fix the overflow bug in multi-threaded BLAS3, getrf when NUM_THREADS
1291           is very large.(#214, #221, #246).
1292 MIPS64:
1293         * Support loongcc (Open64 based) compiler for ICT Loongson 3A/B.
1294
1295 Power:
1296         * Support Power7 by old Power6 kernels. (#220)
1297
1298 ====================================================================
1299 Version 0.2.6
1300 2-Mar-2013
1301 common:
1302         * Improved OpenMP performance slightly. (d744c9)
1303         * Improved cblas.h compatibility with Intel MKL.(#185)
1304         * Fixed the overflowing bug in single thread cholesky factorization.
1305         * Fixed the overflowing buffer bug of multithreading hbmv and sbmv.(#174)
1306
1307 x86/x86-64:
1308         * Added AMD Bulldozer x86-64 S/DGEMM AVX kernels. (Thank Werner Saar)
1309           We will tune the performance in future.
1310         * Auto-detect Intel Xeon E7540.
1311         * Fixed the overflowing buffer bug of gemv. (#173)
1312         * Fixed the bug of s/cdot about invalid reading NAN on x86_64. (#189)
1313
1314 MIPS64:
1315
1316 ====================================================================
1317 Version 0.2.5
1318 26-Nov-2012
1319 common:
1320         * Added NO_SHARED flag to disable generating the shared library.
1321         * Compile LAPACKE with ILP64 modle when INTERFACE64=1 (#158)
1322         * Export LAPACK 3.4.2 symbols in shared library. (#147)
1323         * Only detect the number of physical CPU cores on Mac OSX. (#157)
1324         * Fixed NetBSD build. (#155)
1325         * Fixed compilation with TARGET=GENERIC. (#160)
1326 x86/x86-64:
1327         * Restore the original CPU affinity when calling
1328           openblas_set_num_threads(1) (#153)
1329         * Fixed a SEGFAULT bug in dgemv_t when m is very large.(#154)
1330 MIPS64:
1331
1332 ====================================================================
1333 Version 0.2.4
1334 8-Oct-2012
1335 common:
1336         * Upgraded LAPACK to 3.4.2 version. (#145)
1337         * Provided support for passing CFLAGS, FFLAGS, PFLAGS,
1338           FPFLAGS to make. (#137)
1339         * f77blas.h:compatibility for compilers without C99 complex
1340           number support. (#141)
1341 x86/x86-64:
1342         * Added NO_AVX flag. Check OS supporting AVX on runtime. (#139)
1343         * Fixed zdot incompatibility ABI issue with GCC 4.7 on
1344           Windows 32-bit. (#140)
1345 MIPS64:
1346         * Fixed the generation of shared library bug.
1347         * Fixed the detection bug on the Loongson 3A server.
1348 ====================================================================
1349 Version 0.2.3
1350 20-Aug-2012
1351 common:
1352         * Fixed LAPACK unstable bug about ?laswp. (#130)
1353         * Fixed the shared library bug about unloading the library on
1354           Linux (#132).
1355         * Fixed the compilation failure on BlueGene/P (TARGET=PPC440FP2)
1356           Please use gcc and IBM xlf. (#134)
1357 x86/x86-64:
1358         * Supported goto_set_num_threads and openblas_set_num_threads
1359           APIs in Windows. They can set the number of threads on runtime.
1360
1361 ====================================================================
1362 Version 0.2.2
1363 6-July-2012
1364 common:
1365         * Fixed exporting DLL functions bug on Windows/MingW
1366         * Support GNU Hurd (Thank Sylvestre Ledru)
1367         * Support kfreebsd kernel (Thank Sylvestre Ledru)
1368 x86/x86-64:
1369         * Support Intel Sandy Bridge 22nm desktop/mobile CPU
1370 SPARC:
1371         * Improve the detection of SPARC (Thank Sylvestre Ledru)
1372
1373 ====================================================================
1374 Version 0.2.1
1375 30-Jun-2012
1376 common:
1377 x86/x86-64:
1378         * Fixed the SEGFAULT bug about hyper-theading
1379         * Support AMD Bulldozer by using GotoBLAS2 AMD Barcelona codes
1380
1381 ====================================================================
1382 Version 0.2.0
1383 26-Jun-2012
1384 common:
1385         * Removed the limitation (64) of numbers of CPU cores.
1386           Now, it supports 256 cores at max.
1387         * Supported clang compiler.
1388         * Fixed some build bugs on FreeBSD
1389 x86/x86-64:
1390         * Optimized Level-3 BLAS on Intel Sandy Bridge x86-64 by AVX instructions.
1391           Please use gcc >= 4.6 or clang >=3.1.
1392         * Support AMD Bobcat by using GotoBLAS2 AMD Barcelona codes.
1393
1394 ====================================================================
1395 Version 0.1.1
1396 29-Apr-2012
1397 common:
1398         * Upgraded LAPACK to 3.4.1 version. (Thank Zaheer Chothia)
1399         * Supported LAPACKE, a C interface to LAPACKE. (Thank Zaheer Chothia)
1400         * Fixed the build bug (MD5 and download) on Mac OSX.
1401         * Auto download CUnit 2.1.2-2 from SF.net with UTEST_CHECK=1.
1402         * Fxied the compatibility issue for compilers without C99 complex number
1403           (e.g. Visual Studio)
1404 x86/x86_64:
1405         * Auto-detect Intel Sandy Bridge Core i7-3xxx & Xeon E7 Westmere-EX.
1406         * Test alpha=Nan in dscale.
1407         * Fixed a SEGFAULT bug in samax on x86 windows.
1408
1409 ====================================================================
1410 Version 0.1.0
1411 23-Mar-2012
1412 common:
1413         * Set soname of shared library on Linux.
1414         * Added LIBNAMESUFFIX flag in Makefile.rule. The user can use
1415           this flag to control the library name, e.g. libopenblas.a,
1416           libopenblas_ifort.a or libopenblas_omp.a.
1417         * Added GEMM_MULTITHREAD_THRESHOLD flag in Makefile.rule.
1418           The lib use single thread in GEMM function with small matrices.
1419 x86/x86_64:
1420         * Used GEMV SSE/SSE2 kernels on x86 32-bit.
1421         * Exported CBLAS functions in Windows DLL.
1422 MIPS64:
1423         * Completed Level-3 BLAS optimization on Loongson 3A CPU.
1424         * Improved GEMV performance on Loongson 3A CPU.
1425         * Improved Level-3 BLAS performance on Loongson 3B CPU. (EXPERIMENT)
1426
1427 ====================================================================
1428 Version 0.1 alpha2.5
1429 19-Feb-2012
1430 common:
1431         * Fixed missing "#include <sched.h>" bug on Mac OS X.
1432           Thank Mike Nolta for the patch.
1433         * Upgraded LAPACK to 3.4.0 version
1434         * Fixed a bug on Mac OS X. Don't require SystemStubs on OS X.
1435           SystemStubs does not exist on Lion. Thank Stefan Karpinski.
1436         * Improved README with using OpenMP. Check the internal threads
1437           count less than or equal to omp_get_max_threads()
1438 x86/x86_64:
1439         * Auto-detect Intel Core i6/i7 (Sandy Bridge) CPU with Nehalem assembly kernels
1440         * Fixed some bugs on MingW 64-bit including zgemv, cdot, zdot.
1441
1442 ====================================================================
1443 Version 0.1 alpha2.4
1444 18-Sep-2011
1445 common:
1446         * Fixed a bug about installation. The header file "fblas77.h"
1447           works fine now.
1448         * Fixed #61 a building bug about setting TARGET and DYNAMIC_ARCH.
1449         * Try to handle absolute path of shared library in OSX. (#57)
1450           Thank Dr Kane O'Donnell.
1451         * Changed the installation folder layout to $(PREFIX)/include and
1452           $(PREFIX)/lib
1453
1454 x86/x86_64:
1455         * Fixed #58 zdot/xdot SEGFAULT bug with GCC-4.6 on x86. According
1456           to i386 calling convention, The callee should remove the first
1457           hidden parameter.Thank Mr. John for this patch.
1458
1459 ====================================================================
1460 Version 0.1 alpha2.3
1461 5-Sep-2011
1462
1463 x86/x86_64:
1464         *  Added DTB_ENTRIES into dynamic arch setting parameters. Now,
1465            it can read DTB_ENTRIES on runtime. (Refs issue #55 on github)
1466
1467 ====================================================================
1468 Version 0.1 alpha2.2
1469 14-Jul-2011
1470
1471 common:
1472         * Fixed a building bug when DYNAMIC_ARCH=1 & INTERFACE64=1.
1473           (Refs issue #44 on github)
1474
1475 ====================================================================
1476 Version 0.1 alpha2.1
1477 28-Jun-2011
1478
1479 common:
1480         * Stop the build and output the error message when detecting
1481           fortran compiler failed. (Refs issue #42 on github)
1482
1483 ====================================================================
1484 Version 0.1 alpha2
1485 23-Jun-2011
1486
1487 common:
1488         * Fixed blasint undefined bug in <cblas.h> file. Other software
1489           could include this header successfully(Refs issue #13 on github)
1490         * Fixed the SEGFAULT bug on 64 cores. On SMP server, the number
1491           of CPUs or cores should be less than or equal to 64.(Refs issue #14
1492           on github)
1493         * Support "void goto_set_num_threads(int num_threads)" and "void
1494           openblas_set_num_threads(int num_threads)" when USE_OPENMP=1
1495         * Added extern "C" to support C++. Thank Tasio for the patch(Refs
1496           issue #21 on github)
1497         * Provided an error message when the arch is not supported.(Refs
1498           issue #19 on github)
1499         * Fixed issue #23. Fixed a bug of f_check script about generating link flags.
1500         * Added openblas_set_num_threads for Fortran.
1501         * Fixed #25 a wrong result of rotmg.
1502         * Fixed a bug about detecting underscore prefix in c_check.
1503         * Print the wall time (cycles) with enabling FUNCTION_PROFILE
1504         * Fixed #35 a build bug with NO_LAPACK=1 & DYNAMIC_ARCH=1
1505         * Added install target. You can use "make install". (Refs #20)
1506
1507
1508 x86/x86_64:
1509         * Fixed #28 a wrong result of dsdot on x86_64.
1510         * Fixed #32 a SEGFAULT bug of zdotc with gcc-4.6.
1511         * Fixed #33 ztrmm bug on Nehalem.
1512         * Work-around #27 the low performance axpy issue with small imput size & multithreads.
1513
1514 MIPS64:
1515         * Fixed #28 a wrong result of dsdot on Loongson3A/MIPS64.
1516         * Optimized single/double precision BLAS Level3 on Loongson3A/MIPS64. (Refs #2)
1517         * Optimized single/double precision axpy function on Loongson3A/MIPS64. (Refs #3)
1518
1519 ====================================================================
1520 Version 0.1 alpha1
1521 20-Mar-2011
1522
1523 common:
1524         * Support "make  NO_LAPACK=1" to build the library without
1525           LAPACK functions.
1526         * Fixed randomly SEGFAULT when nodemask==NULL with above Linux 2.6.34.
1527           Thank Mr.Ei-ji Nakama providing this patch. (Refs issue #12 on github)
1528         * Added DEBUG=1 rule in Makefile.rule to build debug version.
1529         * Disable compiling quad precision in reference BLAS library(netlib BLAS).
1530         * Added unit testcases in utest/ subdir. Used  CUnit framework.
1531         * Supported OPENBLAS_* & GOTO_* environment variables (Pleas see README)
1532         * Imported GotoBLAS2 1.13 BSD version
1533
1534 x86/x86_64:
1535         * On x86 32bits, fixed a bug in zdot_sse2.S line 191. This would casue
1536           zdotu & zdotc failures. Instead, work-around it. (Refs issue #8 #9 on github)
1537         * Modified ?axpy functions to return same netlib BLAS results
1538           when incx==0 or incy==0 (Refs issue #7 on github)
1539         * Modified ?swap functions to return same netlib BLAS results
1540           when incx==0 or incy==0 (Refs issue #6 on github)
1541         * Modified ?rot functions to return same netlib BLAS results
1542           when incx==0 or incy==0 (Refs issue #4 on github)
1543         * Detect Intel Westmere,Intel Clarkdale and Intel Arrandale
1544           to use Nehalem codes.
1545         * Fixed a typo bug about compiling dynamic ARCH library.
1546 MIPS64:
1547         * Improve daxpy performance on ICT Loongson 3A.
1548         * Supported ICT Loongson 3A CPU (Refs issue #1 on github)
1549 ====================================================================