English

QuadRank: Engineering a High Throughput Rank

Data Structures and Algorithms 2026-04-02 v2

Abstract

Given a text, a query rank(q,c)\mathsf{rank}(q, c) counts the number of occurrences of character cc among the first qq characters of the text. Space-efficient methods to answer these rank queries form an important building block in many succinct data structures. For example, the FM-index is a widely used data structure that uses rank queries to locate all occurrences of a pattern in a text. In bioinformatics applications, the goal is usually to process a given input as fast as possible. Thus, data structures should have high throughput when used with many threads. Contributions. For the binary alphabet, we develop BiRank with 3.28% space overhead. It merges the central ideas of two recent papers: (1) we interleave (inline) offsets in each cache line of the underlying bit vector [Laws et al., 2024], reducing cache-misses, and (2) these offsets are to the middle of each block so that only half of them need popcounting [Gottlieb and Reinert, 2025]. In QuadRank (14.4% space overhead), we extend these techniques to the σ=4\sigma=4 (DNA) alphabet. Both data structures require only a single cache miss per query, making them highly suitable for high-throughput and memory-bound settings. To enable efficient batch-processing, we support prefetching the cache lines required to answer upcoming queries. Results. BiRank and QuadRank are around 1.5×1.5\times and 2×2\times faster than similar-overhead methods that do not use inlining. Prefetching gives an additional 2×2\times speedup, at which point the dual-channel DDR4 RAM bandwidth becomes a hard limit on the total throughput. With prefetching, both methods outperform all other methods apart from SPIDER [Laws et al., 2024] by 2×2\times. When using QuadRank with prefetching in a toy count-only FM-index, QuadFm, this results in a smaller size and up to 4×4\times speedup over Genedex, a state-of-the-art batching FM-index implementation.

Keywords

Cite

@article{arxiv.2602.04103,
  title  = {QuadRank: Engineering a High Throughput Rank},
  author = {R. Groot Koerkamp},
  journal= {arXiv preprint arXiv:2602.04103},
  year   = {2026}
}

Comments

SEA-2026; 23 pages; 8 figures

R2 v1 2026-07-01T09:35:12.613Z