pytorch中tensor的cpu和gpu转换 device = torch.device("cuda") X = X.to(device) y = y.to(device) 或者X = X.cuda() 注意tensor的to()和cuda()都不是原位操作,这意味着一定要把返回值赋给原张量。