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.

README 1.9 kB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. INSTALLATION
  2. Make sure to set these variables appropriately in your Make.inc in the LAPACK folder:
  3. CBLASLIB is your CBLAS library
  4. BLASLIB is your Legacy BLAS library (by default the Reference BLAS shipped within LAPACK)
  5. Then type:
  6. prompt> make
  7. which will create the CBLAS library.
  8. CREATING THE TESTERS
  9. type:
  10. prompt> make cblas_testing
  11. This will create the BLAS library if necessary, then compile the CBLAS testings.
  12. EXECUTING THE TESTERS
  13. type:
  14. prompt> make runtst
  15. _______________________________________________________________________________
  16. This package contains C interface to Legacy BLAS.
  17. Written by Keita Teranishi (5/20/98)
  18. _______________________________________________________________________________
  19. This release updates an inconsistency between the BLAST document and
  20. the interface. According to the document, the enumerated types for
  21. the C interface to the BLAS are not typedef'ed.
  22. It also updates the Level 2 and 3 testers which check for correct
  23. exiting of routines when called with bad arguments. This is done by
  24. overriding the Legacy BLAS library's implementation of xerbla(). If
  25. this cannot be done ( for instance one cannot override some calls
  26. to xerbla() in Sun's Performance library), then correct error
  27. exiting cannot be checked.
  28. Updated by Jeff Horner (3/15/99)
  29. _______________________________________________________________________________
  30. Updated by R. Clint Whaley (2/23/03):
  31. Fixed the i?amax error that I reported three years ago: standard dictates
  32. IAMAX return vals in range 0 <= iamax < N, but reference was mistakenly
  33. returning like F77: 0 < iamax <= N.
  34. _______________________________________________________________________________
  35. Updated by Julie Langou (08/22/2014):
  36. Integrate CBLAS package into LAPACK
  37. Improve headers for mangling