LLM/Intel Pro Arc B70: Difference between revisions
< LLM
Jump to navigation
Jump to search
| Line 18: | Line 18: | ||
# Check pci devices | # Check pci devices | ||
lspci | grep -i 'vga\|display' | lspci | grep -i 'vga\|display' | ||
</syntaxhighlight> | |||
Found B70 at PCI node 05:00.0 | |||
<pre> | |||
05:00.0 VGA compatible controller: Intel Corporation Device e223 | |||
66:00.0 Display controller: Advanced Micro Devices, Inc. [AMD/ATI] Device 1114 (rev c2) | |||
</pre> | |||
Display device details. | |||
<syntaxhighlight lang="bash"> | |||
# Check card detail (sudo is required) | # Check card detail (sudo is required) | ||
sudo lspci -vvv -s 05:00.0 | sudo lspci -vvv -s 05:00.0 | ||
Revision as of 07:48, 20 June 2026
Install drivers
Check proper Ubuntu version
- Check the latest Ubuntu version which OpenVINO supported.
https://docs.openvino.ai/2026/get-started/install-openvino/install-openvino-apt.html - It's Ubuntu 24.04 at 2026-06-20.
- Install Ubuntu
Check device connection
# Check eGPU connection (for eGPU only)
boltctl list
# Check hardware dectection
sudo dmesg | grep -i 'xe '
# Check pci devices
lspci | grep -i 'vga\|display'
Found B70 at PCI node 05:00.0
05:00.0 VGA compatible controller: Intel Corporation Device e223 66:00.0 Display controller: Advanced Micro Devices, Inc. [AMD/ATI] Device 1114 (rev c2)
Display device details.
# Check card detail (sudo is required)
sudo lspci -vvv -s 05:00.0
# Check linux device & owner/group
ls -l /dev/dri
Install PPA drivers
Diary
- Install drivers, openvino, oneapi, llama.cpp. LLM/Intel Pro Arc B70/2026-06-18
- Compile llama.cpp. LLM/Intel Pro Arc B70/2026-06-20