Remove Out of tree Driver from GPU driver installation document (#11728)
GPU drivers are already upstreamed to Kernel 6.2+. Remove the out-of-tree driver (intel-i915-dkms) for 6.2-6.5. https://dgpu-docs.intel.com/driver/kernel-driver-types.html#gpu-driver-support * Remove intel-i915-dkms intel-fw-gpu (only for kernel 5.19)
This commit is contained in:
parent
e7f7141781
commit
e32d13d78c
2 changed files with 24 additions and 10 deletions
|
|
@ -39,7 +39,7 @@ IPEX-LLM currently supports the Ubuntu 20.04 operating system and later, and sup
|
||||||
dkms \
|
dkms \
|
||||||
linux-headers-$(uname -r) \
|
linux-headers-$(uname -r) \
|
||||||
libc6-dev
|
libc6-dev
|
||||||
sudo apt install intel-i915-dkms intel-fw-gpu
|
|
||||||
sudo apt-get install -y gawk libc6-dev udev\
|
sudo apt-get install -y gawk libc6-dev udev\
|
||||||
intel-opencl-icd intel-level-zero-gpu level-zero \
|
intel-opencl-icd intel-level-zero-gpu level-zero \
|
||||||
intel-media-va-driver-non-free libmfx1 libmfxgen1 libvpl2 \
|
intel-media-va-driver-non-free libmfx1 libmfxgen1 libvpl2 \
|
||||||
|
|
@ -60,7 +60,7 @@ IPEX-LLM currently supports the Ubuntu 20.04 operating system and later, and sup
|
||||||
sudo gpasswd -a ${USER} render
|
sudo gpasswd -a ${USER} render
|
||||||
newgrp render
|
newgrp render
|
||||||
|
|
||||||
# Verify the device is working with i915 driver
|
# Verify the device is working with i915 driver
|
||||||
sudo apt-get install -y hwinfo
|
sudo apt-get install -y hwinfo
|
||||||
hwinfo --display
|
hwinfo --display
|
||||||
```
|
```
|
||||||
|
|
@ -95,13 +95,20 @@ IPEX-LLM currently supports the Ubuntu 20.04 operating system and later, and sup
|
||||||
libglapi-mesa libgles2-mesa-dev libglx-mesa0 libigdgmm12 libxatracker2 mesa-va-drivers \
|
libglapi-mesa libgles2-mesa-dev libglx-mesa0 libigdgmm12 libxatracker2 mesa-va-drivers \
|
||||||
mesa-vdpau-drivers mesa-vulkan-drivers va-driver-all vainfo
|
mesa-vdpau-drivers mesa-vulkan-drivers va-driver-all vainfo
|
||||||
|
|
||||||
sudo apt install -y intel-i915-dkms intel-fw-gpu
|
|
||||||
|
|
||||||
sudo reboot
|
sudo reboot
|
||||||
```
|
```
|
||||||
|
|
||||||
<img src="https://llm-assets.readthedocs.io/en/latest/_images/gawk.png" width=100%; />
|
<img src="https://llm-assets.readthedocs.io/en/latest/_images/gawk.png" width=100%; />
|
||||||
|
|
||||||
|
* Configure permissions
|
||||||
|
```bash
|
||||||
|
sudo gpasswd -a ${USER} render
|
||||||
|
newgrp render
|
||||||
|
|
||||||
|
# Verify the device is working with i915 driver
|
||||||
|
sudo apt-get install -y hwinfo
|
||||||
|
hwinfo --display
|
||||||
|
```
|
||||||
|
|
||||||
#### (Optional) Update Level Zero on Intel Core™ Ultra iGPU
|
#### (Optional) Update Level Zero on Intel Core™ Ultra iGPU
|
||||||
For Intel Core™ Ultra integrated GPU, please make sure level_zero version >= 1.3.28717. The level_zero version can be checked with `sycl-ls`, and verison will be tagged behind `[ext_oneapi_level_zero:gpu]`.
|
For Intel Core™ Ultra integrated GPU, please make sure level_zero version >= 1.3.28717. The level_zero version can be checked with `sycl-ls`, and verison will be tagged behind `[ext_oneapi_level_zero:gpu]`.
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ IPEX-LLM currently supports the Ubuntu 20.04 operating system and later, and sup
|
||||||
dkms \
|
dkms \
|
||||||
linux-headers-$(uname -r) \
|
linux-headers-$(uname -r) \
|
||||||
libc6-dev
|
libc6-dev
|
||||||
sudo apt install intel-i915-dkms intel-fw-gpu
|
|
||||||
sudo apt-get install -y gawk libc6-dev udev\
|
sudo apt-get install -y gawk libc6-dev udev\
|
||||||
intel-opencl-icd intel-level-zero-gpu level-zero \
|
intel-opencl-icd intel-level-zero-gpu level-zero \
|
||||||
intel-media-va-driver-non-free libmfx1 libmfxgen1 libvpl2 \
|
intel-media-va-driver-non-free libmfx1 libmfxgen1 libvpl2 \
|
||||||
|
|
@ -51,7 +51,7 @@ IPEX-LLM currently supports the Ubuntu 20.04 operating system and later, and sup
|
||||||
sudo gpasswd -a ${USER} render
|
sudo gpasswd -a ${USER} render
|
||||||
newgrp render
|
newgrp render
|
||||||
|
|
||||||
# Verify the device is working with i915 driver
|
# Verify the device is working with i915 driver
|
||||||
sudo apt-get install -y hwinfo
|
sudo apt-get install -y hwinfo
|
||||||
hwinfo --display
|
hwinfo --display
|
||||||
```
|
```
|
||||||
|
|
@ -86,13 +86,20 @@ IPEX-LLM currently supports the Ubuntu 20.04 operating system and later, and sup
|
||||||
libglapi-mesa libgles2-mesa-dev libglx-mesa0 libigdgmm12 libxatracker2 mesa-va-drivers \
|
libglapi-mesa libgles2-mesa-dev libglx-mesa0 libigdgmm12 libxatracker2 mesa-va-drivers \
|
||||||
mesa-vdpau-drivers mesa-vulkan-drivers va-driver-all vainfo
|
mesa-vdpau-drivers mesa-vulkan-drivers va-driver-all vainfo
|
||||||
|
|
||||||
sudo apt install -y intel-i915-dkms intel-fw-gpu
|
|
||||||
|
|
||||||
sudo reboot
|
sudo reboot
|
||||||
```
|
```
|
||||||
|
|
||||||
<img src="https://llm-assets.readthedocs.io/en/latest/_images/gawk.png" width=100%; />
|
<img src="https://llm-assets.readthedocs.io/en/latest/_images/gawk.png" width=100%; />
|
||||||
|
|
||||||
|
* Configure permissions
|
||||||
|
```bash
|
||||||
|
sudo gpasswd -a ${USER} render
|
||||||
|
newgrp render
|
||||||
|
|
||||||
|
# Verify the device is working with i915 driver
|
||||||
|
sudo apt-get install -y hwinfo
|
||||||
|
hwinfo --display
|
||||||
|
```
|
||||||
|
|
||||||
#### (Optional) Update Level Zero on Intel Core™ Ultra iGPU
|
#### (Optional) Update Level Zero on Intel Core™ Ultra iGPU
|
||||||
For Intel Core™ Ultra integrated GPU, please make sure level_zero version >= 1.3.28717. The level_zero version can be checked with `sycl-ls`, and verison will be tagged behind `[ext_oneapi_level_zero:gpu]`.
|
For Intel Core™ Ultra integrated GPU, please make sure level_zero version >= 1.3.28717. The level_zero version can be checked with `sycl-ls`, and verison will be tagged behind `[ext_oneapi_level_zero:gpu]`.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue