首页 > 其他分享 >torch.tensor.to()

torch.tensor.to()

时间:2022-12-08 19:48:35浏览次数:43  
标签:tensor cuda0 float64 dtype torch device

image
image
image

tensor = torch.randn(2, 2)  # Initially dtype=float32, device=cpu
tensor.to(torch.float64)

cuda0 = torch.device('cuda:0')
tensor.to(cuda0)

tensor.to(cuda0, dtype=torch.float64)

other = torch.randn((), dtype=torch.float64, device=cuda0)
tensor.to(other, non_blocking=True)

标签:tensor,cuda0,float64,dtype,torch,device
From: https://www.cnblogs.com/zjuhaohaoxuexi/p/16967065.html

相关文章