jax_greater_equal

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

Test the greater-than-or-equal relation, mirroring jax.numpy.greater_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.