@@ -253,8 +253,8 @@ def equal(x1,
253
253
254
254
Limitations
255
255
-----------
256
- Parameters `x1` and `x2` are supported as either :class:`dpnp.ndarray` or scalar,
257
- but not both (at least either `x1` or `x2` should be as :class:`dpnp.ndarray`) .
256
+ Parameters `x1` and `x2` are supported as either scalar, :class:`dpnp.ndarray`
257
+ or :class:`dpctl.tensor.usm_ndarray`, but both `x1` and `x2` can not be scalars at the same time .
258
258
Parameters `out`, `where`, `dtype` and `subok` are supported with their default values.
259
259
Otherwise the function will be executed sequentially on CPU.
260
260
Input array data types are limited by supported DPNP :ref:`Data types`,
@@ -323,8 +323,8 @@ def greater(x1,
323
323
324
324
Limitations
325
325
-----------
326
- Parameters `x1` and `x2` are supported as either :class:`dpnp.ndarray` or scalar,
327
- but not both (at least either `x1` or `x2` should be as :class:`dpnp.ndarray`) .
326
+ Parameters `x1` and `x2` are supported as either scalar, :class:`dpnp.ndarray`
327
+ or :class:`dpctl.tensor.usm_ndarray`, but both `x1` and `x2` can not be scalars at the same time .
328
328
Parameters `out`, `where`, `dtype` and `subok` are supported with their default values.
329
329
Otherwise the function will be executed sequentially on CPU.
330
330
Input array data types are limited by supported DPNP :ref:`Data types`,
@@ -393,8 +393,8 @@ def greater_equal(x1,
393
393
394
394
Limitations
395
395
-----------
396
- Parameters `x1` and `x2` are supported as either :class:`dpnp.ndarray` or scalar,
397
- but not both (at least either `x1` or `x2` should be as :class:`dpnp.ndarray`) .
396
+ Parameters `x1` and `x2` are supported as either scalar, :class:`dpnp.ndarray`
397
+ or :class:`dpctl.tensor.usm_ndarray`, but both `x1` and `x2` can not be scalars at the same time .
398
398
Parameters `out`, `where`, `dtype` and `subok` are supported with their default values.
399
399
Otherwise the function will be executed sequentially on CPU.
400
400
Input array data types are limited by supported DPNP :ref:`Data types`,
@@ -638,8 +638,8 @@ def less(x1,
638
638
639
639
Limitations
640
640
-----------
641
- Parameters `x1` and `x2` are supported as either :class:`dpnp.ndarray` or scalar,
642
- but not both (at least either `x1` or `x2` should be as :class:`dpnp.ndarray`) .
641
+ Parameters `x1` and `x2` are supported as either scalar, :class:`dpnp.ndarray`
642
+ or :class:`dpctl.tensor.usm_ndarray`, but both `x1` and `x2` can not be scalars at the same time .
643
643
Parameters `out`, `where`, `dtype` and `subok` are supported with their default values.
644
644
Otherwise the function will be executed sequentially on CPU.
645
645
Input array data types are limited by supported DPNP :ref:`Data types`,
@@ -708,8 +708,8 @@ def less_equal(x1,
708
708
709
709
Limitations
710
710
-----------
711
- Parameters `x1` and `x2` are supported as either :class:`dpnp.ndarray` or scalar,
712
- but not both (at least either `x1` or `x2` should be as :class:`dpnp.ndarray`) .
711
+ Parameters `x1` and `x2` are supported as either scalar, :class:`dpnp.ndarray`
712
+ or :class:`dpctl.tensor.usm_ndarray`, but both `x1` and `x2` can not be scalars at the same time .
713
713
Parameters `out`, `where`, `dtype` and `subok` are supported with their default values.
714
714
Otherwise the function will be executed sequentially on CPU.
715
715
Input array data types are limited by supported DPNP :ref:`Data types`,
@@ -778,8 +778,8 @@ def logical_and(x1,
778
778
779
779
Limitations
780
780
-----------
781
- Parameters `x1` and `x2` are supported as either :class:`dpnp.ndarray` or scalar,
782
- but not both (at least either `x1` or `x2` should be as :class:`dpnp.ndarray`) .
781
+ Parameters `x1` and `x2` are supported as either scalar, :class:`dpnp.ndarray`
782
+ or :class:`dpctl.tensor.usm_ndarray`, but both `x1` and `x2` can not be scalars at the same time .
783
783
Parameters `out`, `where`, `dtype` and `subok` are supported with their default values.
784
784
Otherwise the function will be executed sequentially on CPU.
785
785
Input array data types are limited by supported DPNP :ref:`Data types`,
@@ -847,7 +847,7 @@ def logical_not(x,
847
847
848
848
Limitations
849
849
-----------
850
- Parameters `x` is only supported as :class:`dpnp.ndarray`.
850
+ Parameters `x` is only supported as either :class:`dpnp.ndarray` or :class:`dpctl.tensor.usm_ndarray `.
851
851
Parameters `out`, `where`, `dtype` and `subok` are supported with their default values.
852
852
Otherwise the function will be executed sequentially on CPU.
853
853
Input array data type is limited by supported DPNP :ref:`Data types`,
@@ -904,8 +904,8 @@ def logical_or(x1,
904
904
905
905
Limitations
906
906
-----------
907
- Parameters `x1` and `x2` are supported as either :class:`dpnp.ndarray` or scalar,
908
- but not both (at least either `x1` or `x2` should be as :class:`dpnp.ndarray`) .
907
+ Parameters `x1` and `x2` are supported as either scalar, :class:`dpnp.ndarray`
908
+ or :class:`dpctl.tensor.usm_ndarray`, but both `x1` and `x2` can not be scalars at the same time .
909
909
Parameters `out`, `where`, `dtype` and `subok` are supported with their default values.
910
910
Otherwise the function will be executed sequentially on CPU.
911
911
Input array data types are limited by supported DPNP :ref:`Data types`,
@@ -973,8 +973,8 @@ def logical_xor(x1,
973
973
974
974
Limitations
975
975
-----------
976
- Parameters `x1` and `x2` are supported as either :class:`dpnp.ndarray` or scalar,
977
- but not both (at least either `x1` or `x2` should be as :class:`dpnp.ndarray`) .
976
+ Parameters `x1` and `x2` are supported as either scalar, :class:`dpnp.ndarray`
977
+ or :class:`dpctl.tensor.usm_ndarray`, but both `x1` and `x2` can not be scalars at the same time .
978
978
Parameters `out`, `where`, `dtype` and `subok` are supported with their default values.
979
979
Otherwise the function will be executed sequentially on CPU.
980
980
Input array data types are limited by supported DPNP :ref:`Data types`,
@@ -1042,8 +1042,8 @@ def not_equal(x1,
1042
1042
1043
1043
Limitations
1044
1044
-----------
1045
- Parameters `x1` and `x2` are supported as either :class:`dpnp.ndarray` or scalar,
1046
- but not both (at least either `x1` or `x2` should be as :class:`dpnp.ndarray`) .
1045
+ Parameters `x1` and `x2` are supported as either scalar, :class:`dpnp.ndarray`
1046
+ or :class:`dpctl.tensor.usm_ndarray`, but both `x1` and `x2` can not be scalars at the same time .
1047
1047
Parameters `out`, `where`, `dtype` and `subok` are supported with their default values.
1048
1048
Otherwise the function will be executed sequentially on CPU.
1049
1049
Input array data types are limited by supported DPNP :ref:`Data types`,
0 commit comments