Hi All:
As the official mentions above, the core i7-13700 processor which I use should have integrated graphic inside, but when I want to list all the available devices by openvino, I cant find the "iGPU", how to fix it?
The code I use is below, and it only list the "CPU" device
from openvino.runtime import Core ie = Core() devices = ie.available_devices for device in devices: device_name = ie.get_property(device, "FULL_DEVICE_NAME") print(f"{device}: {device_name}")
链接已复制
Hi Jasonsloan,
Thanks for reaching out. Have you configure Intel® Processor Graphics (GPU) with OpenVINO™? Refer to this instruction to use a GPU device for OpenVINO inference.
You may check the available GPU using the code below:
import openvino as ov
core = ov.Core()
core.available_devices
device = "GPU"
core.get_property(device, "FULL_DEVICE_NAME")
Regards,
Aznie
Hi Aznie!
Very thankful for your help.
I followed your instruction link to install the GPU driver and etc.
But after that, I still couldnt detect the iGPU using the code you provided above via openvino.
The detail of my environment is below:
os: Rocky Linux release 9.3 (Blue Onyx)
cpu: 13th Gen Intel(R) Core(TM) i7-13700
openvino version: 2023.3 LTS
clinfo: Number of platforms 0
besides, the packages within the red rectangles below are all installed successfully
the output of the avalaible devices of openvino:
I checked the information of command "hwinfo --display", and I found maybe "the driver is not active " is the reason.
I tried to fix it with the suggested command "modprobe i915" and it failed again:
How to solve the problem?
Im looking forward to your reply! Thanks a lot!
Hi Jasonsloan,
Thanks for your patience. Our engineering team is looking at the issue from the driver perspective. However, the actual root case was that the user didn’t have the right permission for the operation. Can you try to execute the operation with the root access? Get back to us if you still encounter the same issue in root access.
Regards,
Aznie