summaryrefslogtreecommitdiff
path: root/numpy/_array_api
Commit message (Expand)AuthorAgeFilesLines
* Fix a typo in an error messageAaron Meurer2021-07-211-1/+1
* Implement the array API result_type() manuallyAaron Meurer2021-07-212-3/+84
* Add bool and int explicitly to the array API asarray() input type hintsAaron Meurer2021-07-211-1/+1
* Always include the dtype in the array API Array reprAaron Meurer2021-07-201-1/+1
* Start adding tests for the array API submoduleAaron Meurer2021-07-193-1/+69
* Change the type hint for stream __dlpack__ to just NoneAaron Meurer2021-07-161-2/+2
* Add type hints to the array API __setitem__Aaron Meurer2021-07-161-1/+1
* Remove an unnecessary indexingAaron Meurer2021-07-161-1/+1
* Use asarray to convert a scalar into an array in the array API Array constructorAaron Meurer2021-07-161-3/+1
* Move the dtype check to the array API Array._new constructorAaron Meurer2021-07-162-3/+3
* Guard against non-array API inputs in the array API result_type()Aaron Meurer2021-07-161-1/+10
* Make numpy._array_api.Array.device return "cpu"Aaron Meurer2021-07-151-7/+1
* Fix some spelling errorsAaron Meurer2021-07-151-5/+5
* Remove error ignoring in the array API namespaceAaron Meurer2021-07-152-46/+0
* Move _validate_index above the methods that are actually part of the specAaron Meurer2021-07-151-102/+102
* Add a comment about the _normalize_two_args trickAaron Meurer2021-07-151-0/+6
* Correct disallow things like a[(0, 1), (0, 1)] in the array API namespaceAaron Meurer2021-07-151-0/+2
* Use ndim == 0 instead of shape == () in the array API codeAaron Meurer2021-07-151-16/+16
* Make the array API left and right shift do type promotionAaron Meurer2021-07-092-28/+10
* Fix typoAaron Meurer2021-07-091-1/+1
* Fix the type hints for argmin/argmax in the array APIAaron Meurer2021-07-091-2/+2
* Fix some typing importsAaron Meurer2021-07-097-18/+10
* Use tuples for internal type lists in the array APIAaron Meurer2021-07-091-7/+7
* Update the type hints for the array API __pow__ and __truediv__Aaron Meurer2021-07-091-6/+10
* Only allow floating-point dtypes in the array API __pow__ and __truediv__Aaron Meurer2021-07-091-0/+12
* Rename numpy/_array_api/_types.py to numpy/_array_api/_typing.pyAaron Meurer2021-07-099-8/+8
* Small code cleanupAaron Meurer2021-07-091-1/+1
* Use better type signatures in the array API moduleAaron Meurer2021-07-094-12/+46
* Use better type definitions for the array API custom typesAaron Meurer2021-07-091-7/+10
* Remove typing exports from numpy/_array_api/_types.pyAaron Meurer2021-07-093-11/+7
* Update the docstring of numpy/_array_api/__init__.pyAaron Meurer2021-07-081-32/+37
* Rename the array class in the array API namespace from ndarray to ArrayAaron Meurer2021-07-0813-202/+192
* Capitalize the names of the type hint types in the array APIAaron Meurer2021-07-0812-178/+178
* Fix the __imatmul__ method in the array API namespaceAaron Meurer2021-07-081-2/+11
* Fix in-place operators to not recreate the wrapper classAaron Meurer2021-07-081-26/+24
* Update the linear algebra functions in the array API namespaceAaron Meurer2021-07-012-165/+31
* Update a function signature from the array API specAaron Meurer2021-06-142-5/+6
* Update signatures from the latest version of the array API specAaron Meurer2021-05-202-43/+43
* Ignore warnings in array API functions that can raise themAaron Meurer2021-05-172-1/+49
* Make the array API constants Python floatsAaron Meurer2021-05-101-7/+4
* Fix array API squeeze() and stack()Aaron Meurer2021-05-101-2/+2
* Fix the array API norm() functionAaron Meurer2021-05-101-1/+1
* Fix some error messagesAaron Meurer2021-04-301-2/+2
* Update signatures in the array API namespace from the latest version of the specAaron Meurer2021-04-283-13/+13
* Add meshgrid(), broadcast_arrays(), broadcast_to(), and can_cast() to the arr...Aaron Meurer2021-04-264-11/+50
* Fix type promotion consistency for the array API elementwise functions and op...Aaron Meurer2021-04-152-54/+152
* Use dtype objects instead of classes in the array APIAaron Meurer2021-04-151-2/+15
* Move function name change notes to before the def lineAaron Meurer2021-04-142-12/+12
* Fix ceil() and floor() in the array API to always return the same dtypeAaron Meurer2021-04-131-0/+6
* Fix int bounds checking in asarray() to only happen when dtype=NoneAaron Meurer2021-04-131-1/+1