-
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
I encountered a problem while installing xpu2.6.The error is [WinError 127] #797
Comments
Hi, would you elaborate on the steps you used? Please double check with the installation guide. No |
Indeed, I followed the installation guide step by step to complete the installation,i installed the latest version of C++ and the latest driver, Many people have encountered this problem.
|
Hi @LIwii1 , Could you please try these steps?
If you still have the issue could you please share your conda packages list and your GPU device list from your device manager? Thank you. |
Thank you, I tried to install xpu according to your method, but I'm not sure what to do in the fifth step, do you still copy the previous two lines of code? Such as this: Attached below is my log. |
Yes you can use the previous documented code to install IPEX. The flow is used to make sure the dependencies are installed correctly. |
Have you ever tried 'TORCH_DEVICE_BACKEND_AUTOLOAD=0'? It might be a circle import issue if you import any third party library such as Transformers before import torch, such as this known issue: https://intel.github.io/intel-extension-for-pytorch/xpu/latest/tutorials/known_issues.html Problem: RuntimeError: Failed to load the backend extension: intel_extension_for_pytorch. You can disable extension auto-loading with TORCH_DEVICE_BACKEND_AUTOLOAD=0. Cause: If you import any third party library such as Transformers before import torch, and the third party library has dependency to torch and then implicitly autoloads intel_extension_for_pytorch, which introduces circle import. Solution: Disable extension auto-loading with TORCH_DEVICE_BACKEND_AUTOLOAD=0. |
I tried your method and there was no error, but I don't know if it was successful. Here is the log: (ipex) C:\Users\LWZ>python -c "import torch; import intel_extension_for_pytorch as ipex; print(torch.version); print(ipex.version); [print(f'[{i}]: {torch.xpu.get_device_properties(i)}') for i in range(torch.xpu.device_count())];" (ipex) C:\Users\LWZ> |
I think it works. The IPEX is loaded and the device Arc A770 is found. |
Thank you, your method is effective |
Describe the issue
My GPU is A770 16G, and my system is running Windows 11. When testing commands, I encountered an error named .[WinError 127]'. I tried to find solutions, including installing conda install libuv, creating a new conda, and trying other similar problem-solving methods, but the issue was not resolved. I need some help.
Below are the logs:
(ipex_fresh) C:\Users\LWZ>python -c "import torch; import intel_extension_for_pytorch as ipex; print(torch.version); print(ipex.version); [print(f'[{i}]: {torch.xpu.get_device_properties(i)}') for i in range(torch.xpu.device_count())];"
Traceback (most recent call last):
File "C:\Users\LWZ\AppData\Roaming\Python\Python310\site-packages\torch_init_.py", line 2756, in import_device_backends
entrypoint = backend_extension.load()
File "G:\ttl\anaconda\envs\ipex_fresh\lib\importlib\metadata_init.py", line 171, in load
module = import_module(match.group('module'))
File "G:\ttl\anaconda\envs\ipex_fresh\lib\importlib_init_.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "", line 1050, in _gcd_import
File "", line 1027, in _find_and_load
File "", line 1006, in _find_and_load_unlocked
File "", line 688, in _load_unlocked
File "", line 883, in exec_module
File "", line 241, in call_with_frames_removed
File "C:\Users\LWZ\AppData\Roaming\Python\Python310\site-packages\intel_extension_for_pytorch_init.py", line 113, in
raise err
OSError: [WinError 127] 找不到指定的程序(Cannot find the specified program.)。 Error loading "C:\Users\LWZ\AppData\Roaming\Python\Python310\site-packages\intel_extension_for_pytorch\bin\intel-ext-pt-gpu.dll" or one of its dependencies.
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "", line 1, in
File "C:\Users\LWZ\AppData\Roaming\Python\Python310\site-packages\torch_init_.py", line 2784, in
import_device_backends()
File "C:\Users\LWZ\AppData\Roaming\Python\Python310\site-packages\torch_init.py", line 2760, in _import_device_backends
raise RuntimeError(
RuntimeError: Failed to load the backend extension: intel_extension_for_pytorch. You can disable extension auto-loading with TORCH_DEVICE_BACKEND_AUTOLOAD=0.
The text was updated successfully, but these errors were encountered: