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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. OpenBLAS ChangeLog
  2. ====================================================================
  3. Version 0.1 alpha2(in development)
  4. 0;136;0c
  5. common:
  6. * Fixed blasint undefined bug in <cblas.h> file. Other software
  7. could include this header successfully(Refs issue #13 on github)
  8. * Fixed the SEGFAULT bug on 64 cores. On SMP server, the number
  9. of CPUs or cores should be less than or equal to 64.(Refs issue #14
  10. on github)
  11. * Support "void goto_set_num_threads(int num_threads)" and "void
  12. openblas_set_num_threads(int num_threads)" when USE_OPENMP=1
  13. * Added extern "C" to support C++. Thank Tasio for the patch(Refs
  14. issue #21 on github)
  15. * Provided an error message when the arch is not supported.(Refs
  16. issue #19 on github)
  17. * Fixed issue #23. Fixed a bug of f_check script about generating link flags.
  18. * Added openblas_set_num_threads for Fortran.
  19. * Fixed #25 a wrong result of rotmg.
  20. x86/x86_64:
  21. * Fixed #28 a wrong result of dsdot on x86_64.
  22. MIPS64:
  23. * Fixed #28 a wrong result of dsdot on Loongson3A/MIPS64.
  24. ====================================================================
  25. Version 0.1 alpha1
  26. 20-Mar-2011
  27. common:
  28. * Support "make NO_LAPACK=1" to build the library without
  29. LAPACK functions.
  30. * Fixed randomly SEGFAULT when nodemask==NULL with above Linux 2.6.34.
  31. Thank Mr.Ei-ji Nakama providing this patch. (Refs issue #12 on github)
  32. * Added DEBUG=1 rule in Makefile.rule to build debug version.
  33. * Disable compiling quad precision in reference BLAS library(netlib BLAS).
  34. * Added unit testcases in utest/ subdir. Used CUnit framework.
  35. * Supported OPENBLAS_* & GOTO_* environment variables (Pleas see README)
  36. * Imported GotoBLAS2 1.13 BSD version
  37. x86/x86_64:
  38. * On x86 32bits, fixed a bug in zdot_sse2.S line 191. This would casue
  39. zdotu & zdotc failures.Instead,Walk around it. (Refs issue #8 #9 on github)
  40. * Modified ?axpy functions to return same netlib BLAS results
  41. when incx==0 or incy==0 (Refs issue #7 on github)
  42. * Modified ?swap functions to return same netlib BLAS results
  43. when incx==0 or incy==0 (Refs issue #6 on github)
  44. * Modified ?rot functions to return same netlib BLAS results
  45. when incx==0 or incy==0 (Refs issue #4 on github)
  46. * Detect Intel Westmere,Intel Clarkdale and Intel Arrandale
  47. to use Nehalem codes.
  48. * Fixed a typo bug about compiling dynamic ARCH library.
  49. MIPS64:
  50. * Improve daxpy performance on ICT Loongson 3A.
  51. * Supported ICT Loongson 3A CPU (Refs issue #1 on github)
  52. ====================================================================

OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version.