You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Changelog.txt 80 kB

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