multiply¶
- dragon.vm.tensorflow.math.- multiply(
 x,
 y,
 name=None
 )[source]¶
- Compute the element-wise multiplication. \[\text{out} = \text{input1} \times \text{input2} \]- Examples: - x = tf.constant(4) y = tf.constant(2) print(tf.math.multiply(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. 
 
