[Detector Support]: OpenVino - Intel Arc A380 - OpenVINO cannot access Intel Arc GPU #22111
-
Beta Was this translation helpful? Give feedback.
Replies: 8 comments
-
|
The issue you're experiencing with your Intel Arc A380 GPU appears to be related to device access permissions. Your Docker configuration only passes through Try updating your Docker Compose configuration to pass through the entire devices:
- /dev/dri:/dev/driAdditionally, OpenVINO is supported on 6th Gen Intel platforms (Skylake) and newer, and a supported Intel platform is required to use the GPU device with OpenVINO.(1) The Intel Arc A380 should be compatible. If the issue persists after granting full For reference, OpenVINO will automatically be detected and used as a detector in the default Frigate image when configured.(1)(2) 📚 Sources: Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.
-
|
I've already tried to pass through the entire |
Beta Was this translation helpful? Give feedback.
-
|
Based on your configuration and the error The Intel Arc A380 is supported by OpenVINO and should work with Frigate.(1), (5) However, several users have reported similar issues with newer Linux kernels requiring updated Intel Compute Runtime packages inside the Frigate container.(3), (4) Recommended Solution: Install the latest Intel Compute Runtime packages inside your Frigate container:(3), (4) docker exec -ti frigate bash
cd $(mktemp -d)
wget https://github.com/intel/intel-graphics-compiler/releases/download/igc-1.0.16900.23/intel-igc-core_1.0.16900.23_amd64.deb
wget https://github.com/intel/intel-graphics-compiler/releases/download/igc-1.0.16900.23/intel-igc-opencl_1.0.16900.23_amd64.deb
wget https://github.com/intel/compute-runtime/releases/download/24.22.29735.20/intel-level-zero-gpu_1.3.29735.20_amd64.deb
wget https://github.com/intel/compute-runtime/releases/download/24.22.29735.20/intel-opencl-icd_24.22.29735.20_amd64.deb
wget https://github.com/intel/compute-runtime/releases/download/24.22.29735.20/libigdgmm12_22.3.19_amd64.deb
dpkg -i *.debAfter installation, restart your Frigate container.(3), (4) Additional Troubleshooting: Some users have reported that when mixing Intel iGPU with other GPUs, devices can be mixed up between You may also need to set the 📚 Sources:
Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.
-
|
I've modified the config.yml and set device to CPU, then i restarted the container. Then i stopped the container and modified the config.yml and set GPU again, and modified the docker compose file like below and restarted the container. But i still get the same error: |
Beta Was this translation helpful? Give feedback.
-
|
Based on your error and the kernel driver in use ( Driver Compatibility Issue Your system is using the Potential Solutions
docker exec -it frigate /opt/intel/openvino/install_dependencies/install_NEO_OCL_driver.sh --helpThis can help verify if OpenCL is properly detected.(3)
Expected Performance If you get this working, the Intel Arc A380 should provide good inference performance. Reference times for similar Arc GPUs show approximately 5-10ms inference with OpenVINO.(2) 📚 Sources:
Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
|
I've pulled the latest version and modified the docker compose file and config file as suggested @Tech4c, but i still get the error: This is the error i get: If i remove the model config i get a different error: |
Beta Was this translation helpful? Give feedback.
-
|
I was able to get it working finally! These are the things that I've done to get it working:
Below the frigate docker compose file and config files: |
Beta Was this translation helpful? Give feedback.



I was able to get it working finally! These are the things that I've done to get it working:
Below the frigate docker compose file and config files: