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