LLM/Intel Pro Arc B70: Difference between revisions

From Fundamental Ramen
< LLM
Jump to navigation Jump to search
 
(12 intermediate revisions by the same user not shown)
Line 1: Line 1:
= Step =
= Install drivers =
 
== Check proper Ubuntu version ==


* Check proper Ubuntu version for OpenVINO
* Check the latest Ubuntu version which OpenVINO supported. <br/>https://docs.openvino.ai/2026/get-started/install-openvino/install-openvino-apt.html
* Check proper Ubuntu version for SYCL
* It's Ubuntu 24.04 at 2026-06-20.
* Install Ubuntu
* Install Ubuntu
* Install HWE kernel
* Install PPA driver


= Install drivers =
== Check device connection ==
 
<syntaxhighlight lang="bash">
# Check eGPU connection (for eGPU only)
boltctl list
 
# Check hardware dectection
sudo dmesg | grep -i 'xe '
 
# Check pci devices
lspci | grep -i 'vga\|display'
</syntaxhighlight>
 
Found B70 at PCI node '''05:00.0'''
 
'''Intel Corporation Device e223''' is Intel Pro Arc B70.
 
<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)
sudo lspci -vvv -s 05:00.0


== Check device connection ==
# Check linux device & owner/group
ls -l /dev/dri
</syntaxhighlight>


== Install PPA drivers ==
== Install PPA drivers ==
Line 17: Line 45:
* Install drivers, openvino, oneapi, llama.cpp. [[LLM/Intel Pro Arc B70/2026-06-18]]
* 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]]
* Compile llama.cpp. [[LLM/Intel Pro Arc B70/2026-06-20]]
* 9600X + B650 + B70 on Ubuntu 26.04. [[LLM/Intel Pro Arc B70/2026-07-12]]
* 9600X + B650 + B70 on Ubuntu 24.04. [[LLM/Intel Pro Arc B70/2026-07-13]]

Latest revision as of 16:02, 12 July 2026

Install drivers

Check proper Ubuntu version

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

Intel Corporation Device e223 is Intel Pro Arc B70.

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