summaryrefslogtreecommitdiff
path: root/numpy/core/src/umath/reduction.c
Commit message (Expand)AuthorAgeFilesLines
* DOC: Adept code comments for clarity based on code reviewSebastian Berg2023-01-201-3/+5
* MAINT: Address many of Marten's commentsSebastian Berg2023-01-201-1/+1
* API: Bumpy experimental dtype api versionSebastian Berg2023-01-201-1/+1
* BUG: Fixup copying the wrong size in the cached path mostlySebastian Berg2023-01-201-3/+3
* MAINT: Rework things to make reorderability static and default to no initial ...Sebastian Berg2023-01-201-41/+48
* MAINT: Rename arraymethod reduction identity getterSebastian Berg2023-01-201-20/+24
* DOC,MAINT: Address "simple" review comments by MartenSebastian Berg2023-01-201-4/+1
* ENH: Move identity to the ArrayMethod to allow customizationSebastian Berg2023-01-201-33/+81
* BUG: Fix incorrect return type in reduce without initial valueSebastian Berg2022-01-311-1/+1
* MAINT, DOC: fix new typos detected by codespellDimitri Papadopoulos2022-01-121-1/+1
* BUG: Fix small issues found using valgrindSebastian Berg2021-12-101-14/+20
* MAINT: Refactor reductions to use NEP 43 style dispatching/promotionSebastian Berg2021-10-111-18/+39
* STY: Small cleanups of includes in *.c files.Charles Harris2021-09-031-3/+3
* STY: Small changes to the `PyUFunc_ReduceWrapper`Sebastian Berg2021-06-161-30/+16
* MAINT: Remove redundant headers (#17163)Chunlin2020-09-011-1/+0
* MAINT: Add error return to all casting functionality and NpyIterSebastian Berg2020-08-111-3/+4
* BUG: The reduction output must not cause the input to be broadcastSebastian Berg2020-05-301-1/+2
* BUG,MAINT: Simplify reduction result creation using reduce axisSebastian Berg2020-05-111-373/+137
* BUG: Fix double Py_DECREFEric Wieser2020-04-151-1/+0
* MAINT: Move declarations next to usageEric Wieser2020-04-151-17/+15
* MAINT: Address a TODO that was waiting for the umath/multiarray mergeEric Wieser2020-04-151-11/+3
* BUG: ensure reduction output matches input along non-reduction axes.Marten van Kerkwijk2019-12-201-2/+21
* MAINT: Add const qualifier in some places where clang suggests itSebastian Berg2019-09-111-4/+4
* BUG: Refcount fixes (#13860)Sebastian Berg2019-07-031-1/+3
* BUG: fix null pointer passed as argument 2, which is declared to never be nullAlexander Shadchin2019-05-251-2/+6
* ENH: allow where in reduce operations.Marten van Kerkwijk2019-01-031-12/+19
* BUG: Fix incorrect/missing reference cleanups found using valgrind (#12624)Sebastian Berg2019-01-031-1/+0
* MAINT: define _MULTIARRAYMODULE to use functions directly (not via PyArray_API)mattip2018-08-211-3/+1
* BUG: Set ndarray.base before calling __array_finalize__Eric Wieser2018-06-071-0/+3
* MAINT/STY: Line wrap PyArray_NewFromDescr consistentlyEric Wieser2018-06-051-7/+4
* BUG: optimizing compilers can reorder call to npy_get_floatstatus (#11036)Matti Picus2018-05-091-1/+1
* MAINT: Separate check and error message, for clarityEric Wieser2018-01-031-22/+14
* MAINT: deduplicate check_nonreorderable_axesEric Wieser2018-01-031-27/+12
* Merge pull request #8952 from eric-wieser/identity-refactorMarten van Kerkwijk2017-12-181-8/+8
|\
| * MAINT: Removed duplicated code around `ufunc->identity`Eric Wieser2017-10-031-8/+8
* | DEP, ENH: deprecate UPDATEIFCOPY (except for nditer) and replace with WRITEBA...Matti Picus2017-11-081-2/+4
|/
* MAINT: fix implicit declaration warningJulian Taylor2017-09-011-0/+1
* BUG: Check for warnings in ufunc.reduceEric Wieser2017-06-021-1/+13
* BUG: core: fix refcount errors on error handlingPauli Virtanen2017-02-061-0/+1
* ENH: umath: turn on overlap detection + copying in ufunc reductionsPauli Virtanen2017-01-191-4/+41
* DOC: Fix more typos in docs and comments.Dongjoon Hyun2016-02-251-1/+1
* MAINT: Remove single file compilation support.Charles Harris2015-10-081-2/+0
* STY: Giant whitespace cleanup.Charles Harris2013-08-181-1/+1
* BUG: Fix 0-d array special case from reductions.Sebastian Berg2013-05-081-1/+2
* API: Make nditer support ndim == 0 for 0-d iterations.Sebastian Berg2013-03-031-1/+1
* BUG: fix Python 2.4 build with NPY_SEPARATE_COMPILATIONPauli Virtanen2012-11-111-1/+1
* BUG: Fix bug with size 1-dims in CreateSortedStridePermSebastian Berg2012-10-211-1/+1
* BUG: handle length-0 axes correctly in ufunc.reduce without identityNathaniel J. Smith2012-06-271-13/+14
* BUG: fix separate compilation (with distutils only for now).David Cournapeau2012-06-241-2/+8
* Remove PyArray_ReduceWrapper from public APINathaniel J. Smith2012-06-161-14/+76