The llama.cpp project released build b10076, which introduces a performance optimization to the CUDA backend by vectorizing the `get_rows` operation using int4 copies. This change hoists row-invariant work out of the per-element loop and adds a vectorized path that copies 16 bytes per thread for contiguous same-type data.

The implementation is gated at compile time and runtime, requiring 16-byte alignment and specific stride conditions to ensure correctness. An occupancy gate prevents regression on small single-row gathers by keeping them on the scalar path. On Strix Halo (gfx1151), this optimization reduced DeltaNet recurrent-state gather latency from 18.6us to 13.0us.

The release includes binaries for macOS, Linux, Windows, Android, and openEuler across CPU, CUDA, ROCm, Vulkan, OpenVINO, SYCL, and OpenCL backends.