Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion dpnp/dpnp_iface_bitwise.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# *****************************************************************************

"""
Interface of the Binary operations of the DPNP
Interface of the Bitwise part of the DPNP

Notes
-----
Expand Down Expand Up @@ -84,6 +84,7 @@ def binary_repr(num, width=None):
at least a sufficient number of bits for `num` to be represented in the
designated form. If the `width` value is insufficient, an error is
raised.

Default: ``None``.

Returns
Expand Down Expand Up @@ -145,9 +146,11 @@ def binary_repr(num, width=None):
out : {None, dpnp.ndarray, usm_ndarray}, optional
Output array to populate.
Array must have the correct shape and the expected data type.

Default: ``None``.
order : {"C", "F", "A", "K"}, optional
Memory layout of the newly output array, if parameter `out` is ``None``.

Default: ``"K"``.

Returns
Expand Down Expand Up @@ -232,9 +235,11 @@ def binary_repr(num, width=None):
out : {None, dpnp.ndarray, usm_ndarray}, optional
Output array to populate.
Array must have the correct shape and the expected data type.

Default: ``None``.
order : {"C", "F", "A", "K"}, optional
Memory layout of the newly output array, if parameter `out` is ``None``.

Default: ``"K"``.

Returns
Expand Down Expand Up @@ -310,9 +315,11 @@ def binary_repr(num, width=None):
out : {None, dpnp.ndarray, usm_ndarray}, optional
Output array to populate.
Array must have the correct shape and the expected data type.

Default: ``None``.
order : {"C", "F", "A", "K"}, optional
Memory layout of the newly output array, if parameter `out` is ``None``.

Default: ``"K"``.

Returns
Expand Down Expand Up @@ -386,9 +393,11 @@ def binary_repr(num, width=None):
out : {None, dpnp.ndarray, usm_ndarray}, optional
Output array to populate.
Array must have the correct shape and the expected data type.

Default: ``None``.
order : {"C", "F", "A", "K"}, optional
Memory layout of the newly output array, if parameter `out` is ``None``.

Default: ``"K"``.

Returns
Expand Down Expand Up @@ -472,9 +481,11 @@ def binary_repr(num, width=None):
out : {None, dpnp.ndarray, usm_ndarray}, optional
Output array to populate.
Array must have the correct shape and the expected data type.

Default: ``None``.
order : {"C", "F", "A", "K"}, optional
Memory layout of the newly output array, if parameter `out` is ``None``.

Default: ``"K"``.
Returns
-------
Expand Down Expand Up @@ -549,9 +560,11 @@ def binary_repr(num, width=None):
out : {None, dpnp.ndarray, usm_ndarray}, optional
Output array to populate.
Array must have the correct shape and the expected data type.

Default: ``None``.
order : {"C", "F", "A", "K"}, optional
Memory layout of the newly output array, if parameter `out` is ``None``.

Default: ``"K"``.

Returns
Expand Down
Loading