mindspore.ops.ScalarCast
- class mindspore.ops.ScalarCast[source]
Casts the input scalar to another type.
- Inputs:
input_x (scalar) - The input scalar. Only constant value is allowed.
input_y (mindspore.dtype) - The type to be cast. Only constant value is allowed.
- Outputs:
Scalar. The type is the same as the python type corresponding to input_y.
- Raises
TypeError – If neither input_x nor input_y is a constant value.
- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> scalar_cast = ops.ScalarCast() >>> output = scalar_cast(255.0, mindspore.int32) >>> print(output) 255