summaryrefslogtreecommitdiff
path: root/numpy/core/src
Commit message (Expand)AuthorAgeFilesLines
* API,DEP: Move ufunc signature parsing to the startSebastian Berg2021-04-082-172/+380
* Merge pull request #18075 from ganesh-k13/enh_simd_npyv_floor_divMatti Picus2021-04-063-17/+130
|\
| * SIMD: Use scalar division for Armv7, Aarch64, and IBM/PowerGanesh Kathiresan2021-04-061-1/+11
| * SIMD, MAINT: Refined kernel and inner ufunc functionsGanesh Kathiresan2021-03-201-66/+43
| * ENH, SIMD: Use integer dispatchGanesh Kathiresan2021-03-202-17/+12
| * ENH, SIMD: Added integer dispatchGanesh Kathiresan2021-03-201-0/+131
* | Merge pull request #18629 from ahaldane/min_digitsCharles Harris2021-03-314-63/+101
|\ \
| * | BUG/ENH: fix array2string rounding bug by adding min_digits optionAllan Haldane2021-03-184-63/+101
* | | DEP: Disable PyUFunc_GenericFunction and PyUFunc_SetUsesArraysAsDataSebastian Berg2021-03-291-142/+38
* | | Remove unused variablesAnne Archibald2021-03-281-2/+0
* | | BUG: fix segfault in object/longdouble operationsAnne Archibald2021-03-281-1/+60
* | | BUG: Changed METH_VARARGS to METH_NOARGSmrios2021-03-251-1/+1
* | | BUG: Fix bug(s) introduced due to rebase/merge conflictSebastian Berg2021-03-231-2/+1
* | | DOC: Fixup ufunc-argparse release notes and code commentsSebastian Berg2021-03-231-2/+2
* | | MAINT: Declare functions `static` rather than `NPY_NO_EXPORT`Sebastian Berg2021-03-231-3/+3
* | | BUG: Add missing `static` leading to a (harmless) ref-leakSebastian Berg2021-03-231-1/+1
* | | BUG: Add missing decref to `dtype` parsingSebastian Berg2021-03-231-0/+1
* | | MAINT: Address comments by MartenSebastian Berg2021-03-232-78/+67
* | | DOC: Fixup comment style for nowSebastian Berg2021-03-231-1/+1
* | | DOC: Fixup comments based on review and remove TODOSebastian Berg2021-03-232-6/+10
* | | ENH: Optimize and cleanup ufunc calls and ufunc CheckOverridesSebastian Berg2021-03-235-1133/+855
* | | BUG: Fix small issues found with pytest-leaksSebastian Berg2021-03-235-12/+23
* | | Merge pull request #18593 from seberg/stop-lying-about-binop-inputsMatti Picus2021-03-216-54/+59
|\ \ \
| * | | Update numpy/core/src/multiarray/calculation.cSebastian Berg2021-03-181-1/+2
| * | | MAINT: Do not claim input to binops is `self` (array object)Sebastian Berg2021-03-106-54/+58
* | | | Merge pull request #18642 from seberg/splitup-faster-argparsing-optimize-asarrayMatti Picus2021-03-213-239/+386
|\ \ \ \ | |_|_|/ |/| | |
| * | | BUG,TST: Fix error path and argument name (and add test coverage)Sebastian Berg2021-03-182-4/+6
| * | | ENH: Use new argument parsing for array creation functionsSebastian Berg2021-03-183-239/+384
| | |/ | |/|
* | | BUG: Fix small valgrind-found issues (#18651)Sebastian Berg2021-03-194-0/+5
* | | Merge pull request #17492 from aitikgupta/unwanted-mode-depMatti Picus2021-03-183-2/+77
|\ \ \ | |/ / |/| |
| * | Update numpy/core/src/multiarray/conversion_utils.cEric Wieser2021-03-181-0/+1
| * | DEP: Deprecate inexact matches of mode, shift parameter parsing to CAitik Gupta2021-03-183-2/+76
* | | Merge pull request #18398 from seberg/casting-loop-signatureMatti Picus2021-03-1817-2244/+1643
|\ \ \ | |/ / |/| |
| * | MAINT: Add comment to unused func, silence linter and avoid non-contig errorSebastian Berg2021-03-181-0/+5
| * | DOC: Fix commentsSebastian Berg2021-02-173-13/+6
| * | BUG: Fix cleanup on `get_loop` failureSebastian Berg2021-02-121-4/+20
| * | BUG: string->datetime64 does not support byte swappingSebastian Berg2021-02-111-7/+8
| * | ENH: Micro-optimize within dtype castsSebastian Berg2021-02-111-1/+28
| * | MAINT: Fix casting signatures to align with NEP 43Sebastian Berg2021-02-1117-2230/+1587
* | | Merge pull request #15269 from seberg/splitup-faster-argparsing-infrastructureMatti Picus2021-03-185-183/+778
|\ \ \
| * | | ENH: Use fast parsing for methods and undispatched functionsSebastian Berg2021-03-172-183/+238
| * | | TST: Add specific argument parsing testsSebastian Berg2021-03-171-0/+23
| * | | ENH: Add vectorcall/fastcall argument parsing capabilitiesSebastian Berg2021-03-172-0/+517
* | | | Merge pull request #18571 from isuruf/overflowMatti Picus2021-03-171-0/+15
|\ \ \ \ | |/ / / |/| | |
| * | | Update commentIsuru Fernando2021-03-141-1/+1
| * | | Fix overflow warning on apple siliconIsuru Fernando2021-03-071-0/+15
* | | | MAINT: Remove strange `op == NULL` checkSebastian Berg2021-03-101-32/+2
| |_|/ |/| |
* | | Merge pull request #18178 from seiko2plus/npyv_fast_divMatti Picus2021-03-089-24/+1341
|\ \ \ | |/ / |/| |
| * | SIMD, BUG: fix passing immediate values to npyv_setall_u64 on SSE/32-bitSayed Adel2021-03-081-15/+10
| * | SIMD, TST: add test cases for NPYV fast integer divisionSayed Adel2021-03-081-3/+16