-
Notifications
You must be signed in to change notification settings - Fork 30
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
The intel compute runtime from ubuntu repository is not compatible with dpctl #1010
Comments
I realize what's happening now. Using
If, instead, you followed instructions from https://dgpu-docs.intel.com/installation-guides/ubuntu/ubuntu-jammy-arc.html to install these packages from Intel-maintained repo of graphics drivers you'd be getting much newer driver stack and the problem would resolve itself. |
I can understand that there are several sources for getting the runtime and that some of those are more reliable or up to date than other, my concern is that other users can be misled like I was to an unreliable source. Looking back at it, I think my misfortune mostly comes from having read this README before any other documentation regarding the runtime, this repository being the only suggested source by the intel/llvm github repository. I'll try to follow up and suggest at least editing the README.
It's true but the version is definitely not the issue here. The same version installed from there works. So the issue is the build recipe for ubuntu official |
Within a new
ubuntu:jammy
docker container, this sequence of instructions should setup a working conda install for thenumba_dpex
stack (includingdpctl
)and in particular the last command should print a list that includes an opencl gpu device, hinting that the gpu runtime works., but it turns out not to show any gpu device.
However, replacing the
intel-opencl-icd
package with a build from intel/compute-runtime github releases (same version) fixes the issue:and the
get_devices
command properly outputs gpu devices.Many users trying to install this stack are going to run into troubles related to this, given that the
apt-get
based install is actually listed as recommended https://github.com/intel/compute-runtime#via-system-package-manager.Relevant follow-up issues:
edit 19/12: the dpcpp runtime must be pinned until #1022 is solved, replace
intel::dpcpp_linux-64
with"intel::dpcpp_linux-64<2023.0.0'
in the conda install commmand.The text was updated successfully, but these errors were encountered: