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