jax_true_divide¶
- probly.representation.jax_functions.jax_true_divide(x1: JaxArrayLike, x2: JaxArrayLike, /) jax.Array[source]¶
- probly.representation.jax_functions.jax_true_divide(x1: JaxOperand, x2: JaxOperand, /) object
Divide operands elementwise, mirroring
jax.numpy.true_divide.- Parameters:
x1 – Dividend.
x2 – Divisor.
- Returns:
The true quotient
x1 / x2, or a custom override result.