add

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

Compute the element-wise addition.

\[\text{out} = \text{input1} + \text{input2} \]
x = tf.constant(1)
y = tf.constant(2)
print(tf.math.add(x, y))
print(x + y)  # Equivalent operation
Parameters:
Returns:

dragon.Tensor The output tensor.