赞
踩
- # 以下代码只有在PyTorch GPU版本上才会执⾏行行
- if torch.cuda.is_available():
- device = torch.device("cuda") # GPU
- y = torch.ones_like(x, device=device) # 直接创建一个在GPU上的Tensor
- x = x.to(device) # 等价于 .to("cuda")
- z = x + y
- print(z)
- print(z.to("cpu", torch.double)) # to()还可以同时更改数据类型
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。