Skip to content

Commit cd4f0d4

Browse files
committed
add docstrings for out and order
1 parent be8c671 commit cd4f0d4

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

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)