divide

dragon.vm.tensorflow.math.divide(
  x,
  y,
  name=None
)[source]

Compute the element-wise division.

\[\text{out} = \text{input1} \div \text{input2} \]

Examples:

x = tf.constant(4)
y = tf.constant(2)
print(tf.math.divide(x, y))
print(x / y)  # Equivalent operation
Parameters:
Returns:

dragon.Tensor The output tensor.