Skip to content

Commit 45b705d

Browse files
authoredSep 19, 2024
feat: add diff to specification
PR-URL: #791 Closes: #784
1 parent 0cd4bdf commit 45b705d

File tree

2 files changed

+44
-1
lines changed

2 files changed

+44
-1
lines changed
 

‎spec/draft/API_specification/utility_functions.rst

+1
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,4 @@ Objects in API
2020

2121
all
2222
any
23+
diff

‎src/array_api_stubs/_draft/utility_functions.py

+43-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__all__ = ["all", "any"]
1+
__all__ = ["all", "any", "diff"]
22

33

44
from ._types import Optional, Tuple, Union, array
@@ -84,3 +84,45 @@ def any(
8484
.. versionchanged:: 2022.12
8585
Added complex data type support.
8686
"""
87+
88+
89+
def diff(
90+
x: array,
91+
/,
92+
*,
93+
axis: int = -1,
94+
n: int = 1,
95+
prepend: Optional[array] = None,
96+
append: Optional[array] = None,
97+
) -> array:
98+
"""
99+
Calculates the n-th discrete forward difference along a specified axis.
100+
101+
Parameters
102+
----------
103+
x: array
104+
input array. Should have a numeric data type.
105+
axis: int
106+
axis along which to compute differences. A valid ``axis`` must be an integer on the interval ``[-N, N)``, where ``N`` is the rank (number of dimensions) of ``x``. If an ``axis`` is specified as a negative integer, the function must determine the axis along which to compute differences by counting backward from the last dimension (where ``-1`` refers to the last dimension). If provided an invalid ``axis``, the function must raise an exception. Default: ``-1``.
107+
n: int
108+
number of times to recursively compute differences. Default: ``1``.
109+
prepend: Optional[array]
110+
values to prepend to a specified axis prior to computing differences. Must have the same shape as ``x``, except for the axis specified by ``axis`` which may have any size. Should have the same data type as ``x``. Default: ``None``.
111+
append: Optional[array]
112+
values to append to a specified axis prior to computing differences. Must have the same shape as ``x``, except for the axis specified by ``axis`` which may have any size. Should have the same data type as ``x``. Default: ``None``.
113+
114+
Returns
115+
-------
116+
out: array
117+
an array containing the n-th differences. Should have the same data type as ``x``. Must have the same shape as ``x``, except for the axis specified by ``axis`` which must have a size determined as follows:
118+
119+
- Let ``M`` be the number of elements along an axis specified by ``axis``.
120+
- Let ``N1`` be the number of prepended values along an axis specified by ``axis``.
121+
- Let ``N2`` be the number of appended values along an axis specified by ``axis``.
122+
- The final size of the axis specified by ``axis`` must be ``M + N1 + N2 - n``.
123+
124+
Notes
125+
-----
126+
127+
- The first-order differences are given by ``out[i] = x[i+1] - x[i]`` along a specified axis. Higher-order differences must be calculated recursively (e.g., by calling ``diff(out, axis=axis, n=n-1)``).
128+
"""

0 commit comments

Comments
 (0)