AI Explained

Plain explanations of trending AI concepts, with live visualizations.

GPU

Atrex-Bench tests LLM-written kernels on production traces — Trace-weighted kernel benchmarking — What does it mean?

A kernel benchmark that samples operators and shapes from real serving traces and weights each one by the GPU time it actually burns.

GPU

vLLM 0.25.1 stops a fused kernel from corrupting NVFP4 models — Mixed-dtype quant-fusion guard — What does it mean?

vLLM 0.25.1 adds a dtype check so a fused allreduce+RMSNorm+quant kernel stops silently corrupting mixed-precision NVFP4 models.

GPU

FastTPS fuses token-phase LLM inference on AI accelerators — Reloading-free KV-cache concatenation — What does it mean?

FastTPS runs LLM decode without recopying the KV cache to append: tiled attention then hits 93% peak memory bandwidth, 6× faster on an NPU.

GPU

NVIDIA frames Vera CPU around fast agent steps — The agent-step CPU bottleneck — What does it mean?

NVIDIA argues an agent step spends real time on serial CPU work between GPU calls, so Vera targets max single-thread speed to keep GPUs from idling.

GPU

OpenAI and Broadcom's Jalapeño, a custom inference ASIC — Inference ASIC vs GPU — What does it mean?

OpenAI and Broadcom's Jalapeño runs LLM inference only, trading a GPU's flexibility for a shorter, faster path from memory to compute.

GPU

UFP4 fixes FP4 pretraining's shrinkage bias — E2M1 shrinkage bias — What does it mean?

E2M1's lopsided 4-bit bins round values toward zero — a shrinkage bias UFP4 fixes with a Hadamard transform + stochastic rounding.

GPU

NVIDIA Blackwell sweeps MLPerf Training 6.0 — Strong scaling — What does it mean?

Strong scaling asks if 2× the GPUs really halves training time. MLPerf 6.0: 8,192 Blackwell GPUs trained DeepSeek-V3 671B to target in 2.02 min.

GPU

INT8 finally beats FP8 on consumer GPUs — Fused INT8 GEMM kernel — What does it mean?

A fused Triton kernel keeps INT8 matmuls on the tensor cores end to end, so W8A8 finally beats FP8 on a consumer GPU — no dequant round trip.

GPU

NVIDIA RTX Spark superchip — Unified CPU–GPU memory — What does it mean?

RTX Spark wires a Grace CPU and a Blackwell GPU to one 128GB pool over NVLink-C2C, so the GPU skips the PCIe host–device copy.

GPU

NVIDIA AI Factories — Tokens-per-megawatt as a serving metric — What does it mean?

NVIDIA's 'AI Factories' framing reorganizes datacenter economics around tokens per megawatt — bundling compute, memory, interconnect, and orchestration into one billable knob and claiming ~50× tokens/MW for Blackwell Ultra GB300 NVL72 vs Hopper.

GPU

NVIDIA Jetson Thor — Edge Blackwell vs datacenter Blackwell — What does it mean?

Jetson Thor is NVIDIA's Blackwell-architecture edge AI module — 2,070 FP4 TFLOPS in a 40–130W envelope, reportedly 7.5× compute and 3.5× per-watt vs Jetson Orin (Computex 2026).

GPU

I/O-optimal approximate attention — Near-linear I/O vs FlashAttention — What does it mean?

A new paper derives approximate-attention algorithms whose I/O between SRAM and HBM scales near-linearly in sequence length n — vs FlashAttention's quadratic n² — with matching I/O lower bounds proving the result is near-optimal.