[Bug]: Dev branch - no supported devices found #17374
-
Checklist
Describe the problem you are havingOn dev branch, I seem to be running into this again. Have I misconfigured anything here?
Steps to reproduceDev container with the below configs Versiondev branch .16 In which browser(s) are you experiencing the issue with?No response Frigate config filedetectors:
ov:
type: openvino
device: GPU
# and other irrelevant config docker-compose file or Docker CLI commandservices:
devcontainer:
container_name: frigate-devcontainer
# add groups from host for render, plugdev, video
group_add:
- "109" # render
- "110" # render
- "44" # video
- "46" # plugdev
build:
context: .
dockerfile: docker/main/Dockerfile
# Use target devcontainer-trt for TensorRT dev
target: devcontainer
## Uncomment this block for nvidia gpu support
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: all
capabilities: [gpu]
# devices:
# - /dev/bus/usb:/dev/bus/usb # Uncomment for Google Coral USB
# - /dev/dri:/dev/dri # for intel hwaccel, needs to be updated for your hardware
shm_size: "1500mb"
environment:
- YOLO_MODELS=""
- PLUS_API_KEY=123
devices:
- /dev/dri:/dev/dri
# - /dev/apex_0:/dev/apex_0
# - /dev/apex_1:/dev/apex_1 # giving to compreface-core
cap_add:
- CAP_PERFMON
volumes:
- .:/workspace/frigate:cached
- ./web/dist:/opt/frigate/web:cached
- /etc/localtime:/etc/localtime:ro
- ./config:/config
- ./debug:/media/frigate
# - /dev/bus/usb:/dev/bus/usb # Uncomment for Google Coral USB
mqtt:
container_name: mqtt
image: eclipse-mosquitto:1.6
ports:
- "1884:1883" Relevant Frigate log outputFile "/usr/lib/python3.11/multiprocessing/process.py", line 314, in _bootstrap
self.run()
File "/workspace/frigate/frigate/util/process.py", line 41, in run_wrapper
return run(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.11/multiprocessing/process.py", line 108, in run
self._target(*self._args, **self._kwargs)
File "/workspace/frigate/frigate/object_detection.py", line 114, in run_detector
object_detector = LocalObjectDetector(detector_config=detector_config)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/workspace/frigate/frigate/object_detection.py", line 61, in __init__
self.detect_api = create_detector(detector_config)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/workspace/frigate/frigate/detectors/__init__.py", line 18, in create_detector
return api(detector_config)
^^^^^^^^^^^^^^^^^^^^
File "/workspace/frigate/frigate/detectors/plugins/openvino.py", line 56, in __init__
self.interpreter = self.ov_core.compile_model(
^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/dist-packages/openvino/runtime/ie_api.py", line 543, in compile_model
super().compile_model(model, device_name, {} if config is None else config),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
RuntimeError: Exception from src/inference/src/cpp/core.cpp:121:
Check '!m_device_map.empty()' failed at src/plugins/intel_gpu/src/plugin/plugin.cpp:383:
[GPU] Can't get OPTIMIZATION_CAPABILITIES property as no supported devices found or an error happened during devices query.
[GPU] Please check OpenVINO documentation for GPU drivers setup guide. Relevant go2rtc log outputna Operating systemDebian Install methodDocker Compose Network connectionWired Camera make and modelna Screenshots of the Frigate UI's System metrics pagesna Any other information that may be helpfulNo response |
Beta Was this translation helpful? Give feedback.
Answered by
hawkeye217
Mar 26, 2025
Replies: 2 comments 2 replies
-
We are not accepting bug reports or providing support for unreleased features on the dev branch at this time. |
Beta Was this translation helpful? Give feedback.
0 replies
-
All good, I can use CPU detection for now, was just trying to mirror my prod |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You'll want to make sure your devcontainer has access to the iGPU on the host. Sometimes this is a group permission issue, you may need to adjust the
groups
and rebuild the container. I'm running my devcontainer with an iGPU and have no issues.