1

Google colab notebook 附带 PyTorch 和 GPU 支持——请参阅这个相关的 SO 答案,然后您应该将 notebook 运行时从 CPU 更改为 GPU(从顶部的 Colab 菜单栏)。

然而,尝试从 GPyTorch 训练模型总是失败

/usr/local/lib/python3.6/dist-packages/gpytorch/utils/cholesky.py in psd_safe_cholesky(A, upper, out, jitter)
     19     """
     20     try:
---> 21         L = torch.cholesky(A, upper=upper, out=out)
     22         # TODO: Remove once fixed in pytorch (#16780)
     23         if A.dim() > 2 and A.is_cuda:

RuntimeError: CUDA error: invalid device function

为什么?

相关资料:

import torch
torch.cuda.is_available()

True
print(torch.__version__)
print(gpytorch.__version__)
print(torch.backends.cudnn.version())

1.3.0+cu100
0.3.6
7603
4

0 回答 0