模型开发接口
推理部署接口
API 相关说明
把张量复制到另一个设备上。
inp – 输入张量。
device – 目标设备。
实际案例
>>> import numpy as np >>> x = Tensor([1, 2, 3], np.int32)
>>> F.copy(x, 'cpu1') Tensor([1 2 3], dtype=int32, device=cpu1:0)
>>> F.copy(x, 'xpu0') Tensor([1 2 3], dtype=int32, device=xpu0:0)
上一页
megengine.functional.polar
下一页
megengine.functional.reshape