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