@@ -133,8 +133,8 @@ def _append_to_diff_array(a, axis, combined, values):
133
133
134
134
Scalar value (including case with 0d array) is expanded to an array
135
135
with length=1 in the direction of axis and the shape of the input array `a`
136
- in along all other axes.
137
- Note, if `values` is a scalar. then it is converted to 0d array allocating
136
+ along all other axes.
137
+ Note, if `values` is a scalar, then it is converted to 0d array allocating
138
138
on the same SYCL queue as the input array `a` and with the same USM type.
139
139
140
140
"""
@@ -1132,7 +1132,9 @@ def fmax(x1, x2, /, out=None, *, where=True, dtype=None, subok=True, **kwargs):
1132
1132
See Also
1133
1133
--------
1134
1134
:obj:`dpnp.maximum` : Element-wise maximum of array elements, propagates NaNs.
1135
- :obj:`dpnp.fmin` : Element-wise minimum of array elements, ignore NaNs.
1135
+ :obj:`dpnp.fmin` : Element-wise minimum of array elements, ignores NaNs.
1136
+ :obj:`dpnp.max` : The maximum value of an array along a given axis, propagates NaNs..
1137
+ :obj:`dpnp.nanmax` : The maximum value of an array along a given axis, ignores NaNs.
1136
1138
:obj:`dpnp.minimum` : Element-wise minimum of array elements, propagates NaNs.
1137
1139
:obj:`dpnp.fmod` : Calculate the element-wise remainder of division.
1138
1140
@@ -1237,7 +1239,9 @@ def fmin(x1, x2, /, out=None, *, where=True, dtype=None, subok=True, **kwargs):
1237
1239
See Also
1238
1240
--------
1239
1241
:obj:`dpnp.minimum` : Element-wise minimum of array elements, propagates NaNs.
1240
- :obj:`dpnp.fmax` : Element-wise maximum of array elements, ignore NaNs.
1242
+ :obj:`dpnp.fmax` : Element-wise maximum of array elements, ignores NaNs.
1243
+ :obj:`dpnp.min` : The minimum value of an array along a given axis, propagates NaNs.
1244
+ :obj:`dpnp.nanmin` : The minimum value of an array along a given axis, ignores NaNs.
1241
1245
:obj:`dpnp.maximum` : Element-wise maximum of array elements, propagates NaNs.
1242
1246
:obj:`dpnp.fmod` : Calculate the element-wise remainder of division.
1243
1247
0 commit comments