summaryrefslogtreecommitdiff
path: root/numpy/core/src
Commit message (Expand)AuthorAgeFilesLines
...
* | | | ENH: Add support for argmin and argmax for NEP42 dtypespdmurray2023-03-071-6/+11
|/ / /
* | | BUG: Fix reference counting error in arraydescr_newNathan Goldbaum2023-03-021-1/+0
* | | MAINT: allow NPY_DT_NUMERIC flag on user dtypesNathan Goldbaum2023-03-011-3/+5
* | | BUG: sorting checks `NPY_NEEDS_PYAPI` instead of `NPY_ITEM_REFCOUNT`Nathan Goldbaum2023-02-271-6/+6
* | | Merge pull request #23279 from seberg/issue-23277Charles Harris2023-02-252-2/+15
|\ \ \
| * | | BUG: Allow no-op clearing of void dtypesSebastian Berg2023-02-252-2/+15
| |/ /
* | | Merge pull request #23262 from ngoldbaum/public-array-clear-on-dtypeSebastian Berg2023-02-254-40/+37
|\ \ \
| * | | MAINT: return early from PyArray_FillObjectArray for non-legacy dtypesNathan Goldbaum2023-02-242-24/+17
| * | | DOC: reword explanatory commentNathan Goldbaum2023-02-241-10/+5
| * | | MAINT: initialize non-legacy REFCHK arrays outside PyArray_FillObjectArrayNathan Goldbaum2023-02-242-11/+27
| * | | MAINT: fencepost error fix and cleanup for dtype slots setupNathan Goldbaum2023-02-241-4/+4
| * | | API: expose traversal typedefs and get_clear_function slotNathan Goldbaum2023-02-243-27/+9
| * | | MAINT: refactor custom dtype slot setupNathan Goldbaum2023-02-242-10/+21
| |/ /
* | | MAINT: Use strong references/copies for sorting bufferSebastian Berg2023-02-251-12/+16
|/ /
* | Merge pull request #23255 from seberg/malloc0Charles Harris2023-02-232-0/+7
|\ \
| * | MAINT: Avoid malloc(0) in string (and generic) sortingSebastian Berg2023-02-212-0/+7
* | | Merge pull request #23153 from seiko2plus/removes_old_cpu_dispatcherCharles Harris2023-02-2213-359/+436
|\ \ \
| * | | SIMD: Suppress VSX ambiguous warningsSayed Adel2023-02-213-0/+13
| * | | MAINT, SIMD: fix c++ build when VSX intrinsics are in the scopeSayed Adel2023-02-203-22/+17
| * | | SIMD: Disable auto-vectorization of avx512_skxSayed Adel2023-02-201-1/+1
| * | | ENH, SIMD: reduce binary size of loops_autovecSayed Adel2023-02-201-35/+74
| * | | MAINT, SIMD: fix c++ build when AVX2 intrinsics are in the scopeSayed Adel2023-02-201-8/+8
| * | | ENH, SIMD: dispatch the rest of all ufuncs with fast callsSayed Adel2023-02-203-121/+161
| * | | MAINT, SIMD: fix c++ build when SSE intrinsics are in the scopeSayed Adel2023-02-201-24/+29
| * | | ENH, SIMD: move auto-vectorized inner functions to new dispatchable sourceSayed Adel2023-02-204-195/+180
| * | | MAINT, SIMD: Removes compiler definitions of attribute-based CPU dispatchingSayed Adel2023-02-201-1/+1
* | | | Merge pull request #23190 from ngoldbaum/is-numericCharles Harris2023-02-223-4/+14
|\ \ \ \
| * | | | ENH: add _is_numeric attribute for DType classesNathan Goldbaum2023-02-163-4/+14
* | | | | Merge pull request #23261 from ngoldbaum/nditer-error-tweakCharles Harris2023-02-221-1/+2
|\ \ \ \ \
| * | | | | MAINT: use full flag name in nditer constructor errorNathan Goldbaum2023-02-221-1/+2
* | | | | | Merge pull request #23165 from mattip/meson_windowsRalf Gommers2023-02-222-1/+23
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | BUG: fix code inside assertmattip2023-02-211-1/+1
| * | | | | BUG: use a _invalid_parameter_handler around _fdopen to prevent crashes when ...Matti Picus2023-02-201-0/+22
* | | | | | BUG: Fix initialization and cleanup of cast_info in put/putmaskSebastian Berg2023-02-221-9/+12
* | | | | | BUG: Pass threadstte to check_and_adjust_indexSebastian Berg2023-02-201-1/+1
* | | | | | MAINT: Avoid PyArray_Item_INCREF in putmaskSebastian Berg2023-02-201-12/+29
* | | | | | MAINT: Further removal of PyArray_Item_INCREF useSebastian Berg2023-02-201-24/+65
| |_|_|/ / |/| | | |
* | | | | Merge pull request #23248 from seberg/fast-take-no-refcntMatti Picus2023-02-201-26/+55
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | MAINT: Move/simplify fast-take dest incrememntSebastian Berg2023-02-201-6/+3
| * | | | ENH: Avoid use of item XINCREF and DECREF in fasttakeSebastian Berg2023-02-201-23/+55
* | | | | Merge pull request #23154 from seberg/astype-refCharles Harris2023-02-2010-134/+231
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | DOC: Fix and expand docs based on Nathan's reviewSebastian Berg2023-02-032-1/+22
| * | | | MAINT: And fix final cast warning for missing DTypeMeta cast.Sebastian Berg2023-02-031-1/+1
| * | | | MAINT: Remove now (currently) unnecessary castSebastian Berg2023-02-031-1/+1
| * | | | MAINT: Add missing includes to descriptor.h (for the extractor API)Sebastian Berg2023-02-032-0/+2
| * | | | ENH: Use new converter API for `arr.astype()` allowing DType classesSebastian Berg2023-02-031-4/+11
| * | | | MAINT: Make AdaptDescrToArray work with legacy descr OR dtype+descrSebastian Berg2023-02-036-24/+44
| * | | | MAINT: Use dtype+descr converter for private array params discoverySebastian Berg2023-02-033-105/+15
| * | | | ENH: Create new DType class aware converters for `dtype=`Sebastian Berg2023-02-032-0/+137
* | | | | MAINT: "comment out" unreachable subarray clear data cloneSebastian Berg2023-02-201-2/+10