-
Notifications
You must be signed in to change notification settings - Fork 265
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
OSError: [WinError 126] The specified module could not be found. Error loading "...\aoti_custom_ops.dll" or one of its dependencies. #788
Comments
Hi @samabogbog , as we described in the installation guide, on Windows, libuv needs to be installed, could you try in conda environment? Thanks! |
Same issue here. Libuv installed. Error loading "[...]aoti_custom_ops.dll" or one of its dependencies. |
I have encountered the same problem and I am looking forward to its resolution.😲 Intel(R) Core(TM) Ultra 7 255H |
@kangxiatao Could you try the latest version for Intel(R) Core(TM) Ultra 7 255H in a clean conda environment?
|
Thank you, it can now be used normally @huiyan2021 |
can someone help me also please |
i have a ultra 7 155H, i did all i could a video explaining how to do it would be nice |
Describe the issue
Traceback (most recent call last):
File "C:.pytemp\ipex\app.py", line 1, in
import torch
File "C:.pytemp\ipex.env\lib\site-packages\torch_init_.py", line 262, in
load_dll_libraries()
File "C:.pytemp\ipex.env\lib\site-packages\torch_init.py", line 258, in _load_dll_libraries
raise err
OSError: [WinError 126] The specified module could not be found. Error loading "C:.pytemp\ipex.env\lib\site-packages\torch\lib\aoti_custom_ops.dll" or one of its dependencies.
===========================
Code :
import torch
import intel_extension_for_pytorch as ipex
model = torch.nn.Linear(10, 10)
model = ipex.optimize(model)
input_data = torch.randn(1, 10)
output = model(input_data)
print(output)
The text was updated successfully, but these errors were encountered: