mindspore.ops.xdivy

View Source On Gitee
mindspore.ops.xdivy(x, y)[source]

Divide x by y element-wise.

Note

  • Support broadcast, support implicit type conversion and type promotion.

  • When x and y are both of datatype complex, they should be both complex64 or complex128 at the same time.

  • x and y can not be both bool at the same time.

Parameters
  • x (Union[Tensor, Number, bool]) – Numerator tensor.

  • y (Union[Tensor, Number, bool]) – Denominator tensor.

Returns

Tensor

Supported Platforms:

Ascend GPU CPU

Examples

>>> import mindspore
>>> output = mindspore.ops.xdivy(mindspore.tensor([2., 4., -1.]), mindspore.tensor([2., 2., 2.]))
>>> print(output)
[ 1.   2.  -0.5]