Skip to content

Commit dd7182e

Browse files
committed
Replace real floating-point with real-valued floating-point per
array API spec
1 parent bff1afe commit dd7182e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dpnp/dpnp_iface_mathematical.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -800,10 +800,10 @@ def clip(a, /, min=None, max=None, *, out=None, order="K", **kwargs):
800800
Parameters
801801
----------
802802
x1 : {dpnp.ndarray, usm_ndarray, scalar}
803-
First input array, expected to have a real floating-point data type.
803+
First input array, expected to have a real-valued floating-point data type.
804804
Both inputs `x1` and `x2` can not be scalars at the same time.
805805
x2 : {dpnp.ndarray, usm_ndarray, scalar}
806-
Second input array, also expected to have a real floating-point data
806+
Second input array, also expected to have a real-valued floating-point data
807807
type.
808808
Both inputs `x1` and `x2` can not be scalars at the same time.
809809
If ``x1.shape != x2.shape``, they must be broadcastable to a common shape

dpnp/dpnp_iface_trigonometric.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,7 @@ def _get_accumulation_res_dt(a, dtype):
702702
Parameters
703703
----------
704704
x : {dpnp.ndarray, usm_ndarray}
705-
Input array, expected to have a real floating-point data type.
705+
Input array, expected to have a real-valued floating-point data type.
706706
out : {None, dpnp.ndarray, usm_ndarray}, optional
707707
Output array to populate.
708708
Array must have the correct shape and the expected data type.
@@ -2075,7 +2075,7 @@ def reduce_hypot(x, /, *, axis=None, dtype=None, keepdims=False, out=None):
20752075
Parameters
20762076
----------
20772077
x : {dpnp.ndarray, usm_ndarray}
2078-
Input array, expected to have a real floating-point data type.
2078+
Input array, expected to have a real-valued floating-point data type.
20792079
out : {None, dpnp.ndarray, usm_ndarray}, optional:
20802080
Output array to populate.
20812081
Array must have the correct shape and the expected data type.

0 commit comments

Comments
 (0)