summaryrefslogtreecommitdiff
path: root/numpy/array_api
Commit message (Expand)AuthorAgeFilesLines
* BUG: `array_api.argsort(descending=True)` respects relative sort order (#20788)Matthew Barber2022-01-122-3/+37
* Merge pull request #20720 from rgommers/arrayapi-annotation-fixesMatti Picus2022-01-041-2/+3
|\
| * TYP: accept review comment on ignoring NotImplemented in type checkingRalf Gommers2022-01-041-4/+1
| * TYP: add a few type annotations to `numpy.array_api.Array`Ralf Gommers2022-01-031-1/+5
* | TYP: change type annotation for `__array_namespace__` to ModuleTypeRalf Gommers2022-01-031-1/+2
|/
* Merge pull request #20533 from asmeurer/array_api-prod-fixCharles Harris2021-12-071-2/+2
|\
| * BUG: Fix handling of the dtype parameter to numpy.array_api.prod()Aaron Meurer2021-12-071-2/+2
* | Add type hints to the numpy.array_api.Array.__array__ signatureAaron Meurer2021-12-061-1/+2
* | ENH: Add __array__ to the array_api Array objectAaron Meurer2021-12-062-0/+18
|/
* Add tests for T and mT in array_apiAaron Meurer2021-12-011-0/+14
* BUG: Fix the .T attribute in the array_api namespaceAaron Meurer2021-12-011-1/+1
* Merge pull request #19173 from czgdp1807/never_copyMatti Picus2021-11-152-8/+14
|\
| * Merge branch 'main' into never_copyRalf Gommers2021-11-128-44/+162
| |\
| * \ resolved conflictsGagandeep Singh2021-11-0210-51/+192
| |\ \
| * | | Addressed reviewsczgdp18072021-09-042-4/+4
| * | | fixed linting issuesczgdp18072021-09-031-2/+2
| * | | fixed linting issuesczgdp18072021-09-031-1/+2
| * | | CopyMode added to np.array_apiczgdp18072021-09-032-6/+11
* | | | ENH: Add the linalg extension to the array_api submodule (#19980)Aaron Meurer2021-11-145-79/+419
| |_|/ |/| |
* | | MAINT: A few updates to the array_api (#20066)Aaron Meurer2021-11-128-49/+156
* | | Merge pull request #19083 from hameerabbasi/dlpackSebastian Berg2021-11-092-3/+3
|\ \ \
| * | | change from_dlpack to _dlpack, remove unused headermattip2021-11-022-3/+3
| | |/ | |/|
* | | TST: Add a test for device property in `array_api` namespace (#20271)Amit Kumar2021-11-031-0/+11
|/ /
* | Merge pull request #20071 from alessiamarcolini/refactorCharles Harris2021-10-221-15/+0
|\ \
| * | MAINT: remove unused importsAlessia Marcolini2021-10-081-15/+0
* | | MAINT: Replace the `__array_namespace__` return type with `Any`Bas van Beek2021-10-181-2/+2
* | | ENH: Change `SupportsDLPack` into a protocolBas van Beek2021-10-181-1/+3
* | | ENH: Replace `NestedSequence` with a proper nested sequence protocolBas van Beek2021-10-181-5/+17
|/ /
* | Disallow `k=None` for the `eye` functionBas van Beek2021-09-291-1/+1
* | MAINT: Import `Array` from the `_array_object` namespaceBas van Beek2021-09-291-1/+1
* | MAINT: Remove the `Sequence` encapsulation from variadic argumentsBas van Beek2021-09-272-3/+3
* | MAINT: Add a missing subscription slot to `NestedSequence`Bas van Beek2021-09-271-2/+3
* | MAINT: Fix invalid parameter types used in `Dtype`Bas van Beek2021-09-271-6/+21
* | ENH: Updates to numpy.array_api (#19937)Aaron Meurer2021-09-258-21/+147
* | fix unhashable instance and potential exception identified by LGTMSista Seetaram2021-09-031-1/+1
* | fixed unhashable instance and potential exception as listed in LGTM#19077Sista Seetaram2021-09-031-1/+1
|/
* Remove an unused importAaron Meurer2021-08-231-2/+0
* Remove Python 3.7 checks from the array API codeAaron Meurer2021-08-231-5/+0
* Add smallest_normal to the array API finfoAaron Meurer2021-08-121-6/+2
* Fix the return annotation for numpy.array_api.Array.__setitem__Aaron Meurer2021-08-121-1/+1
* Run (selective) black on the array_api submoduleAaron Meurer2021-08-0618-390/+1054
* Update the docstring of numpy.array_apiAaron Meurer2021-08-061-38/+41
* Fix the array API nonzero() functionAaron Meurer2021-08-061-1/+1
* Make the axis argument to squeeze() in the array_api module positional-onlyAaron Meurer2021-08-061-1/+1
* Fix the array API unique() functionAaron Meurer2021-08-061-1/+5
* Fix the array API __len__ methodAaron Meurer2021-08-061-2/+1
* Fix some dictionary key mismatches in the array API testsAaron Meurer2021-08-061-27/+27
* Add a setup.py to the array_api submoduleAaron Meurer2021-08-051-0/+10
* Give a better error when numpy.array_api is imported in Python 3.7Aaron Meurer2021-08-051-0/+6
* Fix casting for the array API concat() and stack()Aaron Meurer2021-08-041-4/+5