Skip to content

Commit

Permalink
Fix for windows and python 3.8 call to add_dll_directory (#6742)
Browse files Browse the repository at this point in the history
  • Loading branch information
atalman committed Oct 11, 2022
1 parent 6e72f2f commit 1b5e1b4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion torchvision/extension.py
Expand Up @@ -21,12 +21,16 @@ def _has_ops():
# To find cuda related dlls we need to make sure the
# conda environment/bin path is configured Please take a look:
# https://stackoverflow.com/questions/59330863/cant-import-dll-module-in-python
# Please note: if some path can't be added using add_dll_directory we simply ignore this path
if os.name == "nt" and sys.version_info >= (3, 8) and sys.version_info < (3, 9):
env_path = os.environ["PATH"]
path_arr = env_path.split(";")
for path in path_arr:
if os.path.exists(path):
os.add_dll_directory(path) # type: ignore[attr-defined]
try:
os.add_dll_directory(path) # type: ignore[attr-defined]
except Exception:
pass

lib_path = _get_extension_path("_C")
torch.ops.load_library(lib_path)
Expand Down

0 comments on commit 1b5e1b4

Please sign in to comment.