Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | TST: clean up some ResourceWarnings from python 3.2. | rgommers | 2011-03-02 | 3 | -17/+27 | |
| | | | | | | | | | | Also make the sys.stdout temporary redirection in one of the tests a little more robust. That is still necessary, because np.who is very noisy. | |||||
| * | DEP: fix deprecation warning from using SafeConfigParser with Python 3.2. | rgommers | 2011-03-02 | 2 | -4/+9 | |
| | | ||||||
| * | TST: replace assert with assert_ | rgommers | 2011-03-02 | 2 | -24/+24 | |
| | | ||||||
| * | TST: replace TestCase.assert_ (deprecated in Python 3.2) with assertTrue. | rgommers | 2011-03-02 | 4 | -64/+64 | |
| | | ||||||
| * | BUG: fix up shared library extension, which changed in Python 3.2. Closes #1749. | rgommers | 2011-03-02 | 3 | -2/+13 | |
| | | ||||||
| * | DOC: merge wiki changes for numpy.random and regenerate mtrand.c | rgommers | 2011-03-02 | 2 | -5879/+5572 | |
| | | ||||||
| * | DOC: merge wiki edits for numpy.core. | rgommers | 2011-03-02 | 5 | -69/+173 | |
| | | ||||||
| * | DOC: merge more doc wiki edits. | rgommers | 2011-03-02 | 5 | -18/+61 | |
| | | ||||||
| * | DOC: merge wiki changes, structured array doc. | rgommers | 2011-03-02 | 1 | -1/+32 | |
| | | ||||||
| * | TST: update namespace usage in lib.polynomial doctests. | rgommers | 2011-03-01 | 1 | -11/+8 | |
| | | ||||||
| * | BUG: correct file name in fromregex. | rgommers | 2011-03-01 | 1 | -2/+2 | |
| | | | | | | | | Thanks to Mattieu Brucher for reporting. | |||||
| * | TYP: Fix typo. | Charles Harris | 2011-02-18 | 1 | -1/+1 | |
| | | ||||||
| * | ENH: core: Allow user to pass in output array for dot() | Luis Pedro Coelho | 2011-02-12 | 6 | -39/+241 | |
| | | | | | | | | | | | | | | | | | | This avoids the memory allocation. It is strict in checking that the types are correct, but since it is intended as an optimisation, it should only be used when the user knows what they are doing. The out parameter is added both to the BLAS and non-BLAS versions of dot(). Tests are included. | |||||
| * | BUG: core: fix build on Python 2.4 | Pauli Virtanen | 2011-02-12 | 1 | -1/+1 | |
| | | ||||||
| * | BUG: Fix python3k import problem. | Charles Harris | 2011-02-11 | 1 | -1/+1 | |
| | | ||||||
| * | BUG: ticket 1741, fix python 2.5 incompatibilityr. | Charles Harris | 2011-02-11 | 1 | -4/+6 | |
| | | ||||||
| * | STY: index_tricks: Improve comments and documentation strings | Mark Wiebe | 2011-02-10 | 5 | -32/+63 | |
| | | ||||||
| * | ENH: index_tricks: Implement unravel_index and ravel_coords functions in C | Mark Wiebe | 2011-02-10 | 7 | -79/+766 | |
| | | ||||||
| * | ENH: einsum: Specialize contiguous reduction, add SSE prefetching | Mark Wiebe | 2011-02-10 | 1 | -6/+239 | |
| | | | | | | | | | | Also fix some compiler warnings. The biggest performance improvement was from adding SSE prefetching. | |||||
| * | BUG: core: Fix potential reference leak, possibly fix segfault ticket #1737 | Mark Wiebe | 2011-02-09 | 2 | -11/+10 | |
| | | ||||||
| * | BUG: umath: Fix reference usage after Py_DECREF | Mark Wiebe | 2011-02-08 | 1 | -1/+1 | |
| | | | | | | | | | | Because of the details, I don't think this was causing a crash, but it's a bug nonetheless. | |||||
| * | STY: core: Rename 'dtype' parameter to 'requested_dtype' in ↵ | Mark Wiebe | 2011-02-08 | 1 | -18/+26 | |
| | | | | | | | | | | | | | | GetArrayParamsFromObject The first naming choice was a bit confusing, this should help make it more clear. | |||||
| * | Merge branch 'array_params_from_object' of ↵ | Charles Harris | 2011-02-08 | 11 | -514/+751 | |
| |\ | | | | | | | | | | https://github.com/m-paradox/numpy into params_from_object | |||||
| | * | BUG: iter: The wrong stride was specialized in some cases for reduction operands | Mark Wiebe | 2011-02-07 | 2 | -3/+13 | |
| | | | ||||||
| | * | BUG: core: Fix regression ticket #1735 | Mark Wiebe | 2011-02-06 | 2 | -0/+27 | |
| | | | ||||||
| | * | ENH: core: Add new GetArrayParamsFromObject API function (fixes #1081) | Mark Wiebe | 2011-02-06 | 9 | -511/+711 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This function allows code to query an object's "innate" type and shape, without actually creating a NumPy array out of it. PyArray_FromAny has been changed to use this function, as an assurance that its implementation is correct. This also fixes the known failure in test_regression.py. | |||||
| * | | BUG: fix undefined macro. | David Cournapeau | 2011-02-08 | 1 | -0/+1 | |
| | | | | | | | | | | | | This was surprisingly not detected by gcc, but it fixes clang build. | |||||
| * | | STY: remove unneeded import of ufuncobject in halffloat.c. | David Cournapeau | 2011-02-08 | 1 | -1/+0 | |
| | | | ||||||
| * | | BUG: fix inline definition so that it still inlines in gcc -ansi mode. | David Cournapeau | 2011-02-08 | 1 | -4/+6 | |
| |/ | ||||||
| * | BUG: tweak NPY_INLINE definition to allow compilation in gcc -pendantic mode. | David Cournapeau | 2011-02-07 | 1 | -1/+3 | |
| | | ||||||
| * | BUG: fix a few C99-ism in C code. | David Cournapeau | 2011-02-07 | 1 | -4/+4 | |
| | | ||||||
| * | DOC: Note version minlength was added to bincount. | Charles Harris | 2011-02-04 | 1 | -0/+1 | |
| | | ||||||
| * | WHT: Cleanup whitespace. | Charles Harris | 2011-02-03 | 5 | -14/+11 | |
| | | ||||||
| * | ENH: iter: Add timing code, rewrite some sections to be faster/more clear | Mark Wiebe | 2011-02-03 | 1 | -401/+488 | |
| | | ||||||
| * | ENH: core: Small tweaks to streamline things a bit | Mark Wiebe | 2011-02-03 | 3 | -135/+129 | |
| | | ||||||
| * | BUG: perf: Operations like "a[10:20] += 10" were doing a redundant copy | Mark Wiebe | 2011-02-03 | 2 | -8/+39 | |
| | | ||||||
| * | BUG: Fix a compiler warning. | Charles Harris | 2011-02-03 | 1 | -0/+1 | |
| | | ||||||
| * | WHT: Whitespace cleanup. | Charles Harris | 2011-02-03 | 20 | -96/+76 | |
| | | ||||||
| * | Merge branch 'einsum_changes' of https://github.com/m-paradox/numpy into ↵ | Charles Harris | 2011-02-03 | 8 | -883/+1833 | |
| |\ | | | | | | | | | | einsum-changes | |||||
| | * | ENH: einsum: Write specialized unbuffered loops for several cases | Mark Wiebe | 2011-02-01 | 4 | -61/+473 | |
| | | | | | | | | | | | | | | | | | | Also converted the used inner loops to SSE2, to bring einsum fairly close to numpy.dot's performance for matrix-vector and matrix-matrix multiplication. | |||||
| | * | ENH: iter: Catch another case with fixed strides. | Mark Wiebe | 2011-02-01 | 2 | -19/+88 | |
| | | | ||||||
| | * | TST: einsum: Move einsum tests to a different file | Mark Wiebe | 2011-02-01 | 2 | -460/+470 | |
| | | | ||||||
| | * | ENH: einsum: Change function selection function to use tables | Mark Wiebe | 2011-02-01 | 1 | -189/+163 | |
| | | | ||||||
| | * | ENH: einsum: Change loop unrolling to be better for small loops | Mark Wiebe | 2011-02-01 | 2 | -242/+317 | |
| | | | ||||||
| | * | ENH: einsum: Add alternative einsum parameter method | Mark Wiebe | 2011-02-01 | 3 | -58/+411 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This makes the following equivalent: einsum('ii', a) einsum(a, [0,0]) einsum('ii->i', a) einsum(a, [0,0], [0]) einsum('...i,...i->...', a, b) einsum(a, [Ellipsis,0], b, [Ellipsis,0], [Ellipsis]) | |||||
| | * | ENH: einsum: Disable broadcasting by default, allow spaces in subscripts string | Mark Wiebe | 2011-02-01 | 3 | -81/+138 | |
| | | | ||||||
| * | | BUG: ufunc: Fix regression of accumulate with zero-size result (ticket #1733) | Mark Wiebe | 2011-02-02 | 3 | -32/+54 | |
| | | | ||||||
| * | | BUG: core: Fix remaining Python 3 regressions | Mark Wiebe | 2011-02-02 | 4 | -20/+190 | |
| | | | ||||||
| * | | BLD: Fix scons and setup.py build | Mark Wiebe | 2011-02-02 | 2 | -2/+7 | |
| | | | | | | | | | | | | | | | | | | Moving lowlevel_strided_loops.h to private needed a setup.py update. Added the rest of the needed files in the scons configuration. | |||||
| * | | BLD: fix numscons build. | David Cournapeau | 2011-02-02 | 2 | -0/+5 | |
| |/ |