summaryrefslogtreecommitdiff
path: root/numpy/linalg/setup.py
Commit message (Collapse)AuthorAgeFilesLines
* MAINT: Prefer to load functions from lapack/install if possibleEric Wieser2017-03-021-1/+1
| | | | | | | | | | | | | | 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.
* MAINT: Split up the lapack_lite files more sensiblyEric Wieser2017-03-021-4/+7
| | | | | | | | | | | | | | | | | | 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
* STY: Make numpy/linalg/setup.py PEP8 compliantRonan Lamy2015-10-021-16/+17
|
* MAINT: Simplify numpy/linalg/setup.pyRonan Lamy2015-10-021-8/+8
| | | | | | Compute the sources required to build extensions lapack_lite and _umath_linalg in a more direct way that doesn't rely on abusing the 'depends' argument to config.add_extension().
* STY: Giant comma spacing fixup.Charles Harris2013-08-181-2/+2
| | | | | | | Run the 2to3 ws_comma fixer on *.py files. Some lines are now too long and will need to be broken at some point. OTOH, some lines were already too long and need to be broken at some point. Now seems as good a time as any to do this with open PRs at a minimum.
* STY: Giant whitespace cleanup.Charles Harris2013-08-181-2/+2
| | | | 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-5/+23
| | | | Also, link umath_linalg against the system BLAS/LAPACK if available.
* 2to3: Apply `print` fixer.Charles Harris2013-04-061-1/+1
| | | | | | | Add `print_function` to all `from __future__ import ...` statements and use the python3 print function syntax everywhere. Closes #3078.
* 2to3: Put `from __future__ import division in every python file.Charles Harris2013-03-011-0/+1
| | | | | | | | This should be harmless, as we already are division clean. However, placement of this import takes some care. In the future a script can be used to append new features without worry, at least until such time as it exceeds a single line. Having that ability will make it easier to deal with absolute imports and printing updates.
* Make linalg setup.py runnable under python3.David Cournapeau2009-12-031-2/+2
|
* Rename and reformat pythonxerbla.Stefan van der Walt2008-04-281-2/+2
|
* Fix import error.Pearu Peterson2008-04-091-0/+2
|
* Disable pythonxerbla.c patch for win32 (the MSVC linker failes on multiple ↵Pearu Peterson2008-04-091-0/+3
| | | | defined symbols) when using optimized lapack.
* Fixing compile error from MSVC.Pearu Peterson2008-04-091-1/+1
|
* Apply modified patch from ticket 673. The patch is effective when using ↵Pearu Peterson2008-04-091-4/+5
| | | | unoptimized lapack shipped with numpy [tested] or if optimized lapack library does not have xerbla_ defined [not tested]
* Clean up setup() calls.Pearu Peterson2007-05-111-1/+1
|
* clean up unused imports and bad whitespaceTim Leslie2007-01-091-2/+0
|
* numpy.linalg.setup.py: include the test casescookedm2006-07-141-0/+2
|
* Run reindent.py (script distributed with Python) over the source to remove ↵cookedm2006-03-101-1/+1
| | | | extraneous whitespace
* Change most setup.py filesTravis Oliphant2006-01-041-4/+4
|
* rename sub-packagesTravis Oliphant2006-01-041-0/+31