FloorDivide =========== Calculates the floor division of x1 by x2 element-wise **Abstract Signature:** ``FloorDivide(x1: Tensor, x2: Tensor)`` .. raw:: html

PyTorch

API: torch.floor_divide
Strategy: Macro 'torch.div({x1}, {x2}, rounding_mode='floor')'

JAX (Core)

API: jax.numpy.floor_divide
Strategy: Infix (//)

NumPy

API: numpy.floor_divide
Strategy: Infix (//)

Keras

API: keras.ops.floor_divide
Strategy: Infix (//)

TensorFlow

API: tf.math.floordiv
Strategy: Direct Mapping

Apple MLX

API: mlx.core.floor_divide
Strategy: Infix (//)