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:
- x (dragon.Tensor) – The input1 tensor.
- y (dragon.Tensor) – The input2 tensor.
- name (str, optional) – The operation name.
 
 - Returns:
- dragon.Tensor – The output tensor. 
 
