DLL import error #1177
-
there are something wrong while i exectute the python script about dpctl.... i install dpctl from pypl,install it by using pip command.Then i tried to test it by execture a python script in documentation.And the python interpreter return a error, the error is as follows: Traceback (most recent call last): it seem that .pyd file didn't work,but i don't know the reason. is there any way to solve this problem? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The version of dpctl on PyPI is very much out of date (https://pypi.org/project/dpctl/#history) at 0.11.3 Failure of Could you please try installing conda create -n dpctl -c intel dpctl |
Beta Was this translation helpful? Give feedback.
The version of dpctl on PyPI is very much out of date (https://pypi.org/project/dpctl/#history) at 0.11.3
Failure of
dpctl._sycl_context
to import indicates failure to find and load dependent libraries, such as DPC++ Runtime librarylibsycld.dll
which must exist on your computer (installed independently, i.e. from oneAPI installation) but must also be of the version compatible with the version of the DPC++ compiler used to build thedpctl
binary package.Could you please try installing
dpctl
using conda? Its advantage is that it would also install dependent libraries.