Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions torchvision/extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,19 +47,18 @@ def _check_cuda_version():
"""
if not _HAS_OPS:
return -1
import torch
from torch.version import cuda as torch_version_cuda

_version = torch.ops.torchvision._cuda_version()
if _version != -1 and torch.version.cuda is not None:
if _version != -1 and torch_version_cuda is not None:
tv_version = str(_version)
if int(tv_version) < 10000:
tv_major = int(tv_version[0])
tv_minor = int(tv_version[2])
else:
tv_major = int(tv_version[0:2])
tv_minor = int(tv_version[3])
t_version = torch.version.cuda
t_version = t_version.split(".")
t_version = torch_version_cuda.split(".")
t_major = int(t_version[0])
t_minor = int(t_version[1])
if t_major != tv_major or t_minor != tv_minor:
Expand Down