AssertionError: Torch not compiled with CUDA enabled

此错误是由于下载的torch没有cuda,在运行时就会出错,经过查阅,在程序最开始的地方加上(在开始添加了各种包后面即可):

device = torch.device("cuda" if torch.cuda.is_available() else "cpu")

代码其余地方出现.cuda()的地方改成.to(device)就可以在无gpu的环境中运行了。

posted @ 2022-03-19 21:53  时光如你般美好  阅读(2345)  评论(2编辑  收藏  举报