AI Infrastructure Index
AI infrastructure, from storage to token
Section titled “AI infrastructure, from storage to token”AI serving performance is a pipeline property. Model quality may dominate product value, but storage, network, host memory, accelerator memory, runtime scheduling, and cache policy determine whether the system can serve reliably.
| Layer | Core question | Operate it |
|---|---|---|
| GPU memory | What competes for accelerator capacity? | GPU Memory Planner |
| KV cache | How do live tokens trade compute for memory? | KV baseline CLI |
| RAG storage | What is the source, chunk, vector, index, and replica footprint? | RAG Storage Sizer |
| AI data path | Which stage limits training or inference movement? | AI Data Path Lab |
| NVMe queues | Does concurrency expose performance or create delay? | NVMe Queue Lab |
Serving memory equation
Section titled “Serving memory equation”resident weights+ KV cache for aggregate live tokens+ activation peaks+ kernel / collective / graph workspace+ allocator reserve and fragmentation= required per-rank memoryTriage order
Section titled “Triage order”- Establish the exact workload: model revision, precision, prompt/output distribution, concurrency, and latency target.
- Measure cold load, prefill, decode, and sustained traffic separately.
- Inspect every rank and every data-path stage instead of relying on aggregate capacity.
- Change one constraint at a time and verify throughput, latency, quality, and failure behavior.