forked from numpy/numpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request numpy#8651 from eric-wieser/lapack_lite-dlamch
MAINT: Split lapack_lite more logically across files
- Loading branch information
Showing
15 changed files
with
97,413 additions
and
97,199 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,7 @@ Regenerating lapack_lite source | |
|
||
:Author: David M. Cooke <[email protected]> | ||
|
||
The ``numpy/linalg/blas_lite.c``, ``numpy/linalg/dlapack_lite.c``, and | ||
``numpy/linalg/zlapack_lite.c`` are ``f2c``'d versions of the LAPACK routines | ||
The ``numpy/linalg/f2c_*.c`` files are ``f2c``'d versions of the LAPACK routines | ||
required by the ``LinearAlgebra`` module, and wrapped by the ``lapack_lite`` | ||
module. The scripts in this directory can be used to create these files | ||
automatically from a directory of LAPACK source files. | ||
|
@@ -23,9 +22,8 @@ properly. Assuming that you have an unpacked LAPACK source tree in | |
$ python2 ./make_lite.py wrapped_routines ~/LAPACK new-lite/ | ||
|
||
This will grab the right routines, with dependencies, put them into the | ||
appropriate ``blas_lite.f``, ``dlapack_lite.f``, or ``zlapack_lite.f`` files, | ||
run ``f2c`` over them, then do some scrubbing similar to that done to | ||
generate the CLAPACK_ distribution. | ||
appropriate ``f2c_*.f`` files, run ``f2c`` over them, then do some scrubbing | ||
similar to that done to generate the CLAPACK_ distribution. | ||
|
||
.. _CLAPACK: http://netlib.org/clapack/index.html | ||
|
||
|
Oops, something went wrong.