Skip to content

fix submodule imports by importing functions directly #6162

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
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
6 changes: 3 additions & 3 deletions torchvision/extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,18 +47,18 @@ def _check_cuda_version():
"""
if not _HAS_OPS:
return -1
import torch
from torch.version import cuda

_version = torch.ops.torchvision._cuda_version()
if _version != -1 and torch.version.cuda is not None:
if _version != -1 and 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 = cuda
t_version = t_version.split(".")
t_major = int(t_version[0])
t_minor = int(t_version[1])
Expand Down