jax.lax.rem

Contents

jax.lax.rem#

jax.lax.rem(x, y)[source]#

Elementwise remainder: \(x \bmod y\).

The sign of the result is taken from the dividend, and the absolute value of the result is always less than the divisor’s absolute value.

Integer division overflow (remainder by zero or remainder of INT_SMIN with -1) produces an implementation defined value.

Parameters:
  • x (jax.typing.ArrayLike)

  • y (jax.typing.ArrayLike)

Return type:

Array