@@ -614,7 +614,7 @@ def _call_log(src, dst, sycl_queue, depends=None):
614
614
Memory layout of the newly output array, if parameter `out` is `None`.
615
615
Default: "K".
616
616
Returns:
617
- usm_narray :
617
+ dpnp.ndarray :
618
618
An array containing the element-wise logical AND results.
619
619
"""
620
620
@@ -650,7 +650,7 @@ def dpnp_logical_and(x1, x2, out=None, order="K"):
650
650
output array, if parameter `out` is `None`.
651
651
Default: "K".
652
652
Return:
653
- usm_ndarray :
653
+ dpnp.ndarray :
654
654
An array containing the element-wise logical NOT results.
655
655
"""
656
656
@@ -690,7 +690,7 @@ def dpnp_logical_not(x, out=None, order="K"):
690
690
Memory layout of the newly output array, if parameter `out` is `None`.
691
691
Default: "K".
692
692
Returns:
693
- usm_narray :
693
+ dpnp.ndarray :
694
694
An array containing the element-wise logical OR results.
695
695
"""
696
696
@@ -731,7 +731,7 @@ def dpnp_logical_or(x1, x2, out=None, order="K"):
731
731
Memory layout of the newly output array, if parameter `out` is `None`.
732
732
Default: "K".
733
733
Returns:
734
- usm_narray :
734
+ dpnp.ndarray :
735
735
An array containing the element-wise logical XOR results.
736
736
"""
737
737
@@ -861,7 +861,7 @@ def dpnp_not_equal(x1, x2, out=None, order="K"):
861
861
Output array, if parameter `out` is `None`.
862
862
Default: "K".
863
863
Returns:
864
- usm_ndarray :
864
+ dpnp.ndarray :
865
865
An array containing the result of element-wise of raising each element
866
866
to a specified power.
867
867
The data type of the returned array is determined by the Type Promotion Rules.
0 commit comments