cupy.invert#

cupy.invert()#

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 for cupy.invert().

See also

numpy.invert