jax.lax.lt#
- jax.lax.lt(x, y)[source]#
Elementwise less-than: \(x < y\).
This function lowers directly to the stablehlo.compare operation with
comparison_direction=LT
andcompare_type
set according to the input dtype.- Parameters:
x (ArrayLike) – Input arrays. Must have matching non-complex dtypes. If neither is a scalar,
x
andy
must have the same number of dimensions and be broadcast compatible.y (ArrayLike) – Input arrays. Must have matching non-complex dtypes. If neither is a scalar,
x
andy
must have the same number of dimensions and be broadcast compatible.
- Returns:
A boolean array of shape
lax.broadcast_shapes(x.shape, y.shape)
containing the elementwise less-than comparison.- Return type:
See also
jax.numpy.less()
: NumPy wrapper for this API, also accessible via thex < y
operator on JAX arrays.jax.lax.eq()
: elementwise equaljax.lax.ne()
: elementwise not-equaljax.lax.ge()
: elementwise greater-than-or-equaljax.lax.gt()
: elementwise greater-thanjax.lax.le()
: elementwise less-than-or-equal