#GPU(11)

August 2026
#AI #LLM #GPU #Inference #Python

How Continuous Batching Speeds Up LLM Serving

A naive LLM server holds finished slots idle until the slowest request in the batch drains. Continuous batching refills them every step. How it works.

Read more →
August 2026
#Kubernetes #GPU #DevOps #MLOps #LLM

Scheduling GPU Pods on Kubernetes

A GPU node won't run your Pods until a device plugin advertises it. How Kubernetes discovers GPUs, how to share one across Pods, and where scheduling breaks.

Read more →
August 2026
#AI #LLM #GPU #Inference #Performance

Speculative Decoding: Faster LLM Inference

Speculative decoding uses a small draft model to guess tokens a big model verifies in one parallel pass, cutting LLM latency with no change to output.

Read more →
August 2026
#AI #LLM #GPU #Inference #Python

Prefill vs Decode: Two Phases of LLM Inference

The first token is slow, the rest stream fast. Why LLM inference splits into a compute-bound prefill and a memory-bound decode, and what it costs you.

Read more →
August 2026
#AI #LLM #GPU #Inference #vLLM

How PagedAttention Powers vLLM's KV Cache

A self-hosted LLM server wastes most of its GPU memory to KV cache fragmentation. Here is how PagedAttention in vLLM pages the cache like an OS.

Read more →
August 2026
#AI #LLM #GPU #Inference #Transformers

How Grouped-Query Attention Shrinks the KV Cache

Grouped-query attention shares key/value heads across query heads to cut the KV cache. How GQA sits between MHA and MQA, with the memory math and code.

Read more →
August 2026
#AI #LLM #GPU #Inference #Python

How FlashAttention Speeds Up the Attention Layer

Attention is memory-bound, not compute-bound. Here's how FlashAttention uses tiling and online softmax to skip the N×N matrix and run exact attention faster.

Read more →
July 2026
#AI #LLM #GPU #Quantization #Inference

LLM Quantization: INT8, GPTQ, and AWQ Explained

The weights don't fit on the GPU you have. How LLM quantization shrinks them to INT8 or INT4, why GPTQ and AWQ beat naive rounding, and where it breaks.

Read more →
July 2026
#AI #LLM #GPU #Inference #Performance

How Speculative Decoding Speeds Up LLM Inference

Speculative decoding uses a small draft model to guess tokens a big model verifies in one pass, cutting LLM latency 2-3x without changing the output.

Read more →
July 2026
#AI #LLM #GPU #Inference #Serving

Continuous Batching for LLM Inference

Static batching leaves the GPU idle when requests finish at different steps. How continuous batching schedules LLM inference per token to raise throughput.

Read more →
July 2026
#AI #LLM #GPU #Inference #Python

LLM KV Cache: Why GPU Memory Runs Out

A long prompt or a long agent run can hit CUDA out of memory, and the KV cache is usually why. How it grows, the per-token math, and how to shrink it.

Read more →