Mapika commited on
Commit
5f9c62a
·
verified ·
1 Parent(s): 615783d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +10 -2
README.md CHANGED
@@ -68,8 +68,16 @@ docker run --runtime=nvidia --gpus '"device=0,1,2,3"' --ipc=host --shm-size=32g
68
  --tool-call-parser auto --trust-remote-code --host 0.0.0.0 --port 30000
69
  ```
70
 
71
- Fits on ≥80 GB GPUs at TP=4 (~110 GB/GPU). Use a generous `max_tokens` at inference — GLM-5.2 is a
72
- reasoning model and its `<think>` chains can be long.
 
 
 
 
 
 
 
 
73
 
74
  ## Notes
75
 
 
68
  --tool-call-parser auto --trust-remote-code --host 0.0.0.0 --port 30000
69
  ```
70
 
71
+ **GPU memory.** The weights are ~410 GB, so per-GPU footprint depends on TP:
72
+
73
+ | Tensor parallel | Weights / GPU | Suitable GPUs |
74
+ |---|---|---|
75
+ | `--tp 4` | ~110 GB | ≥128 GB cards — H200 (141 GB, tight KV), B200 / B300, MI300X (192 GB) |
76
+ | `--tp 8` | ~55 GB | 80 GB cards — 8× H100 or A100-80GB |
77
+
78
+ So **80 GB GPUs need `--tp 8`, not `--tp 4`** (110 GB of weights can't fit in an 80 GB card). Lower
79
+ `--mem-fraction-static` if KV-cache space is tight. Use a generous `max_tokens` at inference — GLM-5.2 is
80
+ a reasoning model and its `<think>` chains can be long.
81
 
82
  ## Notes
83