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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  1. OpenBLAS ChangeLog
  2. ====================================================================
  3. Version 0.2.11
  4. 18-Aug-2014
  5. common:
  6. * Added some benchmark codes.
  7. * Fix link error on Linux/musl.(Thanks Isaac Dunham)
  8. x86/x86-64:
  9. * Improved s/c/zgemm performance for Intel Haswell.
  10. * Improved s/d/c/zgemv performance.
  11. * Support the big numa machine.(EXPERIMENT)
  12. ARM:
  13. * Fix detection when cpuinfo uses "Processor". (Thanks Isaiah)
  14. ====================================================================
  15. Version 0.2.10
  16. 16-Jul-2014
  17. common:
  18. * Added BLAS extensions as following.
  19. s/d/c/zaxpby, s/d/c/zimatcopy, s/d/c/zomatcopy.
  20. * Added OPENBLAS_CORETYPE environment for dynamic_arch. (a86d34)
  21. * Added NO_AVX2 flag for old binutils. (#401)
  22. * Support outputing the CPU corename on runtime.(#407)
  23. * Patched LAPACK to fix bug 114, 117, 118.
  24. (http://www.netlib.org/lapack/bug_list.html)
  25. * Disabled ?gemm3m for a work-around fix. (#400)
  26. x86/x86-64:
  27. * Fixed lots of bugs for optimized kernels on sandybridge,Haswell,
  28. bulldozer, and piledriver.
  29. https://github.com/xianyi/OpenBLAS/wiki/Fixed-optimized-kernels-To-do-List
  30. ARM:
  31. * Improved LAPACK testing.
  32. ====================================================================
  33. Version 0.2.9
  34. 10-Jun-2014
  35. common:
  36. * Improved the result for LAPACK testing. (#372)
  37. * Installed DLL to prefix/bin instead of prefix/lib. (#366)
  38. * Build import library on Windows.(#374)
  39. x86/x86-64:
  40. * To improve LAPACK testing, we fallback some kernels. (#372)
  41. https://github.com/xianyi/OpenBLAS/wiki/Fixed-optimized-kernels-To-do-List
  42. ====================================================================
  43. Version 0.2.9.rc2
  44. 06-Mar-2014
  45. common:
  46. * Added OPENBLAS_VERBOSE environment variable.(#338)
  47. * Make OpenBLAS thread-pool resilient to fork via pthread_atfork.
  48. (#294, Thank Olivier Grisel)
  49. * Rewrote rotmg
  50. * Fixed sdsdot bug.
  51. x86/x86-64:
  52. * Detect Intel Haswell for new Macbook.
  53. ====================================================================
  54. Version 0.2.9.rc1
  55. 13-Jan-2013
  56. common:
  57. * Update LAPACK to 3.5.0 version
  58. * Fixed compatiable issues with Clang and Pathscale compilers.
  59. x86/x86-64:
  60. * Optimization on Intel Haswell.
  61. * Enable optimization kernels on AMD Bulldozer and Piledriver.
  62. ARM:
  63. * Support ARMv6 and ARMv7 ISA.
  64. * Optimization on ARM Cortex-A9.
  65. ====================================================================
  66. Version 0.2.8
  67. 01-Aug-2013
  68. common:
  69. * Support Open64 5.0. (#266)
  70. * Add executable stack markings. (#262, Thank Sébastien Fabbro)
  71. * Respect user's LDFLAGS (Thank Sébastien Fabbro)
  72. x86/x86-64:
  73. * Rollback bulldozer and piledriver kernels to barcelona kernels (#263)
  74. We will fix the compuational error bug in bulldozer and piledriver kernels.
  75. ====================================================================
  76. Version 0.2.7
  77. 20-Jul-2013
  78. common:
  79. * Support LSB (Linux Standard Base) 4.1.
  80. e.g. make CC=lsbcc
  81. * Include LAPACK 3.4.2 source codes to the repo.
  82. Avoid downloading at compile time.
  83. * Add NO_PARALLEL_MAKE flag to disable parallel make.
  84. * Create openblas_get_parallel to retrieve information which
  85. parallelization model is used by OpenBLAS. (Thank grisuthedragon)
  86. * Detect LLVM/Clang compiler. The default compiler is Clang on Mac OS X.
  87. * Change LIBSUFFIX from .lib to .a on windows.
  88. * A work-around for dtrti_U single thread bug. Replace it with LAPACK codes. (#191)
  89. x86/x86-64:
  90. * Optimize c/zgemm, trsm, dgemv_n, ddot, daxpy, dcopy on
  91. AMD Bulldozer. (Thank Werner Saar)
  92. * Add Intel Haswell support (using Sandybridge optimizations).
  93. (Thank Dan Luu)
  94. * Add AMD Piledriver support (using Bulldozer optimizations).
  95. * Fix the computational error in zgemm avx kernel on
  96. Sandybridge. (#237)
  97. * Fix the overflow bug in gemv.
  98. * Fix the overflow bug in multi-threaded BLAS3, getrf when NUM_THREADS
  99. is very large.(#214, #221, #246).
  100. MIPS64:
  101. * Support loongcc (Open64 based) compiler for ICT Loongson 3A/B.
  102. Power:
  103. * Support Power7 by old Power6 kernels. (#220)
  104. ====================================================================
  105. Version 0.2.6
  106. 2-Mar-2013
  107. common:
  108. * Improved OpenMP performance slightly. (d744c9)
  109. * Improved cblas.h compatibility with Intel MKL.(#185)
  110. * Fixed the overflowing bug in single thread cholesky factorization.
  111. * Fixed the overflowing buffer bug of multithreading hbmv and sbmv.(#174)
  112. x86/x86-64:
  113. * Added AMD Bulldozer x86-64 S/DGEMM AVX kernels. (Thank Werner Saar)
  114. We will tune the performance in future.
  115. * Auto-detect Intel Xeon E7540.
  116. * Fixed the overflowing buffer bug of gemv. (#173)
  117. * Fixed the bug of s/cdot about invalid reading NAN on x86_64. (#189)
  118. MIPS64:
  119. ====================================================================
  120. Version 0.2.5
  121. 26-Nov-2012
  122. common:
  123. * Added NO_SHARED flag to disable generating the shared library.
  124. * Compile LAPACKE with ILP64 modle when INTERFACE64=1 (#158)
  125. * Export LAPACK 3.4.2 symbols in shared library. (#147)
  126. * Only detect the number of physical CPU cores on Mac OSX. (#157)
  127. * Fixed NetBSD build. (#155)
  128. * Fixed compilation with TARGET=GENERIC. (#160)
  129. x86/x86-64:
  130. * Restore the original CPU affinity when calling
  131. openblas_set_num_threads(1) (#153)
  132. * Fixed a SEGFAULT bug in dgemv_t when m is very large.(#154)
  133. MIPS64:
  134. ====================================================================
  135. Version 0.2.4
  136. 8-Oct-2012
  137. common:
  138. * Upgraded LAPACK to 3.4.2 version. (#145)
  139. * Provided support for passing CFLAGS, FFLAGS, PFLAGS,
  140. FPFLAGS to make. (#137)
  141. * f77blas.h:compatibility for compilers without C99 complex
  142. number support. (#141)
  143. x86/x86-64:
  144. * Added NO_AVX flag. Check OS supporting AVX on runtime. (#139)
  145. * Fixed zdot incompatibility ABI issue with GCC 4.7 on
  146. Windows 32-bit. (#140)
  147. MIPS64:
  148. * Fixed the generation of shared library bug.
  149. * Fixed the detection bug on the Loongson 3A server.
  150. ====================================================================
  151. Version 0.2.3
  152. 20-Aug-2012
  153. common:
  154. * Fixed LAPACK unstable bug about ?laswp. (#130)
  155. * Fixed the shared library bug about unloading the library on
  156. Linux (#132).
  157. * Fixed the compilation failure on BlueGene/P (TARGET=PPC440FP2)
  158. Please use gcc and IBM xlf. (#134)
  159. x86/x86-64:
  160. * Supported goto_set_num_threads and openblas_set_num_threads
  161. APIs in Windows. They can set the number of threads on runtime.
  162. ====================================================================
  163. Version 0.2.2
  164. 6-July-2012
  165. common:
  166. * Fixed exporting DLL functions bug on Windows/MingW
  167. * Support GNU Hurd (Thank Sylvestre Ledru)
  168. * Support kfreebsd kernel (Thank Sylvestre Ledru)
  169. x86/x86-64:
  170. * Support Intel Sandy Bridge 22nm desktop/mobile CPU
  171. SPARC:
  172. * Improve the detection of SPARC (Thank Sylvestre Ledru)
  173. ====================================================================
  174. Version 0.2.1
  175. 30-Jun-2012
  176. common:
  177. x86/x86-64:
  178. * Fixed the SEGFAULT bug about hyper-theading
  179. * Support AMD Bulldozer by using GotoBLAS2 AMD Barcelona codes
  180. ====================================================================
  181. Version 0.2.0
  182. 26-Jun-2012
  183. common:
  184. * Removed the limitation (64) of numbers of CPU cores.
  185. Now, it supports 256 cores at max.
  186. * Supported clang compiler.
  187. * Fixed some build bugs on FreeBSD
  188. x86/x86-64:
  189. * Optimized Level-3 BLAS on Intel Sandy Bridge x86-64 by AVX instructions.
  190. Please use gcc >= 4.6 or clang >=3.1.
  191. * Support AMD Bobcat by using GotoBLAS2 AMD Barcelona codes.
  192. ====================================================================
  193. Version 0.1.1
  194. 29-Apr-2012
  195. common:
  196. * Upgraded LAPACK to 3.4.1 version. (Thank Zaheer Chothia)
  197. * Supported LAPACKE, a C interface to LAPACKE. (Thank Zaheer Chothia)
  198. * Fixed the build bug (MD5 and download) on Mac OSX.
  199. * Auto download CUnit 2.1.2-2 from SF.net with UTEST_CHECK=1.
  200. * Fxied the compatibility issue for compilers without C99 complex number
  201. (e.g. Visual Studio)
  202. x86/x86_64:
  203. * Auto-detect Intel Sandy Bridge Core i7-3xxx & Xeon E7 Westmere-EX.
  204. * Test alpha=Nan in dscale.
  205. * Fixed a SEGFAULT bug in samax on x86 windows.
  206. ====================================================================
  207. Version 0.1.0
  208. 23-Mar-2012
  209. common:
  210. * Set soname of shared library on Linux.
  211. * Added LIBNAMESUFFIX flag in Makefile.rule. The user can use
  212. this flag to control the library name, e.g. libopenblas.a,
  213. libopenblas_ifort.a or libopenblas_omp.a.
  214. * Added GEMM_MULTITHREAD_THRESHOLD flag in Makefile.rule.
  215. The lib use single thread in GEMM function with small matrices.
  216. x86/x86_64:
  217. * Used GEMV SSE/SSE2 kernels on x86 32-bit.
  218. * Exported CBLAS functions in Windows DLL.
  219. MIPS64:
  220. * Completed Level-3 BLAS optimization on Loongson 3A CPU.
  221. * Improved GEMV performance on Loongson 3A CPU.
  222. * Improved Level-3 BLAS performance on Loongson 3B CPU. (EXPERIMENT)
  223. ====================================================================
  224. Version 0.1 alpha2.5
  225. 19-Feb-2012
  226. common:
  227. * Fixed missing "#include <sched.h>" bug on Mac OS X.
  228. Thank Mike Nolta for the patch.
  229. * Upgraded LAPACK to 3.4.0 version
  230. * Fixed a bug on Mac OS X. Don't require SystemStubs on OS X.
  231. SystemStubs does not exist on Lion. Thank Stefan Karpinski.
  232. * Improved README with using OpenMP. Check the internal threads
  233. count less than or equal to omp_get_max_threads()
  234. x86/x86_64:
  235. * Auto-detect Intel Core i6/i7 (Sandy Bridge) CPU with Nehalem assembly kernels
  236. * Fixed some bugs on MingW 64-bit including zgemv, cdot, zdot.
  237. ====================================================================
  238. Version 0.1 alpha2.4
  239. 18-Sep-2011
  240. common:
  241. * Fixed a bug about installation. The header file "fblas77.h"
  242. works fine now.
  243. * Fixed #61 a building bug about setting TARGET and DYNAMIC_ARCH.
  244. * Try to handle absolute path of shared library in OSX. (#57)
  245. Thank Dr Kane O'Donnell.
  246. * Changed the installation folder layout to $(PREFIX)/include and
  247. $(PREFIX)/lib
  248. x86/x86_64:
  249. * Fixed #58 zdot/xdot SEGFAULT bug with GCC-4.6 on x86. According
  250. to i386 calling convention, The callee should remove the first
  251. hidden parameter.Thank Mr. John for this patch.
  252. ====================================================================
  253. Version 0.1 alpha2.3
  254. 5-Sep-2011
  255. x86/x86_64:
  256. * Added DTB_ENTRIES into dynamic arch setting parameters. Now,
  257. it can read DTB_ENTRIES on runtime. (Refs issue #55 on github)
  258. ====================================================================
  259. Version 0.1 alpha2.2
  260. 14-Jul-2011
  261. common:
  262. * Fixed a building bug when DYNAMIC_ARCH=1 & INTERFACE64=1.
  263. (Refs issue #44 on github)
  264. ====================================================================
  265. Version 0.1 alpha2.1
  266. 28-Jun-2011
  267. common:
  268. * Stop the build and output the error message when detecting
  269. fortran compiler failed. (Refs issue #42 on github)
  270. ====================================================================
  271. Version 0.1 alpha2
  272. 23-Jun-2011
  273. common:
  274. * Fixed blasint undefined bug in <cblas.h> file. Other software
  275. could include this header successfully(Refs issue #13 on github)
  276. * Fixed the SEGFAULT bug on 64 cores. On SMP server, the number
  277. of CPUs or cores should be less than or equal to 64.(Refs issue #14
  278. on github)
  279. * Support "void goto_set_num_threads(int num_threads)" and "void
  280. openblas_set_num_threads(int num_threads)" when USE_OPENMP=1
  281. * Added extern "C" to support C++. Thank Tasio for the patch(Refs
  282. issue #21 on github)
  283. * Provided an error message when the arch is not supported.(Refs
  284. issue #19 on github)
  285. * Fixed issue #23. Fixed a bug of f_check script about generating link flags.
  286. * Added openblas_set_num_threads for Fortran.
  287. * Fixed #25 a wrong result of rotmg.
  288. * Fixed a bug about detecting underscore prefix in c_check.
  289. * Print the wall time (cycles) with enabling FUNCTION_PROFILE
  290. * Fixed #35 a build bug with NO_LAPACK=1 & DYNAMIC_ARCH=1
  291. * Added install target. You can use "make install". (Refs #20)
  292. x86/x86_64:
  293. * Fixed #28 a wrong result of dsdot on x86_64.
  294. * Fixed #32 a SEGFAULT bug of zdotc with gcc-4.6.
  295. * Fixed #33 ztrmm bug on Nehalem.
  296. * Work-around #27 the low performance axpy issue with small imput size & multithreads.
  297. MIPS64:
  298. * Fixed #28 a wrong result of dsdot on Loongson3A/MIPS64.
  299. * Optimized single/double precision BLAS Level3 on Loongson3A/MIPS64. (Refs #2)
  300. * Optimized single/double precision axpy function on Loongson3A/MIPS64. (Refs #3)
  301. ====================================================================
  302. Version 0.1 alpha1
  303. 20-Mar-2011
  304. common:
  305. * Support "make NO_LAPACK=1" to build the library without
  306. LAPACK functions.
  307. * Fixed randomly SEGFAULT when nodemask==NULL with above Linux 2.6.34.
  308. Thank Mr.Ei-ji Nakama providing this patch. (Refs issue #12 on github)
  309. * Added DEBUG=1 rule in Makefile.rule to build debug version.
  310. * Disable compiling quad precision in reference BLAS library(netlib BLAS).
  311. * Added unit testcases in utest/ subdir. Used CUnit framework.
  312. * Supported OPENBLAS_* & GOTO_* environment variables (Pleas see README)
  313. * Imported GotoBLAS2 1.13 BSD version
  314. x86/x86_64:
  315. * On x86 32bits, fixed a bug in zdot_sse2.S line 191. This would casue
  316. zdotu & zdotc failures. Instead, work-around it. (Refs issue #8 #9 on github)
  317. * Modified ?axpy functions to return same netlib BLAS results
  318. when incx==0 or incy==0 (Refs issue #7 on github)
  319. * Modified ?swap functions to return same netlib BLAS results
  320. when incx==0 or incy==0 (Refs issue #6 on github)
  321. * Modified ?rot functions to return same netlib BLAS results
  322. when incx==0 or incy==0 (Refs issue #4 on github)
  323. * Detect Intel Westmere,Intel Clarkdale and Intel Arrandale
  324. to use Nehalem codes.
  325. * Fixed a typo bug about compiling dynamic ARCH library.
  326. MIPS64:
  327. * Improve daxpy performance on ICT Loongson 3A.
  328. * Supported ICT Loongson 3A CPU (Refs issue #1 on github)
  329. ====================================================================