fix(distributed): correct VRAM/RAM reporting on NVIDIA unified-memory hosts - #9545
Merged
Conversation
… hosts Workers on NVIDIA unified-memory hardware (DGX Spark / GB10, Jetson AGX Thor, Jetson Orin/Xavier/Nano) were reporting `available_vram=0` back to the frontend, so the Nodes UI showed the node as fully used even when most of the unified memory was actually free. Three causes addressed: * `isTegraDevice` only matched `/sys/devices/soc0/family == "Tegra"`. DGX Spark (SBSA) reports JEDEC codes there instead — `jep106:0426` for the NVIDIA manufacturer — so the Tegra/unified-memory fallback never ran. Renamed to `isNVIDIAIntegratedGPU` and extended to also match `jep106:0426[:*]` via `/sys/devices/soc0/soc_id`. * The unified-iGPU code defaulted the device name to `"NVIDIA Jetson"` when `/proc/device-tree/model` was missing. That's what happens for Thor inside a docker container, and always on DGX Spark. New `nvidiaIntegratedGPUName` resolves via dt-model → `/sys/devices/soc0/machine` → `soc_id` lookup (`jep106:0426:8901` → `"NVIDIA GB10"`) so the Nodes UI labels the box correctly. * Worker heartbeat sent `available_vram=0` (or total-as-available) when VRAM usage was momentarily unknown — e.g. when `nvidia-smi` intermittently failed with `waitid: no child processes` under containers without `--init`. Each such heartbeat overwrote the DB and made the UI flip to "fully used". `heartbeatBody` now omits `available_vram` in that case so the DB keeps its last good value. Also updates the commented GPU blocks in both compose files with `NVIDIA_DRIVER_CAPABILITIES=compute,utility`, `capabilities: [gpu, utility]`, and `init: true`, and documents the requirement in the distributed-mode and nvidia-l4t pages. Without `utility`, NVML/`nvidia-smi` are absent inside the container, which is what put the DGX Spark worker into the buggy fallback in the first place. Detection verified on live hardware (dgx.casa / GB10 and 192.168.68.23 / Thor) by running a cross-compiled probe of the new helpers on both host and inside the worker container. Assisted-by: Claude:opus-4.7 [Claude Code]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Workers on NVIDIA unified-memory hardware (DGX Spark / GB10, Jetson AGX Thor, Jetson Orin/Xavier/Nano) were reporting
available_vram=0back to the frontend, so the Nodes UI showed the node as fully used even when most of the unified memory was actually free.Three causes addressed:
isTegraDeviceonly matched/sys/devices/soc0/family == "Tegra". DGX Spark (SBSA) reports JEDEC codes there instead —jep106:0426for the NVIDIA manufacturer — so the Tegra/unified-memory fallback never ran. Renamed toisNVIDIAIntegratedGPUand extended to also matchjep106:0426[:*]via/sys/devices/soc0/soc_id.The unified-iGPU code defaulted the device name to
"NVIDIA Jetson"when/proc/device-tree/modelwas missing. That's what happens for Thor inside a docker container, and always on DGX Spark. NewnvidiaIntegratedGPUNameresolves via dt-model →/sys/devices/soc0/machine→soc_idlookup (jep106:0426:8901→"NVIDIA GB10") so the Nodes UI labels the box correctly.Worker heartbeat sent
available_vram=0(or total-as-available) when VRAM usage was momentarily unknown — e.g. whennvidia-smiintermittently failed withwaitid: no child processesunder containers without--init. Each such heartbeat overwrote the DB and made the UI flip to "fully used".heartbeatBodynow omitsavailable_vramin that case so the DB keeps its last good value.Also updates the commented GPU blocks in both compose files with
NVIDIA_DRIVER_CAPABILITIES=compute,utility,capabilities: [gpu, utility], andinit: true, and documents the requirement in the distributed-mode and nvidia-l4t pages. Withoututility, NVML/nvidia-smiare absent inside the container, which is what put the DGX Spark worker into the buggy fallback in the first place.Detection verified on live hardware by running a cross-compiled probe of the new helpers on both host and inside the worker container.
Assisted-by: Claude:opus-4.7 [Claude Code]