summaryrefslogtreecommitdiff
path: root/numpy/linalg/lapack_lite/dlamch.c
Commit message (Collapse)AuthorAgeFilesLines
* MAINT: Prefer to load functions from lapack/install if possibleEric Wieser2017-03-021-951/+0
| | | | | | | | | | | | | | Previously, the dlamch function was a manually-edited file, precluding autogeneration. We fix this by putting the manual edits in a patch file, and then generating f2c_config.c from install/*.f, which includes dlamch. While these functions exist in more than once place in lapack 3.0.0, they only exist in lapack/install in newer versions. A side effect of this is that some functions have been pulled out of `f2c_blas.c` and `f2c_s_lapack.c` into this new file. The edits in the patch were introduced in cadbb5f2ec84cb774023bbe8cbe6f39a93e837d7, for a reason that is lost to time.
* STY: Giant whitespace cleanup.Charles Harris2013-08-181-274/+274
| | | | Now is as good a time as any with open PR's at a low.
* MAINT: move umath_linalg under numpy/linalg and use the same lapack_litePauli Virtanen2013-04-101-0/+951
Also, link umath_linalg against the system BLAS/LAPACK if available.