summaryrefslogtreecommitdiff
path: root/numpy/core/src/multiarray
Commit message (Expand)AuthorAgeFilesLines
...
| * | BUG: Allow legacy dtypes to cast to datetime againSebastian Berg2022-04-211-3/+0
* | | Merge pull request #21295 from seberg/include-cleanupMatti Picus2022-04-051-7/+5
|\ \ \
| * | | MAINT: Clean-up includes of auto-generated umath codeSebastian Berg2022-04-041-7/+5
* | | | Use `inline` keyword instead of NPY_INLINE for C++ sourcesserge-sans-paille2022-04-021-3/+3
|/ / /
* | | Merge pull request #21231 from seberg/array-prioMatti Picus2022-03-241-1/+7
|\ \ \
| * | | BUG: Catch error if array-priority is not float compatibleSebastian Berg2022-03-221-1/+7
* | | | Merge pull request #21178 from seberg/can-cast-maintMatti Picus2022-03-225-165/+131
|\ \ \ \ | |/ / / |/| | |
| * | | MAINT: Move can-cast table to a custom header fileSebastian Berg2022-03-105-165/+131
* | | | Merge pull request #21130 from zephyr111/faster-whereCharles Harris2022-03-131-5/+25
|\ \ \ \
| * | | | DOC: Update numpy/core/src/multiarray/item_selection.cCharles Harris2022-03-131-0/+1
| * | | | Update numpy/core/src/multiarray/item_selection.cMatti Picus2022-03-131-1/+1
| * | | | ENH: even faster numpy.where using loop unrolling (better ILP)Ubuntu2022-03-051-0/+13
| * | | | ENH: improve the speed of numpy.where using a branchless codeJérôme Richard2022-02-271-5/+11
| |/ / /
* | | | Merge pull request #16810 from seberg/simplify-scalar-valueMatti Picus2022-03-101-77/+4
|\ \ \ \
| * | | | MAINT: Remove subclass paths from scalar_valueSebastian Berg2020-11-121-77/+4
* | | | | Merge pull request #21145 from tirthasheshpatel/fix-gh20743Matti Picus2022-03-102-2/+2
|\ \ \ \ \
| * | | | | MAINT: make np._from_dlpack publicTirth Patel2022-03-032-2/+2
* | | | | | BUG: assign all tuple items before using it for PyPymattip2022-03-031-7/+9
|/ / / / /
* | | | | BUG,ENH: np._from_dlpack: export arrays with any-strided size-1 dimensionsTirth Patel2022-03-021-1/+1
* | | | | MAINT,TST: np._from_dlpack: add more test + small memory optimization (#21121)Tirth Patel2022-03-011-12/+11
| |/ / / |/| | |
* | | | BUG, ENH: np._from_dlpack: export correct device informationTirth Patel2022-02-251-0/+6
* | | | API: Fix `np.result_type(structured_dtype)` to "canonicalize" (#19346)Sebastian Berg2022-02-223-12/+118
* | | | MAINT: Fix incorrect signature in readtext header file (#21109)Sebastian Berg2022-02-221-1/+2
* | | | Merge pull request #19345 from seberg/ensure-canonicalMatti Picus2022-02-207-38/+42
|\ \ \ \
| * | | | ENH: Move `ensure_dtype_nbo` onto the DType as `ensure_canonical`Sebastian Berg2022-02-187-38/+42
* | | | | BUG: Replace ``ssize_t`` with ``size_t`` in tokenize.cpp (#21074)Bas van Beek2022-02-161-2/+2
* | | | | BUG: Ensure equality/identity comparison with `__array_function__` (#21071)Peter Andreas Entschev2022-02-161-2/+12
* | | | | BUG: Fix unpickling an empty ndarray with a none-zero dimension (#21067)Alexandre de Siqueira2022-02-161-1/+1
* | | | | Merge pull request #21054 from seberg/fixup-no-delimiterMatti Picus2022-02-141-5/+14
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | BUG: (loadtxt) Ignore last empty field when `delimiter=None`Sebastian Berg2022-02-141-5/+14
* | | | | Merge pull request #21029 from hawkinsp/nontuple_indexSebastian Berg2022-02-141-120/+10
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | DEP: Remove support for non-tuple nd-indices.Peter Hawkins2022-02-141-120/+10
* | | | | Merge pull request #21025 from seberg/tokenizer-cppMatti Picus2022-02-145-41/+60
|\ \ \ \ \
| * | | | | MAINT: Use C++ for tokenizer unicode-kind templatingSebastian Berg2022-02-115-41/+60
| |/ / / /
* | | | | add npyv_cleanup()Sayed Adel2022-02-131-0/+2
* | | | | ENH, SIMD: improve argmax/argmin performanceSayed Adel2022-02-133-87/+453
* | | | | DOC: Fix striding related comments based on reviewSebastian Berg2022-02-121-1/+1
* | | | | MAINT: Remove the RELAXED_STRIDES_CHECKING env variableSebastian Berg2022-02-115-72/+16
|/ / / /
* | | | Merge pull request #20580 from seberg/add-npreadtextMatti Picus2022-02-0821-0/+2746
|\ \ \ \ | |_|_|/ |/| | |
| * | | TST: Some tests for control character collisions.Ross Barnowski2022-01-281-2/+2
| * | | TST: Skip unparsable field error tests on PyPySebastian Berg2022-01-191-0/+5
| * | | ENH: Give a clear error when control characters match/are newlinesSebastian Berg2022-01-191-0/+84
| * | | TST,BUG: Fortify byteswapping tests and make a small fixSebastian Berg2022-01-152-14/+18
| * | | DOC: Remove outdated loadtxt TODOs from codeSebastian Berg2022-01-141-6/+3
| * | | MAINT: Only allocate converters if necessarySebastian Berg2022-01-141-9/+10
| * | | MAINT: Very minor style cleanups (mostly)Sebastian Berg2022-01-143-18/+21
| * | | MAINT: Use skiplines rather than skiprows internally throughoutSebastian Berg2022-01-141-5/+5
| * | | MAINT: Remove unused/unnecessary allow-embedded-newlines optionSebastian Berg2022-01-143-25/+1
| * | | TST: Improve test coverage, replace impossible error with assertSebastian Berg2022-01-141-8/+3
| * | | TST,MAINT: New tests, byteswap cleanups and fixed assertSebastian Berg2022-01-143-20/+37