cupy.bitwise_invert#
- cupy.bitwise_invert(x, /, out=None, \*, casting='same_kind', dtype=None)#
Computes the bitwise NOT of an array elementwise.
Only integer and boolean arrays are handled.
Note
cupy.bitwise_not()
is an alias forcupy.invert()
.See also