summaryrefslogtreecommitdiff
path: root/numpy/_array_api
Commit message (Expand)AuthorAgeFilesLines
* Return ndarray in the array_api namespace elementwise functionsAaron Meurer2021-02-261-56/+57
* Support array_api.ndarray in array_api.asarray()Aaron Meurer2021-02-231-0/+2
* Only allow supported dtypes in the array_api namespace asarray()Aaron Meurer2021-02-232-1/+9
* Implement a simple passthrough __str__ and __repr__ on the array_api ndarray ...Aaron Meurer2021-02-231-0/+17
* Fix the copy keyword argument in the array_api namespace asarray()Aaron Meurer2021-02-231-1/+4
* Add some missing names in the array_api namespace __all__Aaron Meurer2021-02-231-4/+8
* Start implementing wrapper object for the array APIAaron Meurer2021-02-231-0/+479
* Update array_api namespace with latest changes from the specAaron Meurer2021-02-235-4/+62
* Add some more notes to the array API module docstringAaron Meurer2021-01-201-0/+14
* Use _implementation on all functions that have it in the array API submoduleAaron Meurer2021-01-209-32/+32
* Use np.asarray in the array API submodule for any function that can return a ...Aaron Meurer2021-01-204-10/+12
* Fix some incorrect type annotations in the array API submoduleAaron Meurer2021-01-202-2/+2
* Add type annotations to the array api submodule function definitionsAaron Meurer2021-01-2010-97/+151
* Add an explanatory docstring to _array_api/__init__.pyAaron Meurer2021-01-131-0/+66
* Add basic docstrings to the array API wrapper functionsAaron Meurer2021-01-128-1/+521
* Fix array API functions that need to use np.linalgAaron Meurer2021-01-121-3/+3
* Use "import numpy as np" in the array_api submoduleAaron Meurer2021-01-129-226/+131
* Fix the array_api submodule __init__.py importsAaron Meurer2021-01-121-12/+12
* Add missing returns to the array API sorting functionsAaron Meurer2021-01-121-0/+2
* Make the array_api submodules private, and remove __all__ from individual filesAaron Meurer2021-01-1212-25/+1
* Add the device keyword to the array creation functionsAaron Meurer2021-01-121-11/+44
* Correct some differing keyword arguments in the array API namespaceAaron Meurer2021-01-112-4/+16
* Fix different behavior of norm() with axis=None in the array API namespaceAaron Meurer2021-01-111-0/+3
* Fix different names for some bitwise functions in the array apisAaron Meurer2021-01-111-6/+9
* Fix the bool name in the array API namespaceAaron Meurer2021-01-111-1/+3
* Fix array API functions that are named differently or not in the default nump...Aaron Meurer2021-01-113-21/+33
* Add dtypes to the _array_api namespaceAaron Meurer2021-01-112-0/+7
* Add initial array_api sub-namespaceAaron Meurer2021-01-1111-0/+503