Skip to content

Commit 12ab18e

Browse files
Fix return type in all docstrings
1 parent fdddcee commit 12ab18e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dpnp/dpnp_algo/dpnp_elementwise_common.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ def _call_log(src, dst, sycl_queue, depends=None):
614614
Memory layout of the newly output array, if parameter `out` is `None`.
615615
Default: "K".
616616
Returns:
617-
usm_narray:
617+
dpnp.ndarray:
618618
An array containing the element-wise logical AND results.
619619
"""
620620

@@ -650,7 +650,7 @@ def dpnp_logical_and(x1, x2, out=None, order="K"):
650650
output array, if parameter `out` is `None`.
651651
Default: "K".
652652
Return:
653-
usm_ndarray:
653+
dpnp.ndarray:
654654
An array containing the element-wise logical NOT results.
655655
"""
656656

@@ -690,7 +690,7 @@ def dpnp_logical_not(x, out=None, order="K"):
690690
Memory layout of the newly output array, if parameter `out` is `None`.
691691
Default: "K".
692692
Returns:
693-
usm_narray:
693+
dpnp.ndarray:
694694
An array containing the element-wise logical OR results.
695695
"""
696696

@@ -731,7 +731,7 @@ def dpnp_logical_or(x1, x2, out=None, order="K"):
731731
Memory layout of the newly output array, if parameter `out` is `None`.
732732
Default: "K".
733733
Returns:
734-
usm_narray:
734+
dpnp.ndarray:
735735
An array containing the element-wise logical XOR results.
736736
"""
737737

0 commit comments

Comments
 (0)