Update doc for 0.2.18 version.
[platform/upstream/openblas.git] / Changelog.txt
1 OpenBLAS ChangeLog
2 ====================================================================
3 Version 0.2.18
4 12-Apr-2016
5 common:
6         * If you set MAKE_NB_JOBS flag less or equal than zero,
7           make will be without -j.
8
9 x86/x86_64:
10         * Support building Visual Studio static library. (#813, Thanks, theoractice)
11         * Fix bugs to pass buidbot CI tests (http://build.openblas.net)
12
13 ARM:
14         * Provide DGEMM 8x4 kernel for Cortex-A57 (Thanks, Ashwin Sekhar T K)
15
16 POWER:
17         * Optimize S and C BLAS3 on Power8
18         * Optimize BLAS2/1 on Power8
19
20 ====================================================================
21 Version 0.2.17
22 20-Mar-2016
23 common:
24         * Enable BUILD_LAPACK_DEPRECATED=1 by default.
25
26 ====================================================================
27 Version 0.2.16
28 15-Mar-2016
29 common:
30         * Avoid potential getenv segfault. (#716)
31         * Import LAPACK svn bugfix #142-#147,#150-#155
32
33 x86/x86_64:
34         * Optimize c/zgemv for AMD Bulldozer, Piledriver, Steamroller
35         * Fix bug with scipy linalg test.
36
37 ARM:
38         * Improve DGEMM for ARM Cortex-A57. (Thanks, Ashwin Sekhar T K)
39
40 POWER:
41         * Optimize D and Z BLAS3 functions for Power8.
42
43 ====================================================================
44 Version 0.2.16.rc1
45 23-Feb-2016
46 common:
47         * Upgrade LAPACK to 3.6.0 version.
48           Add BUILD_LAPACK_DEPRECATED option in Makefile.rule to build
49           LAPACK deprecated functions.
50         * Add MAKE_NB_JOBS option in Makefile.
51           Force number of make jobs.This is particularly
52           useful when using distcc. (#735. Thanks, Jerome Robert.)
53         * Redesign unit test. Run unit/regression test at every build (Travis-CI and Appveyor).
54         * Disable multi-threading for small size swap and ger. (#744. Thanks, Jerome Robert)
55         * Improve small zger, zgemv, ztrmv using stack alloction (#727. Thanks, Jerome Robert)
56         * Let openblas_get_num_threads return the number of active threads. 
57           (#760. Thanks, Jerome Robert)
58         * Support illumos(OmniOS). (#749. Thanks, Lauri Tirkkonen)
59         * Fix LAPACK Dormbr, Dormlq bug. (#711, #713. Thanks, Brendan Tracey)
60         * Update scipy benchmark script. (#745. Thanks, John Kirkham)
61
62 x86/x86_64:
63         * Optimize trsm kernels for AMD Bulldozer, Piledriver, Steamroller.
64         * Detect Intel Avoton.
65         * Detect AMD Trinity, Richland, E2-3200.
66         * Fix gemv performance bug on Mac OSX Intel Haswell.
67         * Fix some bugs with CMake and Visual Studio
68
69 ARM:
70         * Support and optimize Cortex-A57 AArch64.
71           (#686. Thanks, Ashwin Sekhar TK)
72         * Fix Android build on ARMV7 (#778. Thanks, Paul Mustiere)
73         * Update ARMV6 kernels.
74
75 POWER:
76         * Fix detection of POWER architecture
77           (#684. Thanks, Sebastien Villemot)
78
79 ====================================================================
80 Version 0.2.15
81 27-Oct-2015
82 common:
83         * Support cmake on x86/x86-64. Natively compiling on MS Visual Studio.
84           (experimental. Thank Hank Anderson for the initial cmake porting work.)
85           
86           On Linux and Mac OSX, OpenBLAS cmake supports assembly kernels.
87           e.g. cmake .
88                make
89                make test (Optional)
90
91           On Windows MS Visual Studio, OpenBLAS cmake only support C kernels.
92           (OpenBLAS uses AT&T style assembly, which is not supported by MSVC.)
93           e.g. cmake -G "Visual Studio 12 Win64" .
94                Open OpenBLAS.sln and build.
95           
96         * Enable MAX_STACK_ALLOC flags by default.
97           Improve ger and gemv for small matrices.
98         * Improve gemv parallel with small m and large n case.
99         * Improve ?imatcopy when lda==ldb (#633. Thanks, Martin Koehler)
100         * Add vecLib benchmarks (#565. Thanks, Andreas Noack.)
101         * Fix LAPACK lantr for row major matrices (#634. Thanks, Dan Kortschak)
102         * Fix LAPACKE lansy (#640. Thanks, Dan Kortschak)
103         * Import bug fixes for LAPACKE s/dormlq, c/zunmlq 
104         * Raise the signal when pthread_create fails (#668. Thanks, James K. Lowden)
105         * Remove g77 from compiler list.
106         * Enable AppVeyor Windows CI.
107
108 x86/x86-64:
109         * Support pure C generic kernels for x86/x86-64.
110         * Support Intel Boardwell and Skylake by Haswell kernels.
111         * Support AMD Excavator by Steamroller kernels.
112         * Optimize s/d/c/zdot for Intel SandyBridge and Haswell.
113         * Optimize s/d/c/zdot for AMD Piledriver and Steamroller.
114         * Optimize s/d/c/zapxy for Intel SandyBridge and Haswell.
115         * Optimize s/d/c/zapxy for AMD Piledriver and Steamroller.
116         * Optimize d/c/zscal for Intel Haswell, dscal for Intel SandyBridge.
117         * Optimize d/c/zscal for AMD Bulldozer, Piledriver and Steamroller.
118         * Optimize s/dger for Intel SandyBridge.
119         * Optimize s/dsymv for Intel SandyBridge.
120         * Optimize ssymv for Intel Haswell.
121         * Optimize dgemv for Intel Nehalem and Haswell.
122         * Optimize dtrmm for Intel Haswell.
123
124 ARM:
125         * Support Android NDK armeabi-v7a-hard ABI (-mfloat-abi=hard)
126           e.g. make HOSTCC=gcc CC=arm-linux-androideabi-gcc NO_LAPACK=1 TARGET=ARMV7
127         * Fix lock, rpcc bugs (#616, #617. Thanks, Grazvydas Ignotas)
128 POWER:
129         * Support ppc64le platform (ELF ABI v2. #612. Thanks, Matthew Brandyberry.)
130         * Support POWER7/8 by POWER6 kernels. (#612. Thanks, Fábio Perez.)
131
132 ====================================================================
133 Version 0.2.14
134 24-Mar-2015
135 common:
136         * Improve OpenBLASConfig.cmake. (#474, #475. Thanks, xantares.)
137         * Improve ger and gemv for small matrices by stack allocation.
138           e.g. make -DMAX_STACK_ALLOC=2048 (#482. Thanks, Jerome Robert.)
139         * Introduce openblas_get_num_threads and openblas_get_num_procs.
140           (#497. Thanks, Erik Schnetter.)
141         * Add ATLAS-style ?geadd function. (#509. Thanks, Martin Köhler.)
142         * Fix c/zsyr bug with negative incx. (#492.)
143         * Fix race condition during shutdown causing a crash in
144           gotoblas_set_affinity(). (#508. Thanks, Ton van den Heuvel.)
145
146 x86/x86-64:
147         * Support AMD Streamroller.
148
149 ARM:
150         * Add Cortex-A9 and Cortex-A15 targets.
151
152 ====================================================================
153 Version 0.2.13
154 3-Dec-2014
155 common:
156         * Add SYMBOLPREFIX and SYMBOLSUFFIX makefile options
157           for adding a prefix or suffix to all exported symbol names
158           in the shared library.(#459, Thanks Tony Kelman)
159         * Provide OpenBLASConfig.cmake at installation.
160         * Fix Fortran compiler detection on FreeBSD.
161           (#470, Thanks Mike Nolta)
162
163
164 x86/x86-64:
165         * Add generic kernel files for x86-64. make TARGET=GENERIC
166         * Fix a bug of sgemm kernel on Intel Sandy Bridge.
167         * Fix c_check bug on some amd64 systems. (#471, Thanks Mike Nolta)
168
169 ARM:
170         * Support APM's X-Gene 1 AArch64 processors.
171           Optimize trmm and sgemm. (#465, Thanks Dave Nuechterlein)
172
173 ====================================================================
174 Version 0.2.12
175 13-Oct-2014
176 common:
177         * Added CBLAS interface for ?omatcopy and ?imatcopy.
178         * Enable ?gemm3m functions.
179         * Added benchmark for ?gemm3m.
180         * Optimized multithreading lower limits.
181         * Disabled SYMM3M and HEMM3M functions 
182           because of segment violations.
183
184 x86/x86-64:
185         * Improved axpy and symv performance on AMD Bulldozer.
186         * Improved gemv performance on modern Intel and AMD CPUs.
187
188 ====================================================================
189 Version 0.2.11
190 18-Aug-2014
191 common:
192         * Added some benchmark codes.
193         * Fix link error on Linux/musl.(Thanks Isaac Dunham)
194
195 x86/x86-64:
196         * Improved s/c/zgemm performance for Intel Haswell.
197         * Improved s/d/c/zgemv performance.
198         * Support the big numa machine.(EXPERIMENT)
199
200 ARM:
201         * Fix detection when cpuinfo uses "Processor". (Thanks Isaiah)
202
203 ====================================================================
204 Version 0.2.10
205 16-Jul-2014
206 common:
207         * Added BLAS extensions as following.
208           s/d/c/zaxpby, s/d/c/zimatcopy, s/d/c/zomatcopy.
209         * Added OPENBLAS_CORETYPE environment for dynamic_arch. (a86d34)
210         * Added NO_AVX2 flag for old binutils. (#401)
211         * Support outputing the CPU corename on runtime.(#407)
212         * Patched LAPACK to fix bug 114, 117, 118. 
213           (http://www.netlib.org/lapack/bug_list.html)
214         * Disabled ?gemm3m for a work-around fix. (#400)
215 x86/x86-64:
216         * Fixed lots of bugs for optimized kernels on sandybridge,Haswell, 
217           bulldozer, and piledriver.
218           https://github.com/xianyi/OpenBLAS/wiki/Fixed-optimized-kernels-To-do-List
219
220 ARM:
221         * Improved LAPACK testing.
222
223 ====================================================================
224 Version 0.2.9
225 10-Jun-2014
226 common:
227         * Improved the result for LAPACK testing. (#372)
228         * Installed DLL to prefix/bin instead of prefix/lib. (#366)
229         * Build import library on Windows.(#374)
230 x86/x86-64:
231         * To improve LAPACK testing, we fallback some kernels. (#372)
232         https://github.com/xianyi/OpenBLAS/wiki/Fixed-optimized-kernels-To-do-List
233
234 ====================================================================
235 Version 0.2.9.rc2
236 06-Mar-2014
237 common:
238         * Added OPENBLAS_VERBOSE environment variable.(#338)
239         * Make OpenBLAS thread-pool resilient to fork via pthread_atfork.
240           (#294, Thank Olivier Grisel)
241         * Rewrote rotmg
242         * Fixed sdsdot bug.
243 x86/x86-64:
244         * Detect Intel Haswell for new Macbook.
245
246 ====================================================================
247 Version 0.2.9.rc1
248 13-Jan-2013
249 common:
250         * Update LAPACK to 3.5.0 version
251         * Fixed compatiable issues with Clang and Pathscale compilers.
252
253 x86/x86-64:
254         * Optimization on Intel Haswell.
255         * Enable optimization kernels on AMD Bulldozer and Piledriver.
256
257 ARM:
258         * Support ARMv6 and ARMv7 ISA.
259         * Optimization on ARM Cortex-A9.
260
261 ====================================================================
262 Version 0.2.8
263 01-Aug-2013
264 common:
265         * Support Open64 5.0. (#266)
266         * Add executable stack markings. (#262, Thank Sébastien Fabbro)
267         * Respect user's LDFLAGS (Thank Sébastien Fabbro)
268
269 x86/x86-64:
270         * Rollback bulldozer and piledriver kernels to barcelona kernels (#263)
271           We will fix the compuational error bug in bulldozer and piledriver kernels.
272
273 ====================================================================
274 Version 0.2.7
275 20-Jul-2013
276 common:
277         * Support LSB (Linux Standard Base) 4.1.
278           e.g. make CC=lsbcc
279         * Include LAPACK 3.4.2 source codes to the repo.
280           Avoid downloading at compile time.
281         * Add NO_PARALLEL_MAKE flag to disable parallel make.
282         * Create openblas_get_parallel to retrieve information which
283           parallelization model is used by OpenBLAS. (Thank grisuthedragon)
284         * Detect LLVM/Clang compiler. The default compiler is Clang on Mac OS X.
285         * Change LIBSUFFIX from .lib to .a on windows.
286         * A work-around for dtrti_U single thread bug. Replace it with LAPACK codes. (#191)
287
288 x86/x86-64:
289         * Optimize c/zgemm, trsm, dgemv_n, ddot, daxpy, dcopy on
290           AMD Bulldozer. (Thank Werner Saar)
291         * Add Intel Haswell support (using Sandybridge optimizations).
292           (Thank Dan Luu)
293         * Add AMD Piledriver support (using Bulldozer optimizations).
294         * Fix the computational error in zgemm avx kernel on
295           Sandybridge. (#237)
296         * Fix the overflow bug in gemv.
297         * Fix the overflow bug in multi-threaded BLAS3, getrf when NUM_THREADS
298           is very large.(#214, #221, #246).
299 MIPS64:
300         * Support loongcc (Open64 based) compiler for ICT Loongson 3A/B.
301
302 Power:
303         * Support Power7 by old Power6 kernels. (#220)
304
305 ====================================================================
306 Version 0.2.6
307 2-Mar-2013
308 common:
309         * Improved OpenMP performance slightly. (d744c9)
310         * Improved cblas.h compatibility with Intel MKL.(#185)
311         * Fixed the overflowing bug in single thread cholesky factorization.
312         * Fixed the overflowing buffer bug of multithreading hbmv and sbmv.(#174)
313
314 x86/x86-64:
315         * Added AMD Bulldozer x86-64 S/DGEMM AVX kernels. (Thank Werner Saar)
316           We will tune the performance in future.
317         * Auto-detect Intel Xeon E7540.
318         * Fixed the overflowing buffer bug of gemv. (#173)
319         * Fixed the bug of s/cdot about invalid reading NAN on x86_64. (#189)
320
321 MIPS64:
322
323 ====================================================================
324 Version 0.2.5
325 26-Nov-2012
326 common:
327         * Added NO_SHARED flag to disable generating the shared library.
328         * Compile LAPACKE with ILP64 modle when INTERFACE64=1 (#158)
329         * Export LAPACK 3.4.2 symbols in shared library. (#147)
330         * Only detect the number of physical CPU cores on Mac OSX. (#157)
331         * Fixed NetBSD build. (#155)
332         * Fixed compilation with TARGET=GENERIC. (#160)
333 x86/x86-64:
334         * Restore the original CPU affinity when calling
335           openblas_set_num_threads(1) (#153)
336         * Fixed a SEGFAULT bug in dgemv_t when m is very large.(#154)
337 MIPS64:
338
339 ====================================================================
340 Version 0.2.4
341 8-Oct-2012
342 common:
343         * Upgraded LAPACK to 3.4.2 version. (#145)
344         * Provided support for passing CFLAGS, FFLAGS, PFLAGS,
345           FPFLAGS to make. (#137)
346         * f77blas.h:compatibility for compilers without C99 complex
347           number support. (#141)
348 x86/x86-64:
349         * Added NO_AVX flag. Check OS supporting AVX on runtime. (#139)
350         * Fixed zdot incompatibility ABI issue with GCC 4.7 on
351           Windows 32-bit. (#140)
352 MIPS64:
353         * Fixed the generation of shared library bug.
354         * Fixed the detection bug on the Loongson 3A server.
355 ====================================================================
356 Version 0.2.3
357 20-Aug-2012
358 common:
359         * Fixed LAPACK unstable bug about ?laswp. (#130)
360         * Fixed the shared library bug about unloading the library on
361           Linux (#132).
362         * Fixed the compilation failure on BlueGene/P (TARGET=PPC440FP2)
363           Please use gcc and IBM xlf. (#134)
364 x86/x86-64:
365         * Supported goto_set_num_threads and openblas_set_num_threads
366           APIs in Windows. They can set the number of threads on runtime.
367
368 ====================================================================
369 Version 0.2.2
370 6-July-2012
371 common:
372         * Fixed exporting DLL functions bug on Windows/MingW
373         * Support GNU Hurd (Thank Sylvestre Ledru)
374         * Support kfreebsd kernel (Thank Sylvestre Ledru)
375 x86/x86-64:
376         * Support Intel Sandy Bridge 22nm desktop/mobile CPU
377 SPARC:
378         * Improve the detection of SPARC (Thank Sylvestre Ledru)
379
380 ====================================================================
381 Version 0.2.1
382 30-Jun-2012
383 common:
384 x86/x86-64:
385         * Fixed the SEGFAULT bug about hyper-theading
386         * Support AMD Bulldozer by using GotoBLAS2 AMD Barcelona codes
387
388 ====================================================================
389 Version 0.2.0
390 26-Jun-2012
391 common:
392         * Removed the limitation (64) of numbers of CPU cores.
393           Now, it supports 256 cores at max.
394         * Supported clang compiler.
395         * Fixed some build bugs on FreeBSD
396 x86/x86-64:
397         * Optimized Level-3 BLAS on Intel Sandy Bridge x86-64 by AVX instructions.
398           Please use gcc >= 4.6 or clang >=3.1.
399         * Support AMD Bobcat by using GotoBLAS2 AMD Barcelona codes.
400
401 ====================================================================
402 Version 0.1.1
403 29-Apr-2012
404 common:
405         * Upgraded LAPACK to 3.4.1 version. (Thank Zaheer Chothia)
406         * Supported LAPACKE, a C interface to LAPACKE. (Thank Zaheer Chothia)
407         * Fixed the build bug (MD5 and download) on Mac OSX.
408         * Auto download CUnit 2.1.2-2 from SF.net with UTEST_CHECK=1.
409         * Fxied the compatibility issue for compilers without C99 complex number
410           (e.g. Visual Studio)
411 x86/x86_64:
412         * Auto-detect Intel Sandy Bridge Core i7-3xxx & Xeon E7 Westmere-EX.
413         * Test alpha=Nan in dscale.
414         * Fixed a SEGFAULT bug in samax on x86 windows.
415
416 ====================================================================
417 Version 0.1.0
418 23-Mar-2012
419 common:
420         * Set soname of shared library on Linux.
421         * Added LIBNAMESUFFIX flag in Makefile.rule. The user can use
422           this flag to control the library name, e.g. libopenblas.a,
423           libopenblas_ifort.a or libopenblas_omp.a.
424         * Added GEMM_MULTITHREAD_THRESHOLD flag in Makefile.rule.
425           The lib use single thread in GEMM function with small matrices.
426 x86/x86_64:
427         * Used GEMV SSE/SSE2 kernels on x86 32-bit.
428         * Exported CBLAS functions in Windows DLL.
429 MIPS64:
430         * Completed Level-3 BLAS optimization on Loongson 3A CPU.
431         * Improved GEMV performance on Loongson 3A CPU.
432         * Improved Level-3 BLAS performance on Loongson 3B CPU. (EXPERIMENT)
433
434 ====================================================================
435 Version 0.1 alpha2.5
436 19-Feb-2012
437 common:
438         * Fixed missing "#include <sched.h>" bug on Mac OS X.
439           Thank Mike Nolta for the patch.
440         * Upgraded LAPACK to 3.4.0 version
441         * Fixed a bug on Mac OS X. Don't require SystemStubs on OS X.
442           SystemStubs does not exist on Lion. Thank Stefan Karpinski.
443         * Improved README with using OpenMP. Check the internal threads
444           count less than or equal to omp_get_max_threads()
445 x86/x86_64:
446         * Auto-detect Intel Core i6/i7 (Sandy Bridge) CPU with Nehalem assembly kernels
447         * Fixed some bugs on MingW 64-bit including zgemv, cdot, zdot.
448
449 ====================================================================
450 Version 0.1 alpha2.4
451 18-Sep-2011
452 common:
453         * Fixed a bug about installation. The header file "fblas77.h"
454           works fine now.
455         * Fixed #61 a building bug about setting TARGET and DYNAMIC_ARCH.
456         * Try to handle absolute path of shared library in OSX. (#57)
457           Thank Dr Kane O'Donnell.
458         * Changed the installation folder layout to $(PREFIX)/include and
459           $(PREFIX)/lib
460
461 x86/x86_64:
462         * Fixed #58 zdot/xdot SEGFAULT bug with GCC-4.6 on x86. According
463           to i386 calling convention, The callee should remove the first
464           hidden parameter.Thank Mr. John for this patch.
465
466 ====================================================================
467 Version 0.1 alpha2.3
468 5-Sep-2011
469
470 x86/x86_64:
471         *  Added DTB_ENTRIES into dynamic arch setting parameters. Now,
472            it can read DTB_ENTRIES on runtime. (Refs issue #55 on github)
473
474 ====================================================================
475 Version 0.1 alpha2.2
476 14-Jul-2011
477
478 common:
479         * Fixed a building bug when DYNAMIC_ARCH=1 & INTERFACE64=1.
480           (Refs issue #44 on github)
481
482 ====================================================================
483 Version 0.1 alpha2.1
484 28-Jun-2011
485
486 common:
487         * Stop the build and output the error message when detecting
488           fortran compiler failed. (Refs issue #42 on github)
489
490 ====================================================================
491 Version 0.1 alpha2
492 23-Jun-2011
493
494 common:
495         * Fixed blasint undefined bug in <cblas.h> file. Other software
496           could include this header successfully(Refs issue #13 on github)
497         * Fixed the SEGFAULT bug on 64 cores. On SMP server, the number
498           of CPUs or cores should be less than or equal to 64.(Refs issue #14
499           on github)
500         * Support "void goto_set_num_threads(int num_threads)" and "void
501           openblas_set_num_threads(int num_threads)" when USE_OPENMP=1
502         * Added extern "C" to support C++. Thank Tasio for the patch(Refs
503           issue #21 on github)
504         * Provided an error message when the arch is not supported.(Refs
505           issue #19 on github)
506         * Fixed issue #23. Fixed a bug of f_check script about generating link flags.
507         * Added openblas_set_num_threads for Fortran.
508         * Fixed #25 a wrong result of rotmg.
509         * Fixed a bug about detecting underscore prefix in c_check.
510         * Print the wall time (cycles) with enabling FUNCTION_PROFILE
511         * Fixed #35 a build bug with NO_LAPACK=1 & DYNAMIC_ARCH=1
512         * Added install target. You can use "make install". (Refs #20)
513
514
515 x86/x86_64:
516         * Fixed #28 a wrong result of dsdot on x86_64.
517         * Fixed #32 a SEGFAULT bug of zdotc with gcc-4.6.
518         * Fixed #33 ztrmm bug on Nehalem.
519         * Work-around #27 the low performance axpy issue with small imput size & multithreads.
520
521 MIPS64:
522         * Fixed #28 a wrong result of dsdot on Loongson3A/MIPS64.
523         * Optimized single/double precision BLAS Level3 on Loongson3A/MIPS64. (Refs #2)
524         * Optimized single/double precision axpy function on Loongson3A/MIPS64. (Refs #3)
525
526 ====================================================================
527 Version 0.1 alpha1
528 20-Mar-2011
529
530 common:
531         * Support "make  NO_LAPACK=1" to build the library without
532           LAPACK functions.
533         * Fixed randomly SEGFAULT when nodemask==NULL with above Linux 2.6.34.
534           Thank Mr.Ei-ji Nakama providing this patch. (Refs issue #12 on github)
535         * Added DEBUG=1 rule in Makefile.rule to build debug version.
536         * Disable compiling quad precision in reference BLAS library(netlib BLAS).
537         * Added unit testcases in utest/ subdir. Used  CUnit framework.
538         * Supported OPENBLAS_* & GOTO_* environment variables (Pleas see README)
539         * Imported GotoBLAS2 1.13 BSD version
540
541 x86/x86_64:
542         * On x86 32bits, fixed a bug in zdot_sse2.S line 191. This would casue
543           zdotu & zdotc failures. Instead, work-around it. (Refs issue #8 #9 on github)
544         * Modified ?axpy functions to return same netlib BLAS results
545           when incx==0 or incy==0 (Refs issue #7 on github)
546         * Modified ?swap functions to return same netlib BLAS results
547           when incx==0 or incy==0 (Refs issue #6 on github)
548         * Modified ?rot functions to return same netlib BLAS results
549           when incx==0 or incy==0 (Refs issue #4 on github)
550         * Detect Intel Westmere,Intel Clarkdale and Intel Arrandale
551           to use Nehalem codes.
552         * Fixed a typo bug about compiling dynamic ARCH library.
553 MIPS64:
554         * Improve daxpy performance on ICT Loongson 3A.
555         * Supported ICT Loongson 3A CPU (Refs issue #1 on github)
556 ====================================================================