From 981ed588fe938f9da1e3b78a581effc1a90bc722 Mon Sep 17 00:00:00 2001 From: Xuehai Pan Date: Wed, 20 May 2026 14:21:42 +0800 Subject: [PATCH] style(examples/monitor-web): rename `Mem BW` to `GMBW` and `Memory` to `GMEM` Aligns the per-GPU row labels with the `nvidia-smi`/nvtop convention of G-prefixed mnemonics, and disambiguates them from host-scoped metrics (`Host: CPU/Memory/Swap`) in the footer. --- examples/monitor-web/monitor_web.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/monitor-web/monitor_web.html b/examples/monitor-web/monitor_web.html index 5a68ae9..072a96e 100644 --- a/examples/monitor-web/monitor_web.html +++ b/examples/monitor-web/monitor_web.html @@ -241,8 +241,8 @@ card.appendChild(title); card.appendChild(makeRow("GPU", "util", true)); - card.appendChild(makeRow("Mem BW", "membw", true)); - card.appendChild(makeRow("Memory", "mem", true)); + card.appendChild(makeRow("GMBW", "membw", true)); + card.appendChild(makeRow("GMEM", "mem", true)); card.appendChild(makeRow("Temp", "temp", false)); card.appendChild(makeRow("Fan", "fan", false)); card.appendChild(makeRow("Power", "power", false));