Home | History | Annotate | only in /external/cblas
Up to higher level directory
NameDateSize
Android.mk05-Oct-20174.2K
examples/05-Oct-2017
include/05-Oct-2017
LICENSE05-Oct-2017667
Makefile05-Oct-20175.6K
Makefile.ALPHA05-Oct-20171.4K
Makefile.HPPA05-Oct-20171.3K
Makefile.in05-Oct-20171.4K
Makefile.LINUX05-Oct-20171.3K
Makefile.SGI6405-Oct-20171.4K
Makefile.SUN405-Oct-20171.3K
Makefile.SUN4SOL205-Oct-20171.3K
MODULE_LICENSE_PUBLIC_DOMAIN05-Oct-20170
NOTICE05-Oct-2017667
README05-Oct-20172.1K
README.android05-Oct-2017972
README.version05-Oct-201775
src/05-Oct-2017
testing/05-Oct-2017

README

      1 INSTALLATION
      2 
      3    Please execute the following first:
      4       
      5       prompt> ln -s Makefile.ARCH Makefile.in
      6 
      7    where ARCH is one of ALPHA, HPPA, LINUX, SGI64, SUN4, SUN4SOL2, or
      8    your own version (which should be trivial to do for other architectures).
      9    Make sure to set these variables appropriately in your Makefile.ARCH:
     10 
     11       CBDIR  is the directory where you unpacked the tar file
     12       BLLIB  is your Legacy BLAS library
     13 
     14    Then type:
     15       
     16       prompt> make help
     17       
     18    which will give you a detailed listing of targets to make.
     19 
     20 EXECUTING THE TESTERS
     21 
     22    Type: 
     23 
     24 ./testing/xscblat1
     25 ./testing/xdcblat1
     26 ./testing/xccblat1
     27 ./testing/xzcblat1
     28 ./testing/xscblat2 < testing/sin2
     29 ./testing/xdcblat2 < testing/din2
     30 ./testing/xccblat2 < testing/cin2
     31 ./testing/xzcblat2 < testing/zin2
     32 ./testing/xscblat3 < testing/sin3
     33 ./testing/xdcblat3 < testing/din3
     34 ./testing/xccblat3 < testing/cin3
     35 ./testing/xzcblat3 < testing/zin3
     36 _______________________________________________________________________________
     37 
     38    This package contains C interface to Legacy BLAS.
     39    If you want to know how to use makefile, type 'make help.'
     40 
     41 Written by Keita Teranishi (5/20/98)
     42 _______________________________________________________________________________
     43 
     44    This release updates an inconsistency between the BLAST document and
     45    the interface. According to the document, the enumerated types for
     46    the C interface to the BLAS are not typedef'ed. 
     47 
     48    It also updates the Level 2 and 3 testers which check for correct
     49    exiting of routines when called with bad arguments. This is done by
     50    overriding the Legacy BLAS library's implementation of xerbla().  If
     51    this cannot be done ( for instance one cannot override some calls
     52    to xerbla() in Sun's Performance library), then correct error
     53    exiting cannot be checked.
     54 
     55 Updated by Jeff Horner (3/15/99)
     56 _______________________________________________________________________________
     57 
     58 Updated by R. Clint Whaley (2/23/03):
     59 
     60 Fixed the i?amax error that I reported three years ago: standard dictates
     61 IAMAX return vals in range 0 <= iamax < N, but reference was mistakenly
     62 returning like F77: 0 < iamax <= N.
     63 

README.android

      1 Local Modifications:
      2 
      3 include/cblas_f77.h
      4   Correct case-mismatch in include guard.
      5 
      6 include/cblas_f77.h
      7 testing/cblas_test.h
      8   Rename xerbla_ to cblas_f77_xerbla_, to avoid collisions with the xerbla_
      9   exported by LAPACK.
     10 
     11 testing/cblas_test.h
     12   Rename cblas_f77_xerbla_ back to xerbla_; in tests, we _do_ want to override
     13   the xerbla_ exported by LAPACK to capture the error.
     14 
     15 include/cblas_f77.h
     16 src/cblas_dasum.c
     17 src/cblas_ddot.c
     18 src/cblas_dnrm2.c
     19 src/cblas_dsdot.c
     20 src/cblas_dzasum.c
     21 src/cblas_dznrm2.c
     22 src/cblas_icamax.c
     23 src/cblas_idamax.c
     24 src/cblas_isamax.c
     25 src/cblas_izamax.c
     26 src/cblas_sasum.c
     27 src/cblas_scasum.c
     28 src/cblas_scnrm2.c
     29 src/cblas_sdot.c
     30 src/cblas_sdsdot.c
     31 src/cblas_snrm2.c
     32 src/*.f
     33   Replace Fortran wrappers either with calls to the Eigen "subroutine" versions
     34   for functions that return complex values, or with calls to the standard
     35   "function" versions for functions that return real values.  Delete unsupported
     36   variants from cblas_f77.h.
     37 
     38   
     39 

README.version

      1 URL: http://www.netlib.org/blas/blast-forum/cblas.tgz
      2 Version: 3.5 (maybe)
      3