Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | | | | | Merge pull request #11717 from charris/fix-einsum-default-optimize | Sebastian Berg | 2018-08-12 | 1 | -2/+2 | |
|\ \ \ \ \ \ \ | |_|_|_|_|_|/ |/| | | | | | | MAINT: Make einsum optimize default to False. | |||||
| * | | | | | | MAINT: Make einsum optimize default to False. | Charles Harris | 2018-08-12 | 1 | -2/+2 | |
| | |_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | False is the documented value and the value used in 1.14, but 1.15.0 was turning optimization on when there were more than two arguments, resulting in slowdowns for small matrices. This choice can be revisited as the einsum optimization code matures. Closes #11714. | |||||
* | | | | | | Merge pull request #11711 from QuLogic/bigendian-defs | Charles Harris | 2018-08-12 | 1 | -2/+3 | |
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | BUG: Fix undefined functions on big-endian systems. | |||||
| * | | | | | BUG: Fix undefined functions on big-endian systems. | Elliott Sales de Andrade | 2018-08-11 | 1 | -2/+3 | |
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | Both these functions are used by `Dragon4_PrintFloat_IEEE_binary128`, which was recently made available on big-endian systems without these in #11568. | |||||
* | | | | | Merge pull request #11695 from eric-wieser/missing-PyErr_NoMemory | Charles Harris | 2018-08-09 | 2 | -0/+3 | |
|\ \ \ \ \ | | | | | | | | | | | | | BUG: Add missing PyErr_NoMemory after failing malloc | |||||
| * | | | | | BUG: Add missing PyErr_NoMemory after failing malloc | Eric Wieser | 2018-08-08 | 2 | -0/+3 | |
| | |/ / / | |/| | | | ||||||
* | | | | | Merge pull request #11691 from charris/fix_matrix_power_regression | Matti Picus | 2018-08-08 | 2 | -61/+90 | |
|\ \ \ \ \ | |/ / / / |/| | | | | BUG: Make matrix_power again work for object arrays. | |||||
| * | | | | BUG: Make matrix_power again work for object arrays. | Charles Harris | 2018-08-08 | 2 | -61/+90 | |
| | |_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes a regression introduced in #10985. Using matmul instead of dot lost the object type while adding the ability to deal with matrix stacks. This implements a partial fix by using dot for 2-D object arrays, but object array stacks cannot be handled. Closes #11635. | |||||
* | | | | Merge pull request #11673 from sotte/mention_geomspace_in_linspace_docs | Matti Picus | 2018-08-08 | 1 | -1/+4 | |
|\ \ \ \ | | | | | | | | | | | DOC: Add geomspace to "See also" of linspace | |||||
| * | | | | DOC: Add geomspace to "See also" of linspace | Stefan Otte | 2018-08-07 | 1 | -1/+4 | |
| | | | | | ||||||
* | | | | | Merge pull request #11692 from charris/remove-duplicate-code | Matti Picus | 2018-08-08 | 1 | -5/+0 | |
|\ \ \ \ \ | | | | | | | | | | | | | MAINT: Remove duplicate code. | |||||
| * | | | | | MAINT: Remove duplicate code. | Charles Harris | 2018-08-08 | 1 | -5/+0 | |
| | |/ / / | |/| | | | | | | | | | | | | | | | | | | The definition of `_complex_types_map` was repeated in the linalg.py file. | |||||
* | | | | | Merge pull request #11670 from mattip/refactor-mapping-iterator | Sebastian Berg | 2018-08-08 | 1 | -14/+14 | |
|\ \ \ \ \ | | | | | | | | | | | | | MAINT: trivially refactor mapped indexing | |||||
| * | | | | | MAINT: trivially refactor mapped indexing | mattip | 2018-08-06 | 1 | -14/+14 | |
| | |/ / / | |/| | | | ||||||
* | | | | | Merge pull request #11688 from tgsmith61591/update-broadcast-doc | Matti Picus | 2018-08-08 | 1 | -4/+5 | |
|\ \ \ \ \ | | | | | | | | | | | | | DOC: Update broadcasting doc with current exception details | |||||
| * | | | | | DOC: Replace <type 'exceptions.ValueError'> with ValueError | Taylor Smith | 2018-08-08 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Replaced <type 'exceptions.ValueError'> with ValueError in the outdated broadcasting documentation | |||||
| * | | | | | DOC: Update broadcasting documentation | Taylor Smith | 2018-08-08 | 1 | -4/+5 | |
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The exception details in the broadcast documentation were old and have since been updated. This commit changes the documentation to reflect the current exception details when a shape mismatch is raised. | |||||
* | | | | | Merge pull request #11594 from convexset/handle-empty-matrices-lstsq | Matti Picus | 2018-08-07 | 3 | -10/+40 | |
|\ \ \ \ \ | |_|/ / / |/| | | | | ENH: support for empty matrices in linalg.lstsq | |||||
| * | | | | cleaned up documentation | Jeremy Chen | 2018-08-03 | 1 | -11/+5 | |
| | | | | | ||||||
| * | | | | Merge branch 'handle-empty-matrices-lstsq' of ↵ | Jeremy Chen | 2018-08-03 | 0 | -0/+0 | |
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://github.com/convexset/numpy into handle-empty-matrices-lstsq * 'handle-empty-matrices-lstsq' of https://github.com/convexset/numpy: ENH: support for empty matrices in linalg.lstsq | |||||
| | * | | | | ENH: support for empty matrices in linalg.lstsq | Jeremy Chen | 2018-08-02 | 3 | -5/+41 | |
| | | | | | | ||||||
| * | | | | | ENH: support for empty matrices in linalg.lstsq | Jeremy Chen | 2018-08-03 | 3 | -5/+41 | |
| | | | | | | ||||||
* | | | | | | Merge pull request #11669 from charris/fix-void_getitem-regression | Eric Wieser | 2018-08-06 | 2 | -1/+8 | |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | BUG: Fix regression in `void_getitem` | |||||
| * | | | | | | BUG: Fix regression in void_getitem | Charles Harris | 2018-08-06 | 2 | -1/+8 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The return value for a void array was not correct. Closes #11668. | |||||
* | | | | | | | Merge pull request #11679 from tylerjereddy/codecov_ignore | Matti Picus | 2018-08-06 | 1 | -0/+3 | |
|\ \ \ \ \ \ \ | |_|_|_|/ / / |/| | | | | | | TST: ignore setup.py files for codecov reports | |||||
| * | | | | | | TST: ignore setup.py files for codecov reports. | Tyler Reddy | 2018-08-06 | 1 | -0/+3 | |
|/ / / / / / | ||||||
* | | | | | | Merge pull request #11615 from seberg/clip_order | Marten van Kerkwijk | 2018-08-04 | 3 | -14/+45 | |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | BUG: Clip uses wrong memory order in output | |||||
| * | | | | | | ENH: clip test output argument for memory overlap with input | Sebastian Berg | 2018-07-27 | 3 | -14/+35 | |
| | | | | | | | ||||||
| * | | | | | | BUG: Clip uses wrong memory order in output | Sebastian Berg | 2018-07-27 | 2 | -3/+13 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also fixes two smaller typos in the test where the wrong arrays were compared Closes gh-11605 | |||||
* | | | | | | | Merge pull request #11535 from eric-wieser/fix-6511 | Charles Harris | 2018-08-03 | 2 | -33/+53 | |
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | | | MAINT: Improve memory usage in PEP3118 format parsing | |||||
| * | | | | | | MAINT: Improve memory usage in PEP3118 format parsing | Eric Wieser | 2018-07-23 | 2 | -33/+53 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously a local `Stream` class would be defined every time a format needed parsing. Classes in cpython create reference cycles, which create load on the GC. This may or may not resolve gh-6511 | |||||
* | | | | | | | Merge pull request #11299 from eric-wieser/ma-fieldless-dtype | Allan Haldane | 2018-08-02 | 2 | -21/+35 | |
|\ \ \ \ \ \ \ | |_|_|/ / / / |/| | | | | | | BUG: Prevent crashes on 0-length structured void scalars | |||||
| * | | | | | | BUG: Prevent crashes on 0-length structured void scalars | Eric Wieser | 2018-06-10 | 2 | -21/+35 | |
| | | | | | | | ||||||
* | | | | | | | Merge pull request #11611 from stefanv/roadmap | Matti Picus | 2018-08-01 | 3 | -8/+178 | |
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | NEP: Add roadmap section and subdocuments to NEPs | |||||
| * | | | | | | | roadmap: adjust outline structure | Stefan van der Walt | 2018-07-25 | 1 | -10/+9 | |
| | | | | | | | | ||||||
| * | | | | | | | scope: Clarify that we do care about speed | Stefan van der Walt | 2018-07-25 | 1 | -1/+5 | |
| | | | | | | | | ||||||
| * | | | | | | | String encoding: increase uncertainty about correct implementation (as per ↵ | Stefan van der Walt | 2018-07-25 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://mail.python.org/pipermail/numpy-discussion/2018-July/078472.html) | |||||
| * | | | | | | | Clarify section on alternative array types | Stefan van der Walt | 2018-07-25 | 1 | -2/+2 | |
| | | | | | | | | ||||||
| * | | | | | | | Clarify comment on scalar conversion inconsistency. | Stefan van der Walt | 2018-07-25 | 1 | -2/+4 | |
| | | | | | | | | ||||||
| * | | | | | | | Clarify fixed-width storage strings. | Stefan van der Walt | 2018-07-25 | 1 | -1/+1 | |
| | | | | | | | | ||||||
| * | | | | | | | Add memory mapped arrays to scope | Stefan van der Walt | 2018-07-24 | 1 | -0/+1 | |
| | | | | | | | | ||||||
| * | | | | | | | Remove BIDS grant section until we can write that text | Stefan van der Walt | 2018-07-24 | 2 | -8/+0 | |
| | | | | | | | | ||||||
| * | | | | | | | Better formatting of scope | Stefan van der Walt | 2018-07-24 | 1 | -22/+35 | |
| | | | | | | | | ||||||
| * | | | | | | | DOC: add roadmap doc | mattip | 2018-07-24 | 1 | -2/+111 | |
| | | | | | | | | ||||||
| * | | | | | | | Add roadmap section and subdocuments to NEPs | Stefan van der Walt | 2018-07-23 | 4 | -8/+58 | |
| | | | | | | | | ||||||
* | | | | | | | | Merge pull request #11595 from mattip/warn-scalar-minimum | Charles Harris | 2018-08-01 | 2 | -3/+11 | |
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | BUG:warn on Nan in minimum,maximum for scalars, float16 | |||||
| * | | | | | | | | BUG:warn on Nan in minimum,maximum for scalars | mattip | 2018-07-23 | 2 | -3/+11 | |
| | |_|_|_|/ / / | |/| | | | | | | ||||||
* | | | | | | | | Merge pull request #11503 from jor-/master | Matti Picus | 2018-08-01 | 2 | -7/+33 | |
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | MAINT: improve error message for isposinf and isneginf on complex values | |||||
| * | | | | | | | | ENH: isposinf and isneginf now also works for values which can not be ↵ | Joscha Reimer | 2018-07-30 | 1 | -6/+14 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | converted to arrays | |||||
| * | | | | | | | | API: isposinf and isneginf now raise TypeError instead of ValueError for ↵ | Joscha Reimer | 2018-07-30 | 2 | -6/+6 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | complex values |