-
-
Notifications
You must be signed in to change notification settings - Fork 710
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
Older/legacy Intel GPU OpenCL support #1351
Comments
All you need to do is to include the correct intel generation here:
We already have abstraction for it: https://github.com/NixOS/nixos-hardware/blob/master/common/cpu/intel/tiger-lake/default.nix |
I see no mention of |
This was about the vaapiDriver, not opencl:
|
Overall your proposal sounds fine. Since I don't have this type of hardware, I cannot lead the implementation though. |
Hi, I tried to use OpenCL, but noticed that my Lenovo Thinkpad T480 was seemingly missing the required libraries despite importing its profile.
clinfo
is returning zero platforms.Then I realized this affects all "legacy platforms" that try to use the
intel-compute-runtime
, i.e. Gen 8, 9 and 11 Intel cores. They instead have to useintel-compute-runtime-legacy1
. With that I get an expectedclinfo
output.I propose a new option in the common intel gpu configuration to switch between those. Installing them side-by-side is not possible due to a file conflict. Specific hardware profiles then should set it correctly to get either of those packages.
P.S.: The T480 profile should set
hardware.intelgpu.vaapiDriver = "intel-media-driver";
.The text was updated successfully, but these errors were encountered: