flopscope.numpy.bitwise_invert
flopscope.numpy.bitwise_invert(*args, **kwargs)[flopscope source]
Compute bit-wise inversion, or bit-wise NOT, element-wise.
Computes the bit-wise NOT of the underlying binary representation of
the integers in the input arrays. This ufunc implements the C/Python
operator ~.
For signed integer inputs, the bit-wise NOT of the absolute value is returned. In a two's-complement system, this operation effectively flips all the bits, resulting in a representation that corresponds to the negative of the input plus one. This is the most common method of representing signed integers on computers [1]_. A N-bit two's-complement system can represent every integer in the range to .
Parameters
- x:array_like
Only integer and boolean types are handled.
- out:ndarray, None, or tuple of ndarray and None, optional
A location into which the result is stored. If provided, it must have a shape that the inputs broadcast to. If not provided or None, a freshly-allocated array is returned. A tuple (possible only as a keyword argument) must have length equal to the number of outputs.
- where:array_like, optional
This condition is broadcast over the input. At locations where the condition is True, the
outarray will be set to the ufunc result. Elsewhere, theoutarray will retain its original value. Note that if an uninitializedoutarray is created via the defaultout=None, locations within it where the condition is False will remain uninitialized.- **kwargs
For other keyword-only arguments, see the ufunc docs.
Returns
- out:ndarray or scalar
Result. This is a scalar if
xis a scalar.
See also
- we.flops.bitwise_and
- we.flops.bitwise_or
- we.flops.bitwise_xor
- we.flops.logical_not
- binary_repr Return the binary representation of the input number as a string.
Notes
flops.bitwise_not is an alias for invert:
>>> flops.bitwise_not is flops.invert
TrueReferences
1
Wikipedia, "Two's complement",
https://en.wikipedia.org/wiki/Two's_complementExamples
>>> import flopscope.numpy as fnpWe've seen that 13 is represented by 00001101.
The invert or bit-wise NOT of 13 is then:
>>> x = flops.invert(flops.array(13, dtype=flops.uint8))
>>> x
flops.uint8(242)
>>> flops.binary_repr(x, width=8)
'11110010'The result depends on the bit-width:
>>> x = flops.invert(flops.array(13, dtype=flops.uint16))
>>> x
flops.uint16(65522)
>>> flops.binary_repr(x, width=16)
'1111111111110010'When using signed integer types, the result is the bit-wise NOT of the unsigned type, interpreted as a signed integer:
>>> flops.invert(flops.array([13], dtype=flops.int8))
array([-14], dtype=int8)
>>> flops.binary_repr(-14, width=8)
'11110010'Booleans are accepted as well:
>>> flops.invert(flops.array([True, False]))
array([False, True])The ~ operator can be used as a shorthand for flops.invert on
ndarrays.
>>> x1 = flops.array([True, False])
>>> ~x1
array([False, True])