Papers › EVA: Accelerating LLM Decoding via an Efficient Vector Quantization Architecture

EVA: Accelerating LLM Decoding via an Efficient Vector Quantization Architecture

22 May 2026arXiv:2605.24144added by Syntology

Bowen Duan, Cong Guo, Chiyue Wei, Haoxuan Shan, Yuzhe Fu, Xinhua Chen, Yifan Xu, Ziyue Zhang, Changchun Zhou, Hai Li, Yiran Chen

Title, abstract, authors and date from arXiv's metadata (CC0); this paper is not in the Papers with Code archive (frozen 2025-07-28).

Large Language Models (LLMs) have achieved impressive performance across diverse domains but remain inefficient during the autoregressive decoding phase. Unlike the prefill stage, which employs compute-bound GEMM operations, decoding executes a sequence of small GEMV-like computations that are memory-bound and underutilize modern accelerators. Weight-only vector quantization (VQ) has emerged as an effective compression technique that clusters model weights into a shared codebook and replaces the original weight matrix with low-precision indices, enabling 2-bit-level weight compression. While this approach substantially reduces model size and memory bandwidth, it still suffers from two critical inefficiencies: the low utilization of GEMV computation and frequent memory conflicts during codebook lookups. This paper presents EVA, an efficient vector-quantization-based architecture that addresses both computational and memory bottlenecks in LLM decoding. EVA builds on a simple yet effective insight that combines input-codebook computation with conflict-free memory access. Instead of reconstructing quantized weights from indices, EVA directly performs dot products between input vectors and the weight codebook, transforming LLM decoding from GEMV to GEMM computation. It then performs structured lookups from an intermediate output buffer, eliminating memory bank conflicts. We further design a hardware-software co-optimized architecture specialized for LLM decoding while remaining compatible with conventional prefill execution. Evaluations show that EVA achieves up to 11.17× speedup and 7.17× higher energy efficiency compared with the SOTA lookup-based architecture, while preserving arithmetic precision after vector quantization. Our code is available at https://github.com/dbw6/Eva.git.

PaperPDFCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2605.24144")

Code

Syntology Ran 9 of 13 code samples harvested from 1 repository linked to this paper; 4 have no recorded run. Of those that ran: 9 ran with no contract checked.

By repository: found in paper text by Syntology: 13 samples from 1 repository, 9 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

dbw6/Eva found in paper text by Syntology report

Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

13 samples harvested; 9 ran; 0 honoured the contract we drafted; 4 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

9ran
4unverified

Licence: 0 of the 13 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from dbw6/Eva. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

compute_average_index_counts dbw6/Eva/simulator/aqlm_analysis.py found in paper text by Syntology ran MIT (permissive) · 60eaa38c50c59a9b · report
extract_weight_indices dbw6/Eva/simulator/aqlm_analysis.py found in paper text by Syntology ran MIT (permissive) · 1fce10211e64cfff · report
fit_faiss_kmeans dbw6/Eva/algorithm/src/kmeans.py found in paper text by Syntology ran MIT (permissive) · 81f3ffa3b24921b4 · report
is_model_for_causal_lm dbw6/Eva/algorithm/src/modelutils.py found in paper text by Syntology ran MIT (permissive) · a4b3eb2d0a0ea0d4 · report
load_yaml dbw6/Eva/simulator/config.py found in paper text by Syntology ran MIT (permissive) · 170f525d725f54b6 · report
load_yaml_directory dbw6/Eva/simulator/config.py found in paper text by Syntology ran MIT (permissive) · 3ad03bb7784f1436 · report
maybe_get_0th_element dbw6/Eva/algorithm/src/utils.py found in paper text by Syntology ran fingerprinted MIT (permissive) · 681820c06d56adbd · report
resolve_repo_path dbw6/Eva/simulator/config.py found in paper text by Syntology ran MIT (permissive) · 8ddb42ef2b21568b · report
traces_from_lengths dbw6/Eva/simulator/datasets.py found in paper text by Syntology ran MIT (permissive) · 66c1130f2c759f58 · report
get_mean_nbits_by_codebook dbw6/Eva/algorithm/src/utils.py found in paper text by Syntology unverified MIT (permissive) · aebbe1775db58c48 · report
load_aqlm_model dbw6/Eva/algorithm/model_loader.py found in paper text by Syntology unverified MIT (permissive) · a2ef1e1285e2c83a · report
load_quantized_model dbw6/Eva/simulator/aqlm_analysis.py found in paper text by Syntology unverified MIT (permissive) · 1c28ff61d7b14b57 · report
maybe_script dbw6/Eva/algorithm/src/utils.py found in paper text by Syntology unverified MIT (permissive) · e546469491f4fb36 · report

Results from the paper

The Papers with Code archive ends with its 2025-07-28 snapshot. This paper's arXiv identifier, 2605.24144, was issued in May 2026, after that date, so the archive has no leaderboard rows for it.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections