fix(2.0): GPU-Metrik findet Strix-Halo-Card dynamisch (card1) + GTT

Real-Box-Befund: GPU ist card1 (nicht hardcoded card0), Connector-Dirs
uebersprungen. Zusaetzlich GTT (echter Unified-Memory-Pool) statt nur
VRAM-Carve-out. Frontend zeigt GTT bevorzugt.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Hitonabi
2026-06-25 08:33:29 +02:00
parent 1b332f86e6
commit 2e6655c398
5 changed files with 38 additions and 21 deletions
+5 -3
View File
@@ -74,9 +74,11 @@ export function SystemView() {
label="GPU"
percent={s.gpu.busy_percent}
detail={
s.gpu.vram_used != null && s.gpu.vram_total != null
? `${gb(s.gpu.vram_used)} / ${gb(s.gpu.vram_total)} GB VRAM`
: undefined
s.gpu.gtt_used != null && s.gpu.gtt_total
? `${gb(s.gpu.gtt_used)} / ${gb(s.gpu.gtt_total)} GB (GTT/unified)`
: s.gpu.vram_used != null && s.gpu.vram_total
? `${gb(s.gpu.vram_used)} / ${gb(s.gpu.vram_total)} GB VRAM`
: undefined
}
/>
)}