From 41c8d6cc6b0097b3ff855a52b6484edf8f6603a5 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Mon, 24 Aug 2026 15:57:52 -0600 Subject: [PATCH] Set GPU_QUEUE_THROTTLE to low (#24088) --- frigate/detectors/detection_runners.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frigate/detectors/detection_runners.py b/frigate/detectors/detection_runners.py index a998b449ba..0ad6cfa255 100644 --- a/frigate/detectors/detection_runners.py +++ b/frigate/detectors/detection_runners.py @@ -314,6 +314,12 @@ class OpenVINOModelRunner(BaseModelRunner): if device in ["GPU", "AUTO", "NPU"]: self.ov_core.set_property(device, {"PERFORMANCE_HINT": "LATENCY"}) + if device in ["GPU", "AUTO"]: + try: + self.ov_core.set_property("GPU", {"GPU_QUEUE_THROTTLE": "LOW"}) + except Exception as e: + logger.debug(f"GPU_QUEUE_THROTTLE not supported: {e}") + if device == "NPU" and OpenVINOModelRunner.is_detection_model(model_type): try: self.ov_core.set_property(device, {"NPU_TURBO": "YES"})