| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Also uses this splitting as an excuse to ditch the _lite suffix, in
favor of a f2c_ prefix for all generated files.
Before:
* `zlapack_lite.c` - Functions for the `complex128` type.
* `dlapack_lite.c` - Every other lapack function
After:
* `f2c_z_lapack.c` - Functions for the `complex128` type.
* `f2c_c_lapack.c` - Functions for the `complex64` type.
* `f2c_d_lapack.c` - Functions for the `float64` type.
* `f2c_s_lapack.c` - Functions for the `float32` type.
* `f2c_lapack.c` - Every other lapack function
|
|
|
|
|
| |
These were previously avoided by patching f2c, but this was more work for
little gain, and the patch was not committed.
|
|
|
|
| |
These are taken from lapack_litemodule.c and umath_linalg.c.src
|
|
|
|
| |
This is also defined in python_xerbla.c, where we redefine a python-compatible version
|
|
|
|
| |
The source used is http://archive.debian.org/debian/pool/main/l/lapack3/lapack3_3.0.20000531a.orig.tar.gz. Originally this was done with a patched f2c, but if the patch isn't provided in the source tree, there's no sensible way to use it
|
|
|
|
| |
Now is as good a time as any with open PR's at a low.
|
|
Also, link umath_linalg against the system BLAS/LAPACK if available.
|