Giter Club home page Giter Club logo

qp's Introduction

qp tries and crit-bit tries

I have been working on radix trees / patricia tries / crit-bit tries with a larger fan-out per branch to reduce lookup costs without wasting memory.

My best solution so far is the "qp trie", short for quelques-bits popcount patricia trie. (Nothing to do with cutie cupid dolls or Japanese mayonnaise!) A qp trie is like a crit-bit trie (aka patricia trie) except each branch is indexed by a few bits at a time instead of one bit. The array of sub-tries at a branch node is compressed using the popcount trick to omit unused branches.

The original version of qp tries used 4 bits at a time, so it was a quadbit popcount patricia trie; I also have a 5 bit version, a quintuple-bit popcount patricia trie, which generally outperforms the 4 bit version; and a 6 bit version which doesn't quite have a name.

Based on a few benchmarks, qp tries have about 1/3 less memory overhead of crit-bit tries, 1.3 words vs 2 words of overhead per item; the average depth of a qp trie is about half that of a crit-bit trie; and the overall speed of qp tries is about 30% faster than crit-bit tries. The qp trie implementation is about 40% bigger.

usage

Type make test or make bench. (You will need to use GNU make.) If you have a recent Intel CPU you might want to add -mpopcnt to the CFLAGS to get SSE4.2 POPCNT instructions. Other build options:

  • HAVE_SLOW_POPCOUNT compiles the code to use a hand-coded 16 bit popcount() instead of __builtin_popcount(). No need for this with recent clang/llvm; useful with older gcc.

  • HAVE_NARROW_CPU uses a 2 x 16 bit SIMD-within-a-register popcount instead of two separate 16 bit popcounts; might be useful on small CPUs but makes little difference on 64 bit Intel.

The makefile builds {test,bench}-{qs,qn} with these options; they are otherwise the same as test-qp and bench-qp.

caveats

The code has only been tested on 64-bit little endian machines. It might work on 32-bit machines (provided the compiler supports 64 bit integers) and probably won't work on a big-endian machine. It should be easy to port by tweaking the struct bit-field layouts.

Key strings can be byte-aligned but values must be word-aligned; you can swap this restriction (e.g. if you want to map from strings to integers) by tweaking the struct layout and adjusting the check in Tset().

Keys are '\0' terminated C strings, which guarantees one key is not a prefix of another, so leaves and branches cannot occur at the same point. It should be possible to support arbitrary binary keys by being more clever about handling string termination.

articles

  • QP TRIE HOME PAGE

  • 2015-10-04 - qp tries: smaller and faster than crit-bit tries

    A blog article / announcement.

  • 2015-10-07 - crit-bit tries without allocation

    An unimplemented sketch of a neat way to use crit-bit tries.

  • 2015-10-11 - prefetching tries

  • 2015-10-13 - Devon O'Dell benchmarks qp tries against some alternatives

  • 2015-10-19 - never mind the quadbits, feel the width!

    Benchmarking wider-fanout versions of qp tries.

  • 2016-20-23 - How does a qp trie compare to a network routing trie?

    Reading some vaguely-related academic literature.

  • 2016-03-06 - TinyToCS vol. 4 includes a paper on QP tries!

    Nicest comment from a reviewer:

    The body of this paper is a masterpiece of economy: results are presented very clearly and understandably. The result here is simple, compact, and unambiguous, which makes it perfect for TinyToCS.

  • 2016-11-21 - https://gitlab.labs.nic.cz/labs/knot/merge_requests/574

    A greatly enhanced and properly engineered implementation of a qp trie is being incorporated into CZ.NIC Knot DNS, for better memory efficiency.

  • 2016-12-20 - https://github.com/jedisct1/rust-qptrie

    Frank Denis's Rust version of qp tries

  • 2017-01-09 - qp trie news roundup

thanks

Marek Vavrusa (CZ.NIC) and Devon O'Dell (Fastly) enthusiastically put this code to work and provided encouraging feedback.

Vladimír Čunát incorporated qp tries into CZ.NIC Knot DNS, at the suggestion of Jan Včelák.

Simon Tatham proved that parent pointers are not needed for embedded crit-bit tries.

download

You can clone or browse the repository from:

roadmap

  • Tbl.h Tbl.c

    Abstract programming interface for tables with string keys and associated void* values. Intended to be shareable by multiple different implementations.

  • qp.h qp.c

    My qp trie implementation. See qp.h for a longer description of where the data structure comes from.

  • fp.h fp.c

    5-bit clone-and-hack variant of qp tries.

  • fn.h fn.c

    Newer version of 5-bit qp trie, which should be more portable.

  • wp.h wp.c

    6-bit clone-and-hack variant of qp tries.

  • cb.h cb.c

    My crit-bit trie implementation. See cb.h for a description of how it differs from DJB's crit-bit code.

  • qp-debug.c fp-debug.c fn-debug.c wp-debug.c cb-debug.c

    Debug support code.

  • bench.c bench-multi.pl bench-more.pl [bench-cross.pl][]

    Generic benchmark for Tbl.h implementations, and benchmark drivers for comparing different implementations.

  • test.c test.pl

    Generic test harness for the Tbl.h API, and a perl reference implementation for verifying correctness.

  • test-gen.pl test-once.sh

    Driver scripts for the test harness.

notes


Written by Tony Finch [email protected] https://dotat.at/; You may do anything with this. It has no warranty. https://creativecommons.org/publicdomain/zero/1.0/

qp's People

Contributors

fanf2 avatar veorq avatar ondra avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.