Addcdiv ======= Performs element-wise division of tensor1 by tensor2, multiplies by value, adds to input. **Abstract Signature:** ``Addcdiv(input: Tensor, tensor1: Tensor, tensor2: Tensor, value: float = 1.0)`` .. raw:: html

PyTorch

API: torch.addcdiv
Strategy: Direct Mapping

JAX (Core)

API: jax.numpy.add
Strategy: Macro '{input} + {value} * ({tensor1} / {tensor2})'

NumPy

API: numpy.add
Strategy: Macro '{input} + {value} * ({tensor1} / {tensor2})'

Keras

API: keras.ops.add
Strategy: Macro '{input} + {value} * ({tensor1} / {tensor2})'

TensorFlow

API: tf.math.add
Strategy: Macro '{input} + {value} * ({tensor1} / {tensor2})'

Apple MLX

API: mlx.core.add
Strategy: Macro '{input} + {value} * ({tensor1} / {tensor2})'

Flax NNX

API: jax.numpy.add
Strategy: Macro '{input} + {value} * ({tensor1} / {tensor2})'