File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -39,8 +39,7 @@ def apply_numpy_func( # type: ignore[no-any-explicit]
39
39
** kwargs : Any ,
40
40
) -> tuple [Array , ...]:
41
41
"""
42
- Apply a function that operates on NumPY arrays to any Array API compliant arrays,
43
- as long as you can apply ``np.asarray`` to them.
42
+ Apply a function that operates on NumPY arrays to Array API compliant arrays.
44
43
45
44
Parameters
46
45
----------
@@ -52,7 +51,9 @@ def apply_numpy_func( # type: ignore[no-any-explicit]
52
51
It must be a pure function, i.e. without side effects such as disk output,
53
52
as depending on the backend it may be executed more than once.
54
53
*args : Array
55
- One or more Array API compliant arrays.
54
+ One or more Array API compliant arrays. You need to be able to apply
55
+ ``np.asarray()`` to them to convert them to numpy; read notes below about
56
+ specific backends.
56
57
shapes : Sequence[tuple[int, ...]], optional
57
58
Sequence of output shapes, one for each output of `func`.
58
59
If `func` returns a single (non-sequence) output, this must be a sequence
You can’t perform that action at this time.
0 commit comments