Skip to content

Commit 5cdcf75

Browse files
authored
docs: add note regarding unspecified behavior for 0d arrays in cumulative_sum
PR-URL: #851 Closes: #797
1 parent 05ec5e7 commit 5cdcf75

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/array_api_stubs/_draft/statistical_functions.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def cumulative_sum(
1818
Parameters
1919
----------
2020
x: array
21-
input array. Should have a numeric data type.
21+
input array. Should have one or more dimensions (axes). Should have a numeric data type.
2222
axis: Optional[int]
2323
axis along which a cumulative sum must be computed. If ``axis`` is negative, the function must determine the axis along which to compute a cumulative sum by counting from the last dimension.
2424
@@ -48,6 +48,8 @@ def cumulative_sum(
4848
Notes
4949
-----
5050
51+
- When ``x`` is a zero-dimensional array, behavior is unspecified and thus implementation-defined.
52+
5153
**Special Cases**
5254
5355
For both real-valued and complex floating-point operands, special cases must be handled as if the operation is implemented by successive application of :func:`~array_api.add`.

0 commit comments

Comments
 (0)