设计
模型库
API
API映射
迁移指南
语法支持
环境变量
FAQ
RELEASE NOTES
将输入Tensor转换为 float16 类型。
Tensor,其数据类型为 float16。
Ascend GPU CPU
Ascend
GPU
CPU
样例:
>>> import numpy as np >>> import mindspore >>> from mindspore import Tensor >>> input_x = Tensor(np.ones([2,2]), mindspore.int32) >>> output = input_x.half() >>> print(output.dtype) Float16