mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-03 09:45:22 +03:00
Rewrit intel gpu logic
This commit is contained in:
parent
39157c9774
commit
f1607b301e
@ -797,7 +797,7 @@ def get_intel_gpu_stats() -> dict[str, str]:
|
|||||||
"""Get stats using intel_gpu_top."""
|
"""Get stats using intel_gpu_top."""
|
||||||
intel_gpu_top_command = [
|
intel_gpu_top_command = [
|
||||||
"timeout",
|
"timeout",
|
||||||
"0.1s",
|
"0.5s",
|
||||||
"intel_gpu_top",
|
"intel_gpu_top",
|
||||||
"-J",
|
"-J",
|
||||||
"-o",
|
"-o",
|
||||||
@ -817,23 +817,34 @@ def get_intel_gpu_stats() -> dict[str, str]:
|
|||||||
logger.error(p.stderr)
|
logger.error(p.stderr)
|
||||||
return None
|
return None
|
||||||
else:
|
else:
|
||||||
readings = json.loads(f"[{p.stdout}]")
|
reading = "".join(p.stdout.split())
|
||||||
results: dict[str, str] = {}
|
results: dict[str, str] = {}
|
||||||
|
|
||||||
for reading in readings:
|
# render is used for qsv
|
||||||
if reading.get("engines", {}).get("Video/0", {}).get(
|
render = []
|
||||||
"busy", 0
|
for result in re.findall('"Render/3D/0":{[a-z":\d.,%]+}', reading):
|
||||||
) or reading.get("engines", {}).get("Video/1", {}).get("busy", 0):
|
packet = json.loads(result[14:])
|
||||||
gpu_usage = round(
|
single = packet.get("busy", 0.0)
|
||||||
float(reading.get("engines", {}).get("Video/0", {}).get("busy", 0))
|
render.append(float(single))
|
||||||
+ float(
|
|
||||||
reading.get("engines", {}).get("Video/1", {}).get("busy", 0)
|
|
||||||
),
|
|
||||||
2,
|
|
||||||
)
|
|
||||||
results["gpu"] = f"{gpu_usage} %"
|
|
||||||
break
|
|
||||||
|
|
||||||
|
if render:
|
||||||
|
render_avg = sum(render) / len(render)
|
||||||
|
else:
|
||||||
|
render_avg = 1
|
||||||
|
|
||||||
|
# video is used for vaapi
|
||||||
|
video = []
|
||||||
|
for result in re.findall('"Video/\d":{[a-z":\d.,%]+}', reading):
|
||||||
|
packet = json.loads(result[10:])
|
||||||
|
single = packet.get("busy", 0.0)
|
||||||
|
video.append(float(single))
|
||||||
|
|
||||||
|
if video:
|
||||||
|
video_avg = sum(video) / len(video)
|
||||||
|
else:
|
||||||
|
video_avg = 1
|
||||||
|
|
||||||
|
results["gpu"] = round((video_avg + render_avg) / 2, 2)
|
||||||
results["mem"] = "- %"
|
results["mem"] = "- %"
|
||||||
return results
|
return results
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user