jax.numpy.left_shift

Contents

jax.numpy.left_shift#

jax.numpy.left_shift(x1, x2, /)[source]#

Shift the bits of an integer to the left.

LAX-backend implementation of numpy.left_shift().

Original docstring below.

Bits are shifted to the left by appending x2 0s at the right of x1. Since the internal representation of numbers is in binary format, this operation is equivalent to multiplying x1 by 2**x2.

Parameters:
  • x1 (array_like of integer type) – Input values.

  • x2 (array_like of integer type) – Number of zeros to append to x1. Has to be non-negative. If x1.shape != x2.shape, they must be broadcastable to a common shape (which becomes the shape of the output).

Returns:

out – Return x1 with bits shifted x2 times to the left. This is a scalar if both x1 and x2 are scalars.

Return type:

array of integer type