@@ -372,7 +372,7 @@ def _process_ediff1d_args(arg, arg_name, ary_dtype, ary_sycl_queue, usm_type):
372372out : dpnp.ndarray
373373 An array containing the element-wise absolute values.
374374 For complex input, the absolute value is its magnitude.
375- If `x` has a real-valued data type, the returned array has the
375+ If `x` has a real-valued floating-point data type, the returned array has the
376376 same data type as `x`. If `x` has a complex floating-point data type,
377377 the returned array has a real-valued floating-point data type whose
378378 precision matches the precision of `x`.
@@ -611,7 +611,7 @@ def around(x, /, decimals=0, out=None):
611611Parameters
612612----------
613613x : {dpnp.ndarray, usm_ndarray}
614- Input array, expected to have a real-valued data type.
614+ Input array, expected to have a real-valued floating-point data type.
615615out : {None, dpnp.ndarray, usm_ndarray}, optional
616616 Output array to populate.
617617 Array must have the correct shape and the expected data type.
@@ -1719,7 +1719,7 @@ def ediff1d(ary, to_end=None, to_begin=None):
17191719Parameters
17201720----------
17211721x : {dpnp.ndarray, usm_ndarray}
1722- Input array, expected to have a real-valued data type.
1722+ Input array, expected to have a real-valued floating-point data type.
17231723out : {None, dpnp.ndarray, usm_ndarray}, optional
17241724 Output array to populate.
17251725 Array must have the correct shape and the expected data type.
@@ -1880,7 +1880,7 @@ def ediff1d(ary, to_end=None, to_begin=None):
18801880Parameters
18811881----------
18821882x : {dpnp.ndarray, usm_ndarray}
1883- Input array, expected to have a real-valued data type.
1883+ Input array, expected to have a real-valued floating-point data type.
18841884out : {None, dpnp.ndarray, usm_ndarray}, optional
18851885 Output array to populate.
18861886 Array must have the correct shape and the expected data type.
@@ -2197,10 +2197,10 @@ def ediff1d(ary, to_end=None, to_begin=None):
21972197Parameters
21982198----------
21992199x1 : {dpnp.ndarray, usm_ndarray, scalar}
2200- First input array, expected to have a real-valued data type.
2200+ First input array, expected to have a real-valued floating-point data type.
22012201 Both inputs `x1` and `x2` can not be scalars at the same time.
22022202x2 : {dpnp.ndarray, usm_ndarray, scalar}
2203- Second input array, also expected to have a real-valued data type.
2203+ Second input array, also expected to have a real-valued floating-point data type.
22042204 Both inputs `x1` and `x2` can not be scalars at the same time.
22052205 If ``x1.shape != x2.shape``, they must be broadcastable to a common shape
22062206 (which becomes the shape of the output).
@@ -2654,7 +2654,7 @@ def gradient(f, *varargs, axis=None, edge_order=1):
26542654-------
26552655out : dpnp.ndarray
26562656 An array containing the element-wise imaginary component of input.
2657- If the input is a real-valued data type, the returned array has
2657+ If the input is a real-valued floating-point data type, the returned array has
26582658 the same data type. If the input is a complex floating-point
26592659 data type, the returned array has a floating-point data type
26602660 with the same floating-point precision as complex input.
@@ -3693,7 +3693,7 @@ def prod(
36933693-------
36943694out : dpnp.ndarray
36953695 An array containing the element-wise real component of input.
3696- If the input is a real-valued data type, the returned array has
3696+ If the input is a real-valued floating-point data type, the returned array has
36973697 the same data type. If the input is a complex floating-point
36983698 data type, the returned array has a floating-point data type
36993699 with the same floating-point precision as complex input.
@@ -3804,10 +3804,10 @@ def real_if_close(a, tol=100):
38043804Parameters
38053805----------
38063806x1 : {dpnp.ndarray, usm_ndarray, scalar}
3807- First input array, expected to have a real-valued data type.
3807+ First input array, expected to have a real-valued floating-point data type.
38083808 Both inputs `x1` and `x2` can not be scalars at the same time.
38093809x2 : {dpnp.ndarray, usm_ndarray, scalar}
3810- Second input array, also expected to have a real-valued data type.
3810+ Second input array, also expected to have a real-valued floating-point data type.
38113811 Both inputs `x1` and `x2` can not be scalars at the same time.
38123812 If ``x1.shape != x2.shape``, they must be broadcastable to a common shape
38133813 (which becomes the shape of the output).
@@ -4553,7 +4553,7 @@ def trapezoid(y, x=None, dx=1.0, axis=-1):
45534553Parameters
45544554----------
45554555x : {dpnp.ndarray, usm_ndarray}
4556- Input array, expected to have a real-valued data type.
4556+ Input array, expected to have a real-valued floating-point data type.
45574557out : {None, dpnp.ndarray, usm_ndarray}, optional
45584558 Output array to populate.
45594559 Array must have the correct shape and the expected data type.
0 commit comments