mindspore.Tensor.mul_

mindspore.Tensor.mul_(other)

两个Tensor逐元素相乘。

\[out_{i} = tensor_{i} * other_{i}\]

警告

这是一个实验性API,后续可能修改或删除。

说明

  • 当两个输入具有不同的shape时, other 必须能被广播成 self

  • selfother 不能同时为bool类型。[True, Tensor(True, bool_), Tensor(np.array([True]), bool_)]等都为bool类型。

参数:
  • other (Union[Tensor, number.Number, bool]) - other 可以是number.Number或bool,也可以是数据类型为number.Number或bool的Tensor。

返回:

Tensor,shape与 self 的shape相同,数据类型和 self 的类型相同。

异常:
  • TypeError - other 不是Tensor、number.Number或bool。

  • RuntimeError - other 不能被广播成 self

支持平台:

Ascend

样例:

>>> import mindspore
>>> import numpy as np
>>> from mindspore import Tensor
>>> x = Tensor(np.array([1.0, 2.0, 3.0]), mindspore.float32)
>>> y = Tensor(np.array([4.0, 5.0, 6.0]), mindspore.float32)
>>> output = x.mul_(y)
>>> print(output)
[ 4. 10. 18.]
>>> print(x)
[ 4. 10. 18.]