Skip to content

Commit 08b10cf

Browse files
committed
add docstrings for out and order
1 parent 4779ac1 commit 08b10cf

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

dpnp/dpnp_algo/dpnp_elementwise_common.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,12 @@
5353
First input array, expected to have numeric data type.
5454
x2 (dpnp.ndarray):
5555
Second input array, also expected to have numeric data type.
56+
out ({None, dpnp.ndarray}, optional):
57+
Output array to populate.
58+
Array have the correct shape and the expected data type.
59+
order ("C","F","A","K", None, optional):
60+
Memory layout of the newly output array, if parameter `out` is `None`.
61+
Default: "K".
5662
Returns:
5763
dpnp.ndarray:
5864
an array containing the result of element-wise division. The data type

0 commit comments

Comments
 (0)