summaryrefslogtreecommitdiff
path: root/numpy/core/src
Commit message (Expand)AuthorAgeFilesLines
* DEP: deprecate scalar conversions for arrays with ndim > 0 (#10615)Nico Schlömer2023-04-204-7/+39
* DOC: warn against using zero-filling loop with a previously allocated arrayNathan Goldbaum2023-04-192-0/+6
* MAINT: housecleaning for traversal loop setup and implementationsNathan Goldbaum2023-04-195-89/+96
* MAINT: support traversal loops without initializing the descriptorNathan Goldbaum2023-04-191-1/+2
* MNT: respond to review commentsNathan Goldbaum2023-04-192-15/+11
* MAINT: refactor zero-filling to use a traversal loopNathan Goldbaum2023-04-185-58/+121
* ENH: Refactor special zero-filling to be managed by the DTypeNathan Goldbaum2023-04-186-48/+77
* BUG: lib: Tiny fix for the loadtxt tokenizer when PyMem_Malloc() fails.warren2023-04-141-0/+2
* Merge pull request #23495 from AlekseiNikiforovIBM/pytorch_fixesCharles Harris2023-04-051-7/+7
|\
| * BUG: fix loading and storing big arrays on s390xAleksei Nikiforov2023-03-301-7/+7
* | Merge pull request #23521 from seiko2plus/cpp_2017Charles Harris2023-04-041-1/+3
|\ \
| * | ENH: Raise C++ standard to C++17Sayed Adel2023-04-041-1/+3
* | | Merge pull request #23498 from ngoldbaum/buffer-error-fixCharles Harris2023-03-311-3/+11
|\ \ \
| * | | MAINT: revert change to legacy pathNathan Goldbaum2023-03-301-1/+1
| * | | MAINT: fix compiling on MUSLNathan Goldbaum2023-03-301-3/+2
| * | | MAINT: improve error when a dtype doesn't support the buffer interfaceNathan Goldbaum2023-03-301-3/+12
* | | | Merge pull request #23504 from seberg/decref-delCharles Harris2023-03-311-1/+0
|\ \ \ \ | |/ / / |/| | |
| * | | MAINT: Remove reference to PyArray_GetArrayParamsFromObjectCharles Harris2023-03-311-1/+0
| | |/ | |/|
* | | MAINT: use PyArray_ClearBuffer in PyArray_FillWithScalarNathan Goldbaum2023-03-291-1/+2
|/ /
* | BUG: Use output when given on numpy.dot C-API branch (#23459)Pedro Lameiras2023-03-281-4/+3
|/
* BUG: in the fastest path form ufunc.at, properly increment args[2]mattip2023-03-271-0/+3
* Merge pull request #21120 from BvB93/matmulMatti Picus2023-03-261-7/+65
|\
| * BUG: Remove self == res assert for inplace matmulSebastian Berg2022-12-021-3/+1
| * ENH: Replace AxisError with more spefic oneSebastian Berg2022-12-021-1/+21
| * ENH: Implement matmul using the nuclear optionsSebastian Berg2022-12-021-23/+40
| * MAINT: Move check and expand error message slightlySebastian Berg2022-12-021-3/+6
| * MAINT: Explicitly raise when `a @= b` would otherwise broadcast the outputBas van Beek2022-12-021-2/+23
| * DOC: Remove an outdated `matmul` commentBas van Beek2022-12-021-1/+0
| * ENH: Add support for inplace matrix multiplicationBas van Beek2022-12-021-6/+6
* | Merge pull request #23404 from ngoldbaum/dtype-class-array-creationSebastian Berg2023-03-235-71/+179
|\ \
| * | MAINT: Simplify reference counting in the np.array() internal codeSebastian Berg2023-03-201-54/+35
| * | MAINT: respond to review commentsNathan Goldbaum2023-03-202-17/+27
| * | MAINT: move npy_dtype_info definition back to descriptor.hNathan Goldbaum2023-03-208-18/+13
| * | MAINT: avoid calling PyArray_AdaptDescriptorToArray in some casesNathan Goldbaum2023-03-171-4/+26
| * | MAINT: Indicate private functions with _int suffix.Nathan Goldbaum2023-03-173-35/+44
| * | BUG: handle errors from PyArray_AdaptDescriptorToArrayNathan Goldbaum2023-03-171-0/+5
| * | ENH: allow using dtype classes in array creation functionsNathan Goldbaum2023-03-1713-70/+156
* | | Merge pull request #23240 from byrdie/bugfix/ufunc_where_propagationSebastian Berg2023-03-226-11/+33
|\ \ \
| * | | ENH: Modified `PyUFunc_CheckOverride` to allow the `where` argument to overri...Roy Smart2023-02-246-11/+33
* | | | BUG: Fix busday_count for reversed dates (#23229)Pieter Eendebak2023-03-201-0/+5
| |/ / |/| |
* | | Merge pull request #23380 from r-devulap/x86simdCharles Harris2023-03-131-0/+0
|\ \ \
| * | | update x86-simd-sort to latest commitRaghuveer Devulapalli2023-03-131-0/+0
* | | | 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