summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* | | | Merge pull request #23285 from Unessam/my-contribution3Sebastian Berg2023-02-273-0/+0
|\ \ \ \ | |/ / / |/| | |
| * | | DOC: Update dtype hierarchy and box-text alingnment png pdf dia #23252Younes2023-02-263-0/+0
|/ / /
* | | Merge pull request #23269 from tylerjereddy/treddy_ma_deepcopy_fixSebastian Berg2023-02-262-1/+58
|\ \ \
| * | | BUG: PR 23269 revisionsTyler Reddy2023-02-252-1/+9
| * | | MAINT: PR 23269 revisionsTyler Reddy2023-02-242-1/+4
| * | | MAINT: PR 23269 revisionsTyler Reddy2023-02-242-3/+16
| * | | BUG: masked array proper deepcopiesTyler Reddy2023-02-232-1/+34
* | | | Merge pull request #23278 from F3eQnxN3RriK/fix-docs-linksSebastian Berg2023-02-252-2/+2
|\ \ \ \
| * | | | DOC: Fix some links in the usage documentyuki2023-02-252-2/+2
* | | | | Merge pull request #23279 from seberg/issue-23277Charles Harris2023-02-253-2/+23
|\ \ \ \ \
| * | | | | BUG: Allow no-op clearing of void dtypesSebastian Berg2023-02-253-2/+23
| |/ / / /
* | | | | Merge pull request #23262 from ngoldbaum/public-array-clear-on-dtypeSebastian Berg2023-02-255-71/+117
|\ \ \ \ \
| * | | | | 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: remove out-of-date commentNathan Goldbaum2023-02-241-2/+1
| * | | | | 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-244-28/+52
| * | | | | MAINT: refactor custom dtype slot setupNathan Goldbaum2023-02-243-40/+59
| |/ / / /
* | | | | Merge pull request #23280 from seberg/init-argsort-bufferCharles Harris2023-02-252-19/+30
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | MAINT: Use strong references/copies for sorting bufferSebastian Berg2023-02-252-19/+30
|/ / / /
* | | | Merge pull request #23272 from F3eQnxN3RriK/fix-docs-noteSebastian Berg2023-02-241-3/+3
|\ \ \ \
| * | | | DOC: Fix code formattingyuki2023-02-241-1/+1
| * | | | DOC: Fix wrong section titleyuki2023-02-241-2/+2
|/ / / /
* | | | Merge pull request #23195 from seberg/public-rng-spawnCharles Harris2023-02-239-8/+213
|\ \ \ \ | |/ / / |/| | |
| * | | DOC: Try to add Generator spawning to parallel generation and link itSebastian Berg2023-02-143-10/+31
| * | | DOC: Refer to bitgenerator and rename bitgenSebastian Berg2023-02-141-3/+3
| * | | DOC: Improve docs around generator spawningSebastian Berg2023-02-144-17/+74
| * | | DOC: Add release note and versionadded tagsSebastian Berg2023-02-143-0/+26
| * | | API: Add `rng.spawn()`, `bit_gen.spawn()`, and `bit_gen.seed_seq`Sebastian Berg2023-02-145-0/+101
* | | | Merge pull request #23255 from seberg/malloc0Charles Harris2023-02-234-34/+74
|\ \ \ \
| * | | | MAINT: Only set memory error when we know it was one (and fix second occurance)Sebastian Berg2023-02-211-20/+32
| * | | | MAINT: Avoid malloc(0) in string (and generic) sortingSebastian Berg2023-02-212-0/+7
| * | | | BUG,MAINT: Avoid malloc(0) in linalg and improve error paths.Sebastian Berg2023-02-211-8/+28
| * | | | MAINT: Simplify temporary dimensions by using static arraySebastian Berg2023-02-211-4/+2
| * | | | MAINT: Ensure malloc(0) is not called in pocketfft.cSebastian Berg2023-02-211-6/+9
* | | | | Merge pull request #23153 from seiko2plus/removes_old_cpu_dispatcherCharles Harris2023-02-2222-732/+774
|\ \ \ \ \
| * | | | | 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
| * | | | | BENCH: Add new data generatorSayed Adel2023-02-201-0/+109
| * | | | | BENCH: cover auto-vectorized ufunc operationsSayed Adel2023-02-201-25/+72
| * | | | | ENH, SIMD: reduce binary size of loops_autovecSayed Adel2023-02-201-35/+74
| * | | | | BENCH: Clean up ufunc_stridesSayed Adel2023-02-201-139/+103
| * | | | | BLD, MESON: __builtin_prefetch is not limited to x86Sayed Adel2023-02-201-5/+1
| * | | | | 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-206-145/+199
| * | | | | 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-206-195/+182
| * | | | | MAINT, SIMD: Removes compiler definitions of attribute-based CPU dispatchingSayed Adel2023-02-207-220/+53