summaryrefslogtreecommitdiff
path: root/numpy/core/src/multiarray/compiled_base.c
Commit message (Expand)AuthorAgeFilesLines
* ENH: Convert methods to vectorcall conversions (#23018)Pieter Eendebak2023-01-231-18/+42
* MAINT: replace `NPY_INLINE` with `inline`Ralf Gommers2022-11-251-2/+2
* ENH,MAINT: Add overflow handling for negative integers scalar multiplication ...Meekail Zain2022-07-171-3/+3
* MAINT: Remove compatibility shims for old versions of PyPySebastian Berg2022-05-261-4/+0
* MAINT: Remove Python <3.8 support from CSebastian Berg2021-11-071-1/+1
* DOC: Ensure that we add documentation also as to the dict for types (#18775)Sebastian Berg2021-10-051-1/+18
* STY: Small cleanups of includes in *.c files.Charles Harris2021-09-031-3/+3
* MAIN: Minor include rationalization.Charles Harris2021-09-031-2/+5
* MAINT: Make keyword arrays staticAlex Henrie2021-01-131-2/+2
* MAINT: CPUs that support unaligned access. (#18065)Chunlin2021-01-051-1/+1
* add benchmark test case for little order.Qiyu82020-12-161-1/+2
* add strong alignment definition.which can be used in other areas.Qiyu82020-12-161-6/+1
* add ARMV7 macro define header in order to prevent bus error.Qiyu82020-12-151-1/+6
* get rid of memcpy.Qiyu82020-12-141-5/+21
* remove useless intrinsics and forced SIMD.Qiyu82020-12-111-1/+1
* Force AVX2 in order to test the performance by using new intrinsics.Qiyu82020-12-111-20/+39
* Merge branch 'master' of github.com:numpy/numpy into usimd-compiledQiyu82020-12-111-36/+1
|\
| * DEP: Finalize unravel_index `dims` alias for `shape` keywordSebastian Berg2020-12-021-35/+0
| * STY: fix C coding stylemattip2020-11-291-1/+1
| * BLD: adapt to pypy37mattip2020-11-281-1/+1
* | fix typoQiyu82020-09-171-1/+1
* | abandon dispatch way because packbits is not ufuncQiyu82020-09-141-6/+83
* | add comaQiyu82020-09-101-1/+1
* | Merge branch 'master' of github.com:numpy/numpy into usimd-compiledQiyu82020-09-101-1/+1
|\ \ | |/
| * MAINT: Replace PyInt macros with their PyLong replacementEric Wieser2020-08-241-1/+1
* | add blank line between include and commentQiyu82020-09-101-0/+1
* | adjust the headerQiyu82020-08-251-2/+15
* | add AVX512/VSX support and small optimizeQiyu82020-08-211-1/+1
* | use usimd to reconstruct PackInnerQiyu82020-08-111-144/+6
|/
* SIMD: Optimize the performace of np.packbits in ARM-based machine. (#16482)Chunlin2020-07-031-0/+40
* BUG: Fix refcounting in add_newdocSebastian Berg2020-05-211-1/+2
* MAINT: Simplify logic in add_docstringSebastian Berg2020-05-201-52/+17
* BUG: Allow attaching documentation twice in add_docstringSebastian Berg2020-05-191-3/+8
* BUG: Add some missing C error handlingEric Wieser2020-01-151-2/+6
* BUG: Use PyDict_GetItemWithError() instead of PyDict_GetItem()Eric Wieser2020-01-141-5/+20
* MAINT: Cleanup most PY3K #ifdef guardsSeth Troisi2020-01-071-8/+0
* MAINT: Improve const-correctness of shapes and stridesEric Wieser2020-01-061-1/+1
* MAINT: Remove Python2 specific C module setup (gh-15231)Seth Troisi2020-01-031-2/+2
* Update numpy/core/src/multiarray/compiled_base.cSebastian Berg2019-09-231-1/+1
* BUG: Add missing check for 0-sized array in ravel_multi_indexSebastian Berg2019-09-221-0/+14
* work-around for compiler erroneously incrementing the iterator one extra time...Oleksandr Pavlyk2019-08-021-4/+13
* MAINT: only use one lookuptableJulian Taylor2019-05-141-12/+32
* MAINT: convert lookup table generation to byte wise loopJulian Taylor2019-05-121-30/+13
* ENH: restore unpack bit lookup tableJulian Taylor2019-05-121-19/+77
* ENH: changes from reviewmattip2019-05-111-124/+64
* BUG: fix for big-endian systemsmattip2019-05-111-3/+12
* BUG: parametrize tests, fix for interaction of count, ordermattip2019-05-111-32/+41
* ENH: add 'order' keyword to packbits, unpackbitsmattip2019-05-111-22/+76
* BUG: fix unravel_index when dimension is greater than 'intp'psschand2019-05-011-1/+7
* MANT: refactor unravel_index for code repetition (#13446)Matti Picus2019-05-011-104/+53