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