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 18 kB

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