What changed
10 builds shipped on July 16 (b10038–b10050). Three are technically meaningful for inference workloads.
| Build | UTC | Change |
|-------|-----|--------|
| b10050 | 20:08 | Vulkan: fix race condition in async transfer queue (sync on event_wait) |
| b10048 | 19:22 | Model compat: fix Phi3, BERT, Plamo2/3, ChatGLM loading issues |
| b10043 | 14:02 | CUDA: Support CUDA Virtual Devices with NCCL path adjustments |
| b10042 | 11:23 | CUDA: Enable CUDA graphs on Volta + Turing architectures |
| b10041 | 10:37 | Server: ignore empty / non-existing Origin headers (reduces log spam) |
| b10040 | 09:55 | HIP/ROCm: restored integrated GPU property for AMD devices |
| b10038 | 06:57 | Docs: add official website link to release notes |
TL;DR
b10042 brings CUDA graph support to Volta and Turing architectures (V100, T4, RTX 2080 Ti, and similar), which can meaningfully reduce kernel dispatch overhead for repetitive inference workloads — no specific benchmark numbers published, but CUDA graphs consistently reduce dispatch latency in comparable projects.
Developer signal
Three builds worth attention: (1) b10042 — CUDA graphs on Volta+Turing: CUDA graphs batch GPU operations for repeated workloads, reducing CPU-side dispatch overhead. Previously, CUDA graphs in llama.cpp required Ampere or newer. If you're running V100 (cloud) or T4 (GCP n1-standard / AWS g4dn instances) or RTX 20xx consumer cards, upgrade to b10042+ and benchmark your throughput — the gain will be workload-dependent, highest for repetitive generation patterns. (2) b10043 — CUDA Virtual Devices: Adds support for CUDA virtual device abstractions with NCCL path handling. Relevant primarily if you're working with multi-GPU setups that use virtual device assignment. (3) b10050 — Vulkan async race fix: If you use the Vulkan backend and have seen intermittent corruption or hangs with transfer queue operations, b10050 is a correctness fix — upgrade before the race manifests in production. Bonus: b10048 fixes model loading for Phi-3, BERT, Plamo2, Plamo3, and ChatGLM; if any of these were failing to load, upgrade.