From 5ad641676427ac88da705486dd69381c50953083 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Tue, 16 Dec 2025 09:32:50 -0700 Subject: [PATCH] Exclude D-FINE from using CUDA Graphs --- frigate/detectors/detection_runners.py | 1 + 1 file changed, 1 insertion(+) diff --git a/frigate/detectors/detection_runners.py b/frigate/detectors/detection_runners.py index 89ebb35eb..56b49ec67 100644 --- a/frigate/detectors/detection_runners.py +++ b/frigate/detectors/detection_runners.py @@ -170,6 +170,7 @@ class CudaGraphRunner(BaseModelRunner): return model_type not in [ ModelTypeEnum.yolonas.value, + ModelTypeEnum.dfine.value, EnrichmentModelTypeEnum.paddleocr.value, EnrichmentModelTypeEnum.jina_v1.value, EnrichmentModelTypeEnum.jina_v2.value,