设计
模型库
API
API映射
迁移指南
语法支持
FAQ
RELEASE NOTES
将输入Tensor转换为 int32 类型,其中Tensor中的值为浮点数时,则会丢弃小数部分。
Tensor,其数据类型为 int32。
Ascend GPU CPU
Ascend
GPU
CPU
样例:
>>> input_x = Tensor(np.ones([2,2]), mindspore.float32) >>> output = input_x.int() >>> print(output.dtype) Int32