inferencellm

Prefill vs generation, compute bound vs memory bound

Chunked Prefill (for batched inference)

Split up the prefill compute into chunks to reduce the units of work so that large prefills do not interfere with other request doing generation in the same batch

KV Cache

Grouped Query Attention

Less Keys and Values, to reduce Key Value Cache

Paged Attention

Avoid padding out samples with fixed size blocks, use proper paging, split up samples across smaller pages

Sliding Window Attention Rolling Buffer KV Cache

Cross Layer KV Cache Sharing

StreamingLLM

See Long Context Transformers

Prompt / Prefix Caching

Cache KV cache for common prefixes

Low Precision and Compression

Use bf16, float8, int8 or smaller dtypes like int4 to save memory

Speculative Decoding

Dynamic Speculative Decoding

Prefix Caching

Continuous Batching / Inflight Batching

Flash Attention

Mixture of Experts

Reduce compute, skipping experts

Quantization

Structured Decoding / Generation

LLM Routing

Predict best (speed / cost / expert) model for given request and route based on that

Metrics

Time to First Token

Inter Token Latency