| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | BUG: incorrect error fallthrough in nditer | Allan Haldane | 2021-03-02 | 2 | -1/+14 |
| | | | | | Fixup to gh-18450 | ||||
| * | revert changes to note, add a sentence about fix | Matti Picus | 2021-03-02 | 1 | -3/+3 |
| | | |||||
| * | DOC: trunc, floor, ceil, rint, fix should all link to each other in see also | Tim Hoffmann | 2021-03-01 | 1 | -7/+8 |
| | | |||||
| * | Merge pull request #18479 from cgohlke/patch-4 | Matti Picus | 2021-02-24 | 1 | -1/+6 |
| |\ | | | | | BUG: check if PyArray_malloc succeeded | ||||
| | * | Goto done when an error condition is reached | Christoph Gohlke | 2021-02-24 | 1 | -0/+1 |
| | | | |||||
| | * | BUG: check if PyArray_malloc succeeded | Christoph Gohlke | 2021-02-23 | 1 | -1/+5 |
| | | | |||||
| * | | Merge pull request #18476 from cgohlke/patch-1 | Sebastian Berg | 2021-02-24 | 1 | -2/+2 |
| |\ \ | | | | | | | BUG: Remove suspicious type casting | ||||
| | * | | MAINT: cast Py_ssize_t to int | Christoph Gohlke | 2021-02-23 | 1 | -1/+1 |
| | | | | |||||
| | * | | MAINT: Remove suspicious type casting | Christoph Gohlke | 2021-02-23 | 1 | -1/+1 |
| | |/ | |||||
| * | | Merge pull request #18478 from cgohlke/patch-3 | Sebastian Berg | 2021-02-23 | 1 | -1/+1 |
| |\ \ | | | | | | | BUG: verify pointer against NULL before using it | ||||
| | * | | MAINT: verify pointer against NULL before using it | Christoph Gohlke | 2021-02-23 | 1 | -1/+1 |
| | |/ | |||||
| * | | MAINT: remove nonsensical comparison of pointer < 0 | Christoph Gohlke | 2021-02-23 | 1 | -1/+1 |
| |/ | |||||
| * | Merge pull request #18450 from ahaldane/fix_nditer_od_segfault | Sebastian Berg | 2021-02-22 | 4 | -8/+35 |
| |\ | | | | | BUG: Segfault in nditer buffer dealloc for Object arrays | ||||
| | * | BUG: Segfault in nditer buffer dealloc for Object arrays | Allan Haldane | 2021-02-21 | 4 | -8/+35 |
| | | | |||||
| * | | Merge pull request #18404 from seberg/issue-18401 | Matti Picus | 2021-02-22 | 2 | -43/+76 |
| |\ \ | |/ |/| | BUG: Fix iterator shape in advanced index assignment broadcast error | ||||
| | * | BUG: Fix iterator shape in advanced index assignment broadcast error | Sebastian Berg | 2021-02-12 | 2 | -43/+76 |
| | | | | | | | | | | | | | | | The reported shape always missed the transpose operation, this refactors the transpose getting out and applies it in the error path. Closes gh-18401, gh-5710 | ||||
| * | | Merge pull request #15392 from seberg/void-no-arr-modification | Matti Picus | 2021-02-19 | 3 | -81/+153 |
| |\ \ | | | | | | | BUG: Remove temporary change of descr/flags in VOID functions | ||||
| | * | | TST: Add test for nonzero and copyswapn (through advanced indexing) | Sebastian Berg | 2021-02-17 | 2 | -0/+45 |
| | | | | |||||
| | * | | BUG: Remove temporary change of descr/flags in VOID functions | Sebastian Berg | 2021-02-17 | 1 | -81/+108 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is done using a hack around stack allocated arrays, which requires some dark magic with respect to the setting the base object (we skip normal arrays and INCREF/DECREF during base setting, which _does_ work for such static arrays, but only if we give them a (not quite) fake refcount of 1 and set the base and their type correctly to PyArrayType. Closes gh-15387 | ||||
| * | | | CLN: Add additional cast | Kevin Sheppard | 2021-02-18 | 1 | -1/+1 |
| | | | | |||||
| * | | | MAINT: Correct code producing warnings | Kevin Sheppard | 2021-02-18 | 2 | -2/+2 |
| |/ / | | | | | | | | | Cast to avoid warnings Correct function | ||||
| * | | Merge pull request #16588 from SabrinaSimao/np.transpode-documentation | Melissa Weber Mendonça | 2021-02-17 | 2 | -0/+4 |
| |\ \ | | | | | | | DOC: unify the docs for np.transpose and ndarray.transpose | ||||
| | * | | DOC: changed the way the link is being used from transpose to ndarray.transpose | SabrinaSimao | 2020-06-12 | 2 | -4/+4 |
| | | | | | | | | | | | | | I feel like the `ndarray.transpose` has more details, and it's also called by `transpose`, so i changed the way the link between them was being used | ||||
| | * | | unify the docs for np.transpose and ndarray.transpose | SabrinaSimao | 2020-06-12 | 2 | -0/+4 |
| | | | | |||||
| * | | | Merge pull request #18420 from seberg/override-leaks | Matti Picus | 2021-02-16 | 1 | -0/+7 |
| |\ \ \ | | | | | | | | | BUG: Fix tiny memory leaks when `like=` overrides are used | ||||
| | * | | | BUG: Fix tiny memory leaks when `like=` overrides are used | Sebastian Berg | 2021-02-15 | 1 | -0/+7 |
| | | |/ | |/| | | | | | | | | | | | | | | | | I thought I had fixed these leaks, but it appears I missed some. We probably should backport this to 1.20.x (its simple), but the leaks are also pretty harmless unless someone uses `like=` hundrets of thousands of times in a running program (and its a new fetaure). | ||||
| * | | | Merge pull request #18405 from mdubravski/correlateFix | Melissa Weber Mendonça | 2021-02-15 | 1 | -0/+6 |
| |\ \ \ | | | | | | | | | DOC: Mention `scipy.signal.correlate` and FFT method in `np.correlate` | ||||
| | * | | | Update numpy/core/numeric.py | mdubravski | 2021-02-14 | 1 | -1/+3 |
| | | | | | | | | | | | | | Co-authored-by: Matti Picus <matti.picus@gmail.com> | ||||
| | * | | | Update numpy/core/numeric.py | mdubravski | 2021-02-13 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | rewording to eliminate redundancy Co-authored-by: Melissa Weber Mendonça <melissawm@gmail.com> | ||||
| | * | | | Update numpy/core/numeric.py | mdubravski | 2021-02-13 | 1 | -2/+1 |
| | | | | | | | | | | | | | | | | | | | | | rewording to eliminate redundancy Co-authored-by: Melissa Weber Mendonça <melissawm@gmail.com> | ||||
| | * | | | correlate fix | mdubravski | 2021-02-12 | 1 | -0/+5 |
| | | | | | |||||
| * | | | | Merge pull request #18183 from touqir14/master | Matti Picus | 2021-02-15 | 2 | -69/+182 |
| |\ \ \ \ | |/ / / |/| | | | MAINT: Optimize numpy.count_nonzero for int types using SIMD operations | ||||
| | * | | | fix up | Sayed Adel | 2021-02-13 | 1 | -1/+1 |
| | | | | | |||||
| | * | | | cleanup | Sayed Adel | 2021-02-13 | 1 | -264/+148 |
| | | | | | |||||
| | * | | | Ensured overflow does not happen for 16 and 32 bit ints | Touqir Sajed | 2021-02-08 | 1 | -8/+26 |
| | | | | | |||||
| | * | | | Modified PyArray_CountNonzero to discriminate between types based on elsize | Touqir Sajed | 2021-02-08 | 1 | -10/+49 |
| | | | | | |||||
| | * | | | removed the target variable and changed the loop as suggested by Sayed Adel | Touqir Sajed | 2021-02-07 | 1 | -20/+8 |
| | | | | | |||||
| | * | | | another attempt to fix build issues | Touqir Sajed | 2021-02-07 | 1 | -20/+18 |
| | | | | | |||||
| | * | | | some fixes for the build problems | Touqir Sajed | 2021-02-07 | 1 | -4/+13 |
| | | | | | |||||
| | * | | | fixed CI errors and optimized further simd_16 and simd_32 | Touqir Sajed | 2021-02-07 | 1 | -17/+17 |
| | | | | | |||||
| | * | | | Replaced manual sums with horizontal simd sums for count_nonzero_16/64 | Touqir Sajed | 2021-02-05 | 1 | -12/+3 |
| | | | | | |||||
| | * | | | Merge remote-tracking branch 'upstream/master' | Touqir Sajed | 2021-02-05 | 46 | -526/+711 |
| | |\ \ \ | |||||
| | * | | | | Removed commented out code from PyArray_CountNonzero | Touqir Sajed | 2021-01-19 | 1 | -19/+0 |
| | | | | | | |||||
| | * | | | | Merged count_nonzero_int16/int32/int64 into count_nonzero_int and added ↵ | Touqir Sajed | 2021-01-19 | 1 | -140/+66 |
| | | | | | | | | | | | | | | | | | | | | | benchmarks | ||||
| | * | | | | Added tests for i1,i2,i4,i8 types for numpy.count_nonzero function | Touqir Sajed | 2021-01-18 | 1 | -4/+14 |
| | | | | | | |||||
| | * | | | | Added support for SIMD operations for int types in numpy.count_nonzero function | Touqir Sajed | 2021-01-18 | 1 | -9/+278 |
| | | | | | | |||||
| * | | | | | Merge pull request #18390 from BvB93/einsum | Charles Harris | 2021-02-12 | 1 | -0/+138 |
| |\ \ \ \ \ | | | | | | | | | | | | | ENH: Add annotations for `np.core.einsumfunc` | ||||
| | * | | | | | ENH: Add annotations for `np.core.einsumfunc` | Bas van Beek | 2021-02-10 | 1 | -0/+138 |
| | | | | | | | |||||
| * | | | | | | Merge pull request #18339 from melissawm/matmul_docs | Charles Harris | 2021-02-12 | 1 | -2/+2 |
| |\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | | DOC: Discussion on the @ operator and the matrix class | ||||
| | * | | | | | Applying suggestions from PR review. | melissawm | 2021-02-05 | 1 | -1/+1 |
| | | | | | | | |||||
