MCPcopy Create free account
hub / github.com/VectorDB-NTU/RaBitQ-Library

github.com/VectorDB-NTU/RaBitQ-Library @main

Chat with this repo
repository ↗ · DeepWiki ↗ · + Follow
9,529 symbols 17,318 edges 370 files ⚖ Apache-2.0 694 documented · 7% updated 5d agov0.1.2 · 2026-08-25★ 2659 open issues

Browse by type

Functions 6,934 Types & classes 2,595
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

RaBitQ Library

C++ tests Python tests License

RaBitQ Library is a C++17 library with Python bindings for compact, accurate vector quantization and approximate nearest-neighbor search. It provides:

  • the 1-bit and multi-bit RaBitQ quantizers;
  • IVF, HNSW, and SymphonyQG indexes powered by RaBitQ;
  • Euclidean distance and inner-product search (cosine search is available by normalizing vectors before using inner product); and
  • optimized AVX2 and AVX-512 kernels with runtime CPU dispatch.

RaBitQ is developed by the VectorDB group at Nanyang Technological University, Singapore. A GPU implementation is also available in cuvs_rabitq.

Quick start

Python

Requirements

  • Python 3.9 or newer
  • a C++17 compiler
  • CMake 3.15 or newer
  • OpenMP
  • an x86-64 CPU supported by the selected kernels: most paths accept either AVX2 with FMA or AVX-512F/BW/DQ with FMA

Most SIMD entry points select AVX-512 kernels when AVX-512F, AVX-512BW, and AVX-512DQ are detected; otherwise they use AVX2 when AVX2 and FMA are available. AVX-512 VPOPCNTDQ enables additional popcount kernels. The HNSW AVX-512 core path also checks for AVX2 and FMA, and otherwise uses its AVX2 path when available. AVX-512 translation units are compiled with FMA enabled.

On Ubuntu or Debian, install the system build tools and then install RaBitQ from the repository:

sudo apt-get update
sudo apt-get install -y build-essential cmake libomp-dev

git clone https://github.com/VectorDB-NTU/RaBitQ-Library.git
cd RaBitQ-Library
python -m pip install .

The following complete example builds a small IVF index and searches it. It uses deterministic synthetic data, so no dataset download is required.

import numpy as np
from rabitqlib import IvfIndex

rng = np.random.default_rng(42)
data = rng.standard_normal((500, 64)).astype(np.float32)
queries = rng.standard_normal((5, 64)).astype(np.float32)

# Assign vectors to five clusters and calculate their centroids.
cluster_ids = (np.arange(len(data)) % 5).astype(np.uint32)
centroids = np.stack(
    [data[cluster_ids == cluster].mean(axis=0) for cluster in range(5)]
).astype(np.float32)

index = IvfIndex(
    dim=64,
    max_elements=len(data),
    num_clusters=5,
    nbits=4,
    metric="l2",
)
index.build(data, centroids, cluster_ids)

ids, distances = index.search(queries, k=10, nprobe=5)
print(ids.shape, distances.shape)  # (5, 10) (5, 10)
print(ids[0])

Python bindings are also available for HnswIndex and SymqgIndex. See the Python examples for index construction, querying, and index persistence.

C++

Requirements

  • CMake 3.15 or newer
  • a C++17 compiler with OpenMP support
  • an x86-64 CPU supported by the selected kernels: most paths accept either AVX2 with FMA or AVX-512F/BW/DQ with FMA

Most SIMD entry points select AVX-512 kernels when AVX-512F, AVX-512BW, and AVX-512DQ are detected; otherwise they use AVX2 when AVX2 and FMA are available. AVX-512 VPOPCNTDQ enables additional popcount kernels. The HNSW AVX-512 core path also checks for AVX2 and FMA, and otherwise uses its AVX2 path when available. AVX-512 translation units are compiled with FMA enabled.

Clone and build the library and example programs:

git clone https://github.com/VectorDB-NTU/RaBitQ-Library.git
cd RaBitQ-Library

cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build --parallel

Release builds enable native CPU tuning by default. To build a binary that can be moved between AVX2- and AVX-512-capable machines, configure with -DRABITQ_ENABLE_NATIVE_OPTIMIZATION=OFF; the ISA-specific kernels will still be selected at runtime.

The index example executables are written to bin/. Their source code shows the complete indexing and querying workflows:

A separate RaBitQ quantization example demonstrates the lower-level quantizer API; it is provided as source and is not currently a CMake target.

To build and run the C++ test suite:

cmake -S . -B build -DRABITQ_BUILD_TESTS=ON -DCMAKE_BUILD_TYPE=Release
cmake --build build --parallel
ctest --test-dir build --output-on-failure

GoogleTest is downloaded during test configuration. For a full benchmark on the GIST dataset, see example.sh. More detailed API and algorithm guidance is available in the documentation.

Contributing

Contributions are welcome. See the contributing guide for the build, formatting, pre-commit, and static-analysis workflows.

Why RaBitQ?

  • High accuracy with tiny codes. RaBitQ provides state-of-the-art similarity estimation across different bit widths and remains effective with a one-bit code per padded dimension plus per-vector factors.
  • Fast distance estimation. IVF and SymphonyQG use FastScan for batched estimates, while HNSW uses single-code AVX2 or AVX-512 kernels.
  • Theoretical error bounds. RaBitQ provides an asymptotically optimal error bound that can support reliable ordering and reranking.
  • Multiple index trade-offs. IVF stores quantized codes without the raw dataset. HNSW adds graph links but also searches from quantized codes. SymphonyQG retains raw vectors and stores per-neighborhood quantization data to improve its access pattern.

In typical workloads, 4-bit, 5-bit, and 7-bit quantization can achieve roughly 90%, 95%, and 99% recall, respectively, without reranking. Actual results depend on the dataset, index configuration, and search parameters.

RaBitQ in industry

RaBitQ has been adopted by vector databases, search engines, and libraries:

Citation

If RaBitQ helps your research or system, please cite:

Jianyang Gao, Yutong Gou, Yuexuan Xu, Yongyi Yang, Cheng Long, and Raymond Chi-Wing Wong. “Practical and Asymptotically Optimal Quantization of High-Dimensional Vectors in Euclidean Space for Approximate Nearest Neighbor Search.” SIGMOD 2025. arXiv:2409.09913.

Acknowledgements

RaBitQ Library is developed by Yutong Gou, Jianyang Gao, Yuexuan Xu, Jifan Shi, and Zhonghao Yang. We thank Alexandr Guzhva, Li Liu, Chao Gao, Silu Huang, Jiabao Jin, Xiaoyao Zhong, and Jinjing Zhou for their valuable feedback.

License

RaBitQ Library is available under the Apache License 2.0.

Core symbols most depended-on inside this repo

browse all functions →

Shape

Function 3,495
Method 3,439
Class 2,556
Enum 39

Languages

C++100%
Python1%

Modules by API surface

include/rabitqlib/third/Eigen/src/Core/arch/NEON/PacketMath.h773 symbols
include/rabitqlib/third/Eigen/src/Core/arch/NEON/TypeCasting.h283 symbols
include/rabitqlib/third/Eigen/src/Core/arch/AltiVec/PacketMath.h281 symbols
include/rabitqlib/third/Eigen/src/Core/arch/AVX512/PacketMath.h210 symbols
include/rabitqlib/third/Eigen/src/Core/MathFunctions.h193 symbols
include/rabitqlib/third/Eigen/src/Core/arch/AVX/PacketMath.h192 symbols
include/rabitqlib/third/Eigen/src/Core/functors/UnaryFunctors.h191 symbols
include/rabitqlib/third/Eigen/src/Core/arch/SSE/PacketMath.h190 symbols
include/rabitqlib/third/Eigen/src/Core/util/Meta.h184 symbols
include/rabitqlib/third/Eigen/src/Core/util/ForwardDeclarations.h173 symbols
include/rabitqlib/third/Eigen/src/Core/arch/GPU/PacketMath.h166 symbols
include/rabitqlib/third/Eigen/src/Core/CoreEvaluators.h140 symbols

For agents

$ claude mcp add RaBitQ-Library \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page