xref: /aosp_15_r20/external/cblas/README.android (revision 1858f9982ea1ad57fb52080c08594e4d1cce4fa1)
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