Files
lapack/CBLAS
Jean-Christophe Fillion-Robin e070144ace cmake: Associate component with install rules
This commit updates all install rules explicitly associating either
the Development or RuntimeLibraries component. This allows to selectively
package components in user project by using variable like CPACK_INSTALL_CMAKE_PROJECTS [1]

To ensure all artifacts are packages in a single installer, this commit
also sets the variable CPACK_MONOLITHIC_INSTALL [2]

[1] https://cmake.org/cmake/help/latest/module/CPack.html#variable:CPACK_INSTALL_CMAKE_PROJECTS
[2] https://cmake.org/cmake/help/latest/module/CPack.html#variable:CPACK_MONOLITHIC_INSTALL
2018-08-15 06:19:48 -04:00
..
2017-12-01 06:55:48 -05:00
2016-12-06 17:52:59 +02:00
2017-12-01 06:55:48 -05:00
2017-02-06 01:07:10 -06:00

INSTALLATION

   Make sure to set these variables appropriately in your Make.inc in the LAPACK folder:

      CBLASLIB is your CBLAS library
      BLASLIB  is your Legacy BLAS library (by default the Reference BLAS shipped within LAPACK)

   Then type:

      prompt> make

   which will create the CBLAS library.

CREATING THE TESTERS

    type:

      prompt> make cblas_testing

   This will create the BLAS library if necessary, then compile the CBLAS testings.

EXECUTING THE TESTERS

    type:

      prompt> make runtst

 _______________________________________________________________________________

   This package contains C interface to Legacy BLAS.

Written by Keita Teranishi (5/20/98)
_______________________________________________________________________________

   This release updates an inconsistency between the BLAST document and
   the interface. According to the document, the enumerated types for
   the C interface to the BLAS are not typedef'ed.

   It also updates the Level 2 and 3 testers which check for correct
   exiting of routines when called with bad arguments. This is done by
   overriding the Legacy BLAS library's implementation of xerbla().  If
   this cannot be done ( for instance one cannot override some calls
   to xerbla() in Sun's Performance library), then correct error
   exiting cannot be checked.

Updated by Jeff Horner (3/15/99)
_______________________________________________________________________________

Updated by R. Clint Whaley (2/23/03):

Fixed the i?amax error that I reported three years ago: standard dictates
IAMAX return vals in range 0 <= iamax < N, but reference was mistakenly
returning like F77: 0 < iamax <= N.
_______________________________________________________________________________

Updated by Julie Langou (08/22/2014):

Integrate CBLAS package into LAPACK
Improve headers for mangling