IsStrictlyIncreasingΒΆ
Returns True if x is strictly increasing.
Abstract Signature:
IsStrictlyIncreasing(x: Tensor)
PyTorch
API:
βStrategy: Macro 'torch.all({x}[1:] > {x}[:-1])'
JAX (Core)
API:
βStrategy: Macro 'jnp.all({x}[1:] > {x}[:-1])'
Keras
API:
βStrategy: Macro 'keras.ops.all({x}[1:] > {x}[:-1])'
Apple MLX
API:
βStrategy: Macro 'mx.all({x}[1:] > {x}[:-1])'
Flax NNX
API:
βStrategy: Macro 'jnp.all({x}[1:] > {x}[:-1])'
PaxML / Praxis
API:
βStrategy: Macro 'jnp.all({x}[1:] > {x}[:-1])'