mindspore.ops.xdivy
- 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
- 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]