mindspore.ops.scalar_cast
- mindspore.ops.scalar_cast(input_x, input_y)[源代码]
将输入Scalar转换为其他类型。
- 参数:
input_x (scalar) - 输入Scalar。只允许常量值。
input_y (mindspore.dtype) - 要强制转换的类型。只允许常量值。
- 返回:
Scalar,类型与 input_y 对应的python类型相同。
- 异常:
TypeError - 如果 input_x 或 input_y 不是常量值。
- 支持平台:
Ascend
GPU
CPU
样例:
>>> output = ops.scalar_cast(255.0, mindspore.int32) >>> print(output) 255