jax_greater¶
- probly.representation.jax_functions.jax_greater(x1: JaxArrayLike, x2: JaxArrayLike, /) jax.Array[source]¶
- probly.representation.jax_functions.jax_greater(x1: JaxOperand, x2: JaxOperand, /) object
Test whether the left operand is larger, mirroring
jax.numpy.greater.- Parameters:
x1 – Left operand.
x2 – Right operand.
- Returns:
The elementwise boolean result of
x1 > x2for native operands, or the result supplied by a custom override.