File: README.scipy

package info (click to toggle)
python-scipy 1.1.0-7
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 93,828 kB
  • sloc: python: 156,854; ansic: 82,925; fortran: 80,777; cpp: 7,505; makefile: 427; sh: 294
file content (30 lines) | stat: -rw-r--r-- 929 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
This directory contains a bundled version of ARPACK-NG 3.3.0,
https://github.com/opencollab/arpack-ng

NOTE FOR VENDORS: it is in general safe to use a system version of ARPACK
instead. Note, however, that ARPACK and early versions of ARPACK-NG have
certain bugs, so using those over the bundled version is not recommended.

The bundled version has the following patch applied:

Replace calls to certain Fortran functions with wrapper
functions, to avoid various ABI mismatches on OSX. These changes are
made with the following command:

perl -pi -e '
s@\bsdot\b@wsdot@g;
s@\bcdotc\b@wcdotc@g;
s@\bzdotc\b@wzdotc@g;
s@\bcdotu\b@wcdotu@g;
s@\bzdotu\b@wzdotu@g;
s@\bcladiv\b@wcladiv@g;
s@\bzladiv\b@wzladiv@g;
s@\bslapy2\b@wslapy2@g;
s@\bscnrm2\b@wscnrm2@g;
s@\bslanhs\b@wslanhs@g;
s@\bsnrm2\b@wsnrm2@g;
s@\bclanhs\b@wclanhs@g;
s@\bSLAMCH\b@wslamch@g;
s@\bslamch\b@wslamch@g;
s@\bslanst\b@wslanst@g;' \
SRC/*.f UTIL/*.f LAPACK/*.f