jax_less_equal

probly.representation.jax_functions.jax_less_equal(x1: JaxArrayLike, x2: JaxArrayLike, /) jax.Array[source]
probly.representation.jax_functions.jax_less_equal(x1: JaxOperand, x2: JaxOperand, /) object

Test the less-than-or-equal relation, mirroring jax.numpy.less_equal.

Parameters:
  • x1 – Left operand.

  • x2 – Right operand.

Returns:

The elementwise boolean result of x1 <= x2 for native operands, or the result supplied by a custom override.