Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve Huffman decoding speed using table-based implementation. #35

Merged
merged 5 commits into from
Mar 21, 2016

Conversation

Lukasa
Copy link
Member

@Lukasa Lukasa commented Mar 21, 2016

This is heavily inspired by the work done by @tatsuhiro-t for nghttp2, and ported to Python. In some micro-benchmarks focusing on decoding primarily ASCII-text, the Huffman decoder in the form of this unrolled state machine performs 4x faster than the naive Python version used elsewhere in the HPACK module, decompressing a 1kB Huffman string in ~600usec compared to the naive version's 2.4msec.

This is without question a micro-optimisation, but given that the table is not in flux anymore there's little advantage to using the naive Huffman decoder.

Enormous gratitude is owed to @tatsuhiro-t for his work on this decoder.

Lukasa added 5 commits March 21, 2016 10:56
This is heavily inspired by the work done by @tatsuhiro-t for nghttp2,
and ported to Python. In some micro-benchmarks focusing on decoding
primarily ASCII-text, the Huffman decoder in the form of this unrolled
state machine performs 4x faster than the naive Python version used
elsewhere in the HPACK module, decompressing a 1kB Huffman string in
~600usec compared to the naive version's 2.4msec.

This is without question a micro-optimisation, but given that the table
is not in flux anymore there's little advantage to using the naive
Huffman decoder.

Enormous gratitude is owed to @tatsuhiro-t for his work on this decoder.
Lukasa added a commit that referenced this pull request Mar 21, 2016
Improve Huffman decoding speed using table-based implementation.
@Lukasa Lukasa merged commit 4dca957 into master Mar 21, 2016
@Lukasa Lukasa deleted the huffman-table branch March 21, 2016 12:37
@Lukasa Lukasa mentioned this pull request Mar 21, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant