Skip to content

Commit 004ac9c

Browse files
committed
add see also section
1 parent acebaea commit 004ac9c

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

dpnp/dpnp_iface_mathematical.py

+10
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,9 @@ def around(x, /, decimals=0, out=None):
285285
See Also
286286
--------
287287
:obj:`dpnp.round` : equivalent function; see for details.
288+
:obj:`dpnp.ceil` : Compute the ceiling of the input, element-wise.
289+
:obj:`dpnp.floor` : Return the floor of the input, element-wise.
290+
:obj:`dpnp.trunc` : Return the truncated value of the input, element-wise.
288291
289292
Notes
290293
-----
@@ -1777,6 +1780,13 @@ def round(x, decimals=0, out=None):
17771780
Otherwise the function will be executed sequentially on CPU.
17781781
Input array data types are limited by supported DPNP :ref:`Data types`.
17791782
1783+
See Also
1784+
--------
1785+
:obj:`dpnp.around` : equivalent function; see for details.
1786+
:obj:`dpnp.ceil` : Compute the ceiling of the input, element-wise.
1787+
:obj:`dpnp.floor` : Return the floor of the input, element-wise.
1788+
:obj:`dpnp.trunc` : Return the truncated value of the input, element-wise.
1789+
17801790
Examples
17811791
--------
17821792
>>> import dpnp as np

0 commit comments

Comments
 (0)