mindspore.ops.Inv

class mindspore.ops.Inv[source]

Computes Reciprocal of input tensor element-wise.

Refer to mindspore.ops.inv() for more details.

Inputs:
  • x (Tensor) - Input tensor, it must be one of the following types: float16, float32 or int32.

Outputs:

Tensor, has the same shape and data type as x.

Supported Platforms:

Ascend GPU CPU

Examples

>>> inv = ops.Inv()
>>> x = Tensor(np.array([0.25, 0.4, 0.31, 0.52]), mindspore.float32)
>>> output = inv(x)
>>> print(output)
[4.        2.5       3.2258065 1.923077 ]