mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-06-09 07:37:14 +00:00
Remove old hack used to fix windows pytorch 2.4 on the portable. (#8139)
Not necessary anymore.
This commit is contained in:
parent
f1f9763b4c
commit
6a2e4bb9e0
28
fix_torch.py
28
fix_torch.py
@ -1,28 +0,0 @@
|
|||||||
import importlib.util
|
|
||||||
import shutil
|
|
||||||
import os
|
|
||||||
import ctypes
|
|
||||||
import logging
|
|
||||||
|
|
||||||
|
|
||||||
def fix_pytorch_libomp():
|
|
||||||
"""
|
|
||||||
Fix PyTorch libomp DLL issue on Windows by copying the correct DLL file if needed.
|
|
||||||
"""
|
|
||||||
torch_spec = importlib.util.find_spec("torch")
|
|
||||||
for folder in torch_spec.submodule_search_locations:
|
|
||||||
lib_folder = os.path.join(folder, "lib")
|
|
||||||
test_file = os.path.join(lib_folder, "fbgemm.dll")
|
|
||||||
dest = os.path.join(lib_folder, "libomp140.x86_64.dll")
|
|
||||||
if os.path.exists(dest):
|
|
||||||
break
|
|
||||||
|
|
||||||
with open(test_file, "rb") as f:
|
|
||||||
contents = f.read()
|
|
||||||
if b"libomp140.x86_64.dll" not in contents:
|
|
||||||
break
|
|
||||||
try:
|
|
||||||
ctypes.cdll.LoadLibrary(test_file)
|
|
||||||
except FileNotFoundError:
|
|
||||||
logging.warning("Detected pytorch version with libomp issue, patching.")
|
|
||||||
shutil.copyfile(os.path.join(lib_folder, "libiomp5md.dll"), dest)
|
|
Loading…
x
Reference in New Issue
Block a user