Replies: 1 comment 3 replies
-
Hi @fuhaoda, sorry to hear about this issues. Could you run the following code in your environment and paste any error messages that you get? import torch
from torch.utils import cpp_extension as torch_cpp_ext
torch_cpp_ext.BUILD_SPLIT_CUDA = False
if hasattr(torch_cpp_ext, "CUDA_GCC_VERSIONS"):
# hack to be able to compile with gcc-8.4.0
torch_cpp_ext.CUDA_GCC_VERSIONS["10.2"] = (
torch_cpp_ext.MINIMUM_GCC_VERSION,
(8, 4, 99),
)
torch_version = torch.__version__.split(".")
torch_geq_113 = (
int(torch_version[0]) > 1
or int(torch_version[0]) == 1
and int(torch_version[1]) >= 13
) |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I already installed torch 2.0.1, but when I installed Theseus, the following error shows up. Any suggestions?
Here are the information on Torch
I also tried update torch
Beta Was this translation helpful? Give feedback.
All reactions