@@ -36,8 +36,6 @@ deviations from the standard should be noted:
36
36
50] ( https://numpy.org/neps/nep-0050-scalar-promotion.html ) and
37
37
https://github.com/numpy/numpy/issues/22341 )
38
38
39
- - ` asarray() ` does not support ` copy=False ` .
40
-
41
39
- Functions which are not wrapped may not have the same type annotations
42
40
as the spec.
43
41
@@ -47,12 +45,9 @@ The minimum supported NumPy version is 1.22. However, this older version of
47
45
NumPy has a few issues:
48
46
49
47
- ` unique_* ` will not compare nans as unequal.
50
- - ` finfo() ` has no ` smallest_normal ` .
51
48
- No ` from_dlpack ` or ` __dlpack__ ` .
52
49
- ` argmax() ` and ` argmin() ` do not have ` keepdims ` .
53
50
- ` qr() ` doesn't support matrix stacks.
54
- - ` asarray() ` doesn't support ` copy=True ` (as noted above, ` copy=False ` is not
55
- supported even in the latest NumPy).
56
51
- Type promotion behavior will be value based for 0-D arrays (and there is no
57
52
` NPY_PROMOTION_STATE=weak ` to disable this).
58
53
@@ -72,8 +67,8 @@ version.
72
67
attribute in the spec. Use the {func}` ~.size() ` helper function as a
73
68
portable workaround.
74
69
75
- - PyTorch does not have unsigned integer types other than ` uint8 ` , and no
76
- attempt is made to implement them here.
70
+ - PyTorch does has incomplete support for unsigned integer types other
71
+ than ` uint8 ` , and no attempt is made to implement it here.
77
72
78
73
- PyTorch has type promotion semantics that differ from the array API
79
74
specification for 0-D tensor objects. The array functions in this wrapper
@@ -100,8 +95,6 @@ version.
100
95
- As with NumPy, type annotations and positional-only arguments may not
101
96
exactly match the spec for functions that are not wrapped at all.
102
97
103
- The minimum supported PyTorch version is 1.13.
104
-
105
98
(jax-support)=
106
99
## [ JAX] ( https://jax.readthedocs.io/en/latest/ )
107
100
@@ -131,8 +124,6 @@ For `linalg`, several methods are missing, for example:
131
124
- ` matrix_rank `
132
125
Other methods may only be partially implemented or return incorrect results at times.
133
126
134
- The minimum supported Dask version is 2023.12.0.
135
-
136
127
(sparse-support)=
137
128
## [ Sparse] ( https://sparse.pydata.org/en/stable/ )
138
129
0 commit comments