mindspore.Tensor.addcdiv
- Tensor.addcdiv(x1, x2, value)[source]
Performs the element-wise division of tensor x1 by tensor x2, multiply the result by the scalar value and add it to input_data.
\[y[i] = input\_data[i] + value[i] * (x1[i] / x2[i])\]- Parameters
- Returns
Tensor, has the same shape and dtype as x1/x2.
- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> x = Tensor(np.array([1, 1, 1, 1]), mindspore.float32) >>> x1 = Tensor(np.array([1, 2, 3, 4]), mindspore.float32) >>> x2 = Tensor(np.array([4, 3, 2, 1]), mindspore.float32) >>> value = Tensor([1], mindspore.float32) >>> y = x.addcdiv(x1, x2, value) >>> print(y) [1.25 1.6666667 2.5 5. ]