@@ -95,8 +95,8 @@ def all(x, /, axis=None, out=None, keepdims=False, *, where=True):
95
95
Returns
96
96
-------
97
97
dpnp.ndarray
98
- An array with a data type of `bool`
99
- containing the results of the logical AND reduction.
98
+ An array with a data type of `bool`
99
+ containing the results of the logical AND reduction.
100
100
101
101
Limitations
102
102
-----------
@@ -160,8 +160,8 @@ def allclose(x1, x2, rtol=1.0e-5, atol=1.0e-8, **kwargs):
160
160
161
161
Limitations
162
162
-----------
163
- Parameters `` x1`` and `` x2`` are supported as either :obj :`dpnp.ndarray` or scalar.
164
- Keyword arguments `` kwargs`` are currently unsupported.
163
+ Parameters `x1` and `x2` are supported as either :class :`dpnp.ndarray` or scalar.
164
+ Keyword argument ` kwargs` is currently unsupported.
165
165
Otherwise the functions will be executed sequentially on CPU.
166
166
Input array data types are limited by supported DPNP :ref:`Data types`.
167
167
@@ -276,7 +276,7 @@ def equal(
276
276
Returns
277
277
-------
278
278
out : dpnp.ndarray
279
- Output array of bool type, element-wise comparison of `x1` and `x2`.
279
+ Output array of bool type, element-wise comparison of `x1` and `x2`.
280
280
281
281
Limitations
282
282
-----------
@@ -352,7 +352,7 @@ def greater(
352
352
Returns
353
353
-------
354
354
out : dpnp.ndarray
355
- Output array of bool type, element-wise comparison of `x1` and `x2`.
355
+ Output array of bool type, element-wise comparison of `x1` and `x2`.
356
356
357
357
Limitations
358
358
-----------
@@ -422,7 +422,7 @@ def greater_equal(
422
422
Returns
423
423
-------
424
424
out : dpnp.ndarray
425
- Output array of bool type, element-wise comparison of `x1` and `x2`.
425
+ Output array of bool type, element-wise comparison of `x1` and `x2`.
426
426
427
427
Limitations
428
428
-----------
@@ -480,8 +480,8 @@ def isclose(x1, x2, rtol=1e-05, atol=1e-08, equal_nan=False):
480
480
481
481
Limitations
482
482
-----------
483
- `` x2`` is supported to be integer if `` x1`` is :obj :`dpnp.ndarray` or
484
- at least either `` x1`` or `` x2`` should be as :obj :`dpnp.ndarray`.
483
+ `x2` is supported to be integer if `x1` is :class :`dpnp.ndarray` or
484
+ at least either `x1` or `x2` should be as :class :`dpnp.ndarray`.
485
485
Otherwise the function will be executed sequentially on CPU.
486
486
Input array data types are limited by supported DPNP :ref:`Data types`.
487
487
@@ -678,7 +678,7 @@ def less(
678
678
Returns
679
679
-------
680
680
out : dpnp.ndarray
681
- Output array of bool type, element-wise comparison of `x1` and `x2`.
681
+ Output array of bool type, element-wise comparison of `x1` and `x2`.
682
682
683
683
Limitations
684
684
-----------
@@ -748,7 +748,7 @@ def less_equal(
748
748
Returns
749
749
-------
750
750
out : dpnp.ndarray
751
- Output array of bool type, element-wise comparison of `x1` and `x2`.
751
+ Output array of bool type, element-wise comparison of `x1` and `x2`.
752
752
753
753
Limitations
754
754
-----------
@@ -818,8 +818,8 @@ def logical_and(
818
818
Returns
819
819
-------
820
820
out : dpnp.ndarray
821
- Boolean result of the logical AND operation applied to the elements
822
- of `x1` and `x2`; the shape is determined by broadcasting.
821
+ Boolean result of the logical AND operation applied to the elements
822
+ of `x1` and `x2`; the shape is determined by broadcasting.
823
823
824
824
Limitations
825
825
-----------
@@ -891,8 +891,8 @@ def logical_not(
891
891
Returns
892
892
-------
893
893
out : dpnp.ndarray
894
- Boolean result with the same shape as `x` of the NOT operation
895
- on elements of `x`.
894
+ Boolean result with the same shape as `x` of the NOT operation
895
+ on elements of `x`.
896
896
897
897
Limitations
898
898
-----------
@@ -953,8 +953,8 @@ def logical_or(
953
953
Returns
954
954
-------
955
955
out : dpnp.ndarray
956
- Boolean result of the logical OR operation applied to the elements
957
- of `x1` and `x2`; the shape is determined by broadcasting.
956
+ Boolean result of the logical OR operation applied to the elements
957
+ of `x1` and `x2`; the shape is determined by broadcasting.
958
958
959
959
Limitations
960
960
-----------
@@ -1027,8 +1027,8 @@ def logical_xor(
1027
1027
Returns
1028
1028
-------
1029
1029
out : dpnp.ndarray
1030
- Boolean result of the logical XOR operation applied to the elements
1031
- of `x1` and `x2`; the shape is determined by broadcasting.
1030
+ Boolean result of the logical XOR operation applied to the elements
1031
+ of `x1` and `x2`; the shape is determined by broadcasting.
1032
1032
1033
1033
Limitations
1034
1034
-----------
0 commit comments