惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 聂微东
GbyAI
GbyAI
G
Google Developers Blog
大猫的无限游戏
大猫的无限游戏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 叶小钗
A
About on SuperTechFans
M
MIT News - Artificial intelligence
宝玉的分享
宝玉的分享
雷峰网
雷峰网
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Martin Fowler
Martin Fowler
Google DeepMind News
Google DeepMind News
博客园 - Franky
B
Blog RSS Feed
Y
Y Combinator Blog
Stack Overflow Blog
Stack Overflow Blog
MongoDB | Blog
MongoDB | Blog
Last Week in AI
Last Week in AI
T
The Blog of Author Tim Ferriss
The GitHub Blog
The GitHub Blog
S
SegmentFault 最新的问题
罗磊的独立博客
Apple Machine Learning Research
Apple Machine Learning Research

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
sparsemap
gregburd · 2026-05-19 · via Hacker News: Show HN

This is a C99 implementation of a sparse, compressed bitmap index. In the best case, it can store 2048 bits in just 8 bytes. In the worst case, it stores the 2048 bits uncompressed and requires an additional 8 bytes of overhead.

CI Pages License: MIT

A sparse, compressed bitmap library for C. Optimized for workloads with long runs of consecutive set or unset bits.

Why sparsemap

Bitmaps are great when bits are dense and the universe is small. They get expensive when either assumption fails — a 32-bit universe needs 512 MB just to hold one bit per integer, even if only a dozen are set.

Sparsemap stores only the chunks that contain actual data. In each chunk it picks one of two encodings depending on the local pattern:

  • Sparse encoding stores a 64-bit descriptor and only the bit vectors that contain a mix of set and unset bits. Uniform vectors (all-zero or all-one) take zero payload.
  • RLE encoding stores a single 64-bit descriptor for a contiguous run of set bits. A 2-billion-bit run takes 8 bytes.

Best case: 16 KB of consecutive set bits in 8 bytes. Worst case (random bits): identical to a raw bitmap plus 8 bytes of overhead.

When to use sparsemap

Good fit:

  • PostgreSQL extensions tracking TID sets, bitmap heap scans, posting lists.
  • Trigram / n-gram indexes where document identifiers cluster.
  • Allocation bitmaps for storage engines (free-list tracking).
  • Anywhere you'd reach for CRoaring but want a smaller, simpler library and don't need 32-bit integer support out of the box.

Not a fit:

  • Multi-threaded workloads: sparsemap is not thread-safe. A lock-free / wait-free variant is in design (see experiment/thread-safe).
  • 32-bit integer universes: sparsemap uses 64-bit indices.

Quick start

nix develop                              # optional dev shell
meson setup builddir
ninja -C builddir
ninja -C builddir test

Or with the Makefile wrapper:

make build
make test

Use it from C:

#include <sparsemap/sm.h>

sm_t *map = sm_create(4096);
sm_add(map, 42);
sm_add(map, 1024);
assert(sm_contains(map, 42));
assert(sm_cardinality(map) == 2);
sm_free(map);

Documentation

API docs (Doxygen) are published to gregburd.codeberg.page/sparsemap/.

Build options

meson setup builddir -Ddiagnostic=true   # enable __sm_assert + invariant checks
meson setup builddir -Db_sanitize=address  # ASan
meson setup builddir -Dbuildtype=release   # production: no asserts, max optimization

See meson_options.txt for the full list.

Consumers

Sparsemap is vendored by:

  • pg_tre — PostgreSQL trigram search extension.
  • postgres/undo — EnterpriseDB's PostgreSQL undo-log fork.

contrib/pg_tre_sync.sh and contrib/postgres_undo_sync.sh keep the vendored copies in sync with upstream.

Vendoring and symbol prefixing

The library is exactly two files, sm.h and sm.c; vendoring is a two-file copy. If you need two independently-vendored copies of sparsemap to coexist in one binary, rename every public symbol by defining SPARSEMAP_PREFIX before including the header:

#define SPARSEMAP_PREFIX myapp_
#include <sparsemap/sm.h>

myapp_sm_t *m = myapp_sm_create(4096);   /* renamed */
myapp_sm_add(m, 42);

Every public function and type picks up the prefix at both declaration and call sites (Berkeley DB --with-uniquename style). Compile-time macros (SM_IDX_MAX, the SM_VERSION_* values, enum constants) and the serialized wire format are unaffected.

Versioning and history

Releases follow SemVer. 3.0.0 is the first formal public release. The pre-3.0 development history (the library grew up vendored inside other projects) is preserved on the archive/v2.3.0 tag for archaeology; the published history starts clean at 3.0.0.

API stability vs ABI stability

Sparsemap promises source-level API stability within a major version: function signatures, macro names, and behavior of public sm_* symbols do not change in a way that breaks compiling consumer code.

Sparsemap does not promise ABI stability of the struct sparsemap layout. sizeof(sm_t) and the offsets of its fields may change in any minor release. Consumers must:

  • Always allocate sm_t via sm_create(), sm_create_with_allocator(), or sm_wrap() -- never embed it inline in another struct, never sizeof(sm_t) for an on-disk format, never memcpy(struct, ...) it.
  • Treat the type as opaque: access only via sm_* accessors.
  • Recompile (not just relink) after upgrading sparsemap.

The wire format produced by sm_serialize and consumed by sm_open/sm_deserialize is stable and is preserved across the 3.x series. This is the contract that matters for on-disk consumers.

Migrating from a pre-3.0 vendored copy

3.0.0 makes two source-level breaks, both mechanical:

  • The opaque type is now sm_t, not sparsemap_t. Migrate with sed -i 's/\\bsparsemap_t\\b/sm_t/g' your_files.c.
  • The vendoring prefix macro is SPARSEMAP_PREFIX, not SM_PREFIX. Rename it if you set it.

Everything else -- the sm_* function names, their signatures and behavior, and the serialized wire format -- is unchanged from the latest pre-3.0 vendored copies. See docs/MIGRATION.md for the full checklist.

Future work: SIMD

Sparsemap is scalar-only by design. No __builtin_popcount chains, no AVX intrinsics, no NEON — nothing target-specific. The same source compiles unchanged on x86_64, ARM, RISC-V, and anything else with a C99 compiler. This is deliberate: single-file vendoring and cross-platform reproducibility outrank per-architecture peak performance for our consumer profile (PostgreSQL extensions, embedded indexers, undo logs).

The aligned_alloc / aligned_free slots in sm_allocator_t exist so that adding SIMD later doesn't force another API break. Two tiers of work are plausible if a real workload ever justifies it. Both are deferred until a downstream consumer profiles a hotspot in a sparsemap operation.

Tier 1 — vectorize the inner loops without changing the wire format

  • sm_cardinality over MIXED runs. Walk chunks scalar-style to identify contiguous runs of MIXED bitvecs of length ≥ K (~4), gather them into an aligned scratch buffer, run AVX2/AVX-512 (or NEON) popcount, accumulate. Falls back to the current scalar loop for short runs and unsupported platforms.
  • Set ops on MIXED-MIXED chunk-pair runs. Same idea applied to sm_union / sm_intersection / sm_xor / sm_difference: when both inputs have aligned MIXED runs, dispatch to a vectorized vpand / vpor / vpxor loop.
  • Roughly 500 LOC of intrinsics, runtime CPU dispatch via __attribute__((target("avx2"))) plus a cpuid probe, and one aligned scratch buffer per inner-loop call (uses sm_allocator_t::aligned_alloc).
  • Realistic gain: 1.5–3× on dense (mostly-MIXED) maps; near zero on sparse maps because the gather overhead eats the win.

Tier 2 — wire-format extension for native SIMD layout

  • Add a fifth chunk payload type (e.g. SM_PAYLOAD_DENSE_RUN) that stores N contiguous bitvecs aligned on a 32-byte boundary, with a length prefix. The encoder switches to dense-run mode when emitting a long MIXED run.
  • The 2-bit flag space is full (00/01/10/11 all assigned), so the new mode requires an escape encoding via the chunk header.
  • Removes the gather step entirely; SIMD ops run directly on the serialized bytes.
  • Roughly 1500 LOC, codec rewrite, deserialize-backward-compat work, consumer wire format changes.
  • Realistic gain: 4–6× on dense maps.

Why neither is shipped today

Sparsemap's value proposition is "small wire format, single-file vendoring, no SIMD assumptions". Adding SIMD splits the code (scalar fallback + vector fast path), introduces runtime CPU dispatch, and forces every consumer's build system to handle target-feature flags. We will not pay that cost speculatively.

If and when a real workload pins sm_cardinality or set-op throughput as a measured bottleneck, Tier 1 is the right answer (small, contained, no wire-format change). Tier 2 is a CRoaring-shaped rewrite and probably the wrong tool for sparsemap's niche. Open an issue with profile data if you hit such a workload.

License

MIT. See LICENSE.