mindspore.ops.DType
- class mindspore.ops.DType[source]
Returns the data type of the input tensor as mindspore.dtype.
- Inputs:
input_x (Tensor) - Input Tensor.
- Outputs:
mindspore.dtype, the data type of a tensor.
- Raises
TypeError – If input_x is not a Tensor.
- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> import mindspore >>> import numpy as np >>> from mindspore import Tensor, ops >>> input_tensor = Tensor(np.array([[2, 2], [2, 2]]), mindspore.float32) >>> output = ops.DType()(input_tensor) >>> print(output) Float32