agent-substrate / agent-substrate/substrate

Snapshot/restore for GPU actors (suspend/resume with a live CUDA context)

未關閉
#779 3 則留言 0 個 reaction 已指派 1 人 已被 @eliranw 認領 在 GitHub 檢視
area/gvisor area/microVM kind/feature
主要語言
Go
星號
1.8k
分支
316
平均合併
2 天 43 分鐘
30 天內合併 PR
287

描述

## Goal
Let a GPU actor suspend and resume while the workload is holding a CUDA context. Follow-up to the "Snapshot/restore with GPU out of scope" note in #627.

## What happens today (gVisor)
A Full-scope snapshot of an actor with a live CUDA context fails in runsc:

```
FATAL ERROR: checkpoint failed: checkpointing container "pause":
encoding error: can't save with live nvproxy clients
```

The sandbox dies with it, so retries get `cannot checkpoint container "pause" in state stopped`. The actor ends up in STATUS_SUSPENDING, which you can't delete from, holding its worker. Same as #50.

## Suggested approach (gVisor)
runsc already supports NVIDIA's cuda-checkpoint, which moves device memory to host and releases the GPU before saving. I tested it on a T4 with the runsc we pin (release-20260622.0): copied the binary into a running actor's rootfs and ran `runsc checkpoint -cuda-checkpoint-path /cuda-checkpoint` by hand. It went through, 301 MB of image files, no nvproxy error, workload still running after.

1. Get cuda-checkpoint into the actor. The flag wants a path inside the container, so it can ride the CDI mounts we already inject.
2. Pass `-cuda-checkpoint-path` in `cmdCheckpoint` (`cmd/ateom-gvisor/runsc.go`).
3. Restore needs nothing. gVisor replays the setting from the checkpoint image.

## Micro-VM
Micro-VM actors don't have GPU support yet (#762), but the snapshot story should be settled before that lands, because it may constrain the design.

Need more exploration in this area.

## Known costs / open issues
- **The binary isn't in the driver or the toolkit.** It's in-tree at `NVIDIA/cuda-checkpoint` under `bin/x86_64_Linux/`, no releases. About 6 KB, dynamically linked, so the actor image needs a loader. Same constraint that stopped distroless ateom from running nvidia-ctk.
- **Golden snapshots are always Full**, regardless of onPause/onCommit, since a data-only golden leaves nothing to restore the guest from. So a template holding a context at golden-snapshot time is affected either way.

Related: #627, #502, #762

貢獻指南

開啟貢獻指南

評估

這個 Issue 還沒有評估資料。

把新 issue 寄到你的電子郵件信箱

精選適合新手參與的 GitHub issue 摘要。