mindspore.ops.addcmul
- mindspore.ops.addcmul(input, tensor1, tensor2, value=1)[source]
Multiply tensor1 by tensor2 element-wise, scale the result by the scalar value , and add it to input .
- Parameters
- Returns
Tensor
- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> import mindspore >>> x = mindspore.tensor(([1, 1, 1]), mindspore.float32) >>> x1 = mindspore.tensor([[1], [2], [3]], mindspore.float32) >>> x2 = mindspore.tensor([[1, 2, 3]], mindspore.float32) >>> y = mindspore.ops.addcmul(x, x1, x2, 1) >>> print(y) [[ 2. 3. 4.] [ 3. 5. 7.] [ 4. 7. 10.]]