Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
structured-world
/
structured-zstd
Public
forked from
KillingSpark/zstd-rs
Notifications
You must be signed in to change notification settings
Fork
3
Star
10
Code
Issues
16
Pull requests
1
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
perf(encode): close a third of the level-1 gap to libzstd
- #501
#501
Merged
polaz
merged 24 commits into
main
structured-world/structured-zstd:main
from
perf/#493-sequence-array
structured-world/structured-zstd:perf/#493-sequence-array
Copy head branch name to clipboard
Sep 14, 2026
Conversation
Commits
24
(24)
Checks
Files changed
Merged
perf(encode): close a third of the level-1 gap to libzstd
#501
polaz
merged 24 commits into
main
structured-world/structured-zstd:main
from
perf/#493-sequence-array
structured-world/structured-zstd:perf/#493-sequence-array
Copy head branch name to clipboard
Commits
Commits on Sep 8, 2026
perf(encode): write the wire offset into the sequence instead of copying it
Show description for a2b6fee
polaz
committed
a2b6fee
View commit details
Copy full SHA for a2b6fee
Browse repository at this point
perf(encode): keep the sequence at three words by reusing the offset slot
Show description for 8afee28
polaz
committed
8afee28
View commit details
Copy full SHA for 8afee28
Browse repository at this point
Commits on Sep 9, 2026
perf(encode): make the dense hash-table prime a counted loop again
Show description for d4c16da
polaz
committed
d4c16da
View commit details
Copy full SHA for d4c16da
Browse repository at this point
perf(huff0): size the tree node like upstream's
Show description for a79da07
polaz
committed
a79da07
View commit details
Copy full SHA for a79da07
Browse repository at this point
perf(encode): derive and count the sequence codes in one pass
Show description for 6a23c9d
polaz
committed
6a23c9d
View commit details
Copy full SHA for 6a23c9d
Browse repository at this point
perf(encode): slide the fast table's indices instead of rebuilding it
Show description for 78d9df2
polaz
committed
78d9df2
View commit details
Copy full SHA for 78d9df2
Browse repository at this point
perf(encode): keep the repeat-offset history in registers across the pass
Show description for 2925d08
polaz
committed
2925d08
View commit details
Copy full SHA for 2925d08
Browse repository at this point
perf(encode): count the sequence codes into four interleaved tables
Show description for 52d6c8b
polaz
committed
52d6c8b
View commit details
Copy full SHA for 52d6c8b
Browse repository at this point
perf(encode): count into one table per stream after all
Show description for ae9a71f
polaz
committed
ae9a71f
View commit details
Copy full SHA for ae9a71f
Browse repository at this point
perf(encode): let the histogram ask for the code without the extra bits
Show description for 982e81c
polaz
committed
982e81c
View commit details
Copy full SHA for 982e81c
Browse repository at this point
perf(encode): inline the code-only helpers into their call sites
Show description for c9e2eb8
polaz
committed
c9e2eb8
View commit details
Copy full SHA for c9e2eb8
Browse repository at this point
perf(encode): keep the one code-plus-bits helper after all
Show description for 9edf246
polaz
committed
9edf246
View commit details
Copy full SHA for 9edf246
Browse repository at this point
perf(encode): walk the sequence writer's loop as a slice
Show description for f25016f
polaz
committed
f25016f
View commit details
Copy full SHA for f25016f
Browse repository at this point
perf(encode): carry the sequence codes from the derivation pass to the writer
Show description for 4a61f88
polaz
committed
4a61f88
View commit details
Copy full SHA for 4a61f88
Browse repository at this point
perf(bitio): drop the zero-width branch from the unchecked bit add
Show description for d13cb93
polaz
committed
d13cb93
View commit details
Copy full SHA for d13cb93
Browse repository at this point
perf(encode): find the highest sequence code from the counts, not per sequence
Show description for 3518d22
polaz
committed
3518d22
View commit details
Copy full SHA for 3518d22
Browse repository at this point
fix(encode): count the sequence-code buffer and bound the Huffman histogram
Show description for 07a6854
polaz
committed
07a6854
View commit details
Copy full SHA for 07a6854
Browse repository at this point
fix(huff0): bound the histogram at the entry points, not at the narrowing
Show description for aee5c0f
polaz
committed
aee5c0f
View commit details
Copy full SHA for aee5c0f
Browse repository at this point
perf(encode): one correction per slid slot, one histogram walk per build
Show description for ed74c5b
polaz
committed
ed74c5b
View commit details
Copy full SHA for ed74c5b
Browse repository at this point
Commits on Sep 14, 2026
docs(encode): describe the index slide and fix doc links
Show description for 99e6c81
polaz
committed
99e6c81
View commit details
Copy full SHA for 99e6c81
Browse repository at this point
Merge branch 'main' into perf/#493-sequence-array
polaz
authored
b83bfaa
View commit details
Copy full SHA for b83bfaa
Browse repository at this point
perf(huff0): sum the histogram once on the cheap path
Show description for 60bcc6f
polaz
committed
60bcc6f
View commit details
Copy full SHA for 60bcc6f
Browse repository at this point
perf(huff0): count the symbols in the validating pass
Show description for 4ec9dcd
polaz
committed
4ec9dcd
View commit details
Copy full SHA for 4ec9dcd
Browse repository at this point
perf(encode): size the sequence-code maxima scan to the block
Show description for 9df3fea
polaz
committed
9df3fea
View commit details
Copy full SHA for 9df3fea
Browse repository at this point
You can’t perform that action at this time.