NameDateSize

..10-Aug-201812 KiB

Android.bp10-Aug-20185.4 KiB

examples/10-Aug-20184 KiB

include/10-Aug-20184 KiB

LICENSE10-Aug-2018667

Makefile10-Aug-20185.6 KiB

Makefile.ALPHA10-Aug-20181.4 KiB

Makefile.HPPA10-Aug-20181.3 KiB

Makefile.in10-Aug-20181.4 KiB

Makefile.LINUX10-Aug-20181.3 KiB

Makefile.SGI6410-Aug-20181.4 KiB

Makefile.SUN410-Aug-20181.3 KiB

Makefile.SUN4SOL210-Aug-20181.3 KiB

MODULE_LICENSE_PUBLIC_DOMAIN10-Aug-20180

NOTICE10-Aug-2018667

README10-Aug-20182.1 KiB

README.android10-Aug-2018972

README.version10-Aug-201875

src/10-Aug-20184 KiB

testing/10-Aug-20184 KiB

README

1INSTALLATION
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
20EXECUTING 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
41Written 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
55Updated by Jeff Horner (3/15/99)
56_______________________________________________________________________________
57
58Updated by R. Clint Whaley (2/23/03):
59
60Fixed the i?amax error that I reported three years ago: standard dictates
61IAMAX return vals in range 0 <= iamax < N, but reference was mistakenly
62returning like F77: 0 < iamax <= N.
63

README.android

1Local Modifications:
2
3include/cblas_f77.h
4  Correct case-mismatch in include guard.
5
6include/cblas_f77.h
7testing/cblas_test.h
8  Rename xerbla_ to cblas_f77_xerbla_, to avoid collisions with the xerbla_
9  exported by LAPACK.
10
11testing/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
15include/cblas_f77.h
16src/cblas_dasum.c
17src/cblas_ddot.c
18src/cblas_dnrm2.c
19src/cblas_dsdot.c
20src/cblas_dzasum.c
21src/cblas_dznrm2.c
22src/cblas_icamax.c
23src/cblas_idamax.c
24src/cblas_isamax.c
25src/cblas_izamax.c
26src/cblas_sasum.c
27src/cblas_scasum.c
28src/cblas_scnrm2.c
29src/cblas_sdot.c
30src/cblas_sdsdot.c
31src/cblas_snrm2.c
32src/*.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