Intel® Distribution of OpenVINO™ Toolkit
Community assistance about the Intel® Distribution of OpenVINO™ toolkit, OpenCV, and all aspects of computer vision-related on Intel® platforms.

iGPU cant be detected of core i7-13700

jasonsloan
New Contributor I
595 Views

Hi All:

 

jasonsloan_0-1711962053049.png

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}")   

 

0 Kudos
4 Replies
Aznie_Intel
Moderator
554 Views

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


0 Kudos
jasonsloan
New Contributor I
437 Views

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

jasonsloan_0-1712735513912.png

 

the output of the avalaible devices of openvino:

jasonsloan_1-1712736043847.png

 

I checked the information of command "hwinfo --display", and I found maybe "the driver is not active " is the reason. 

jasonsloan_0-1712736400096.png

I tried to fix it with the suggested command "modprobe i915" and it failed again:

jasonsloan_1-1712736534698.png


How to solve the problem?

Im looking forward to your reply! Thanks a lot!

 

 

 

 

0 Kudos
Aznie_Intel
Moderator
351 Views

Hi Jasonsloan,


We are checking on this and will get back to you soon.



Regards,

Aznie


0 Kudos
Aznie_Intel
Moderator
37 Views

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


0 Kudos
Reply