From c97975eb19768f1566c6cfad939209ac6b369101 Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Sat, 24 Sep 2022 18:23:55 -0600 Subject: [PATCH] Fix vram --- frigate/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/util.py b/frigate/util.py index 287d32008..5a973d8cc 100755 --- a/frigate/util.py +++ b/frigate/util.py @@ -761,7 +761,7 @@ def get_amd_gpu_stats() -> dict[str, str]: if "gpu" in hw: results["gpu_usage"] = hw.strip().split(" ")[1] elif "vram" in hw: - results["gpu_usage"] = hw.strip().split(" ")[1] + results["memory_usage"] = hw.strip().split(" ")[1] return results