feat: Optimized Compression#9
Open
osmanyasar05 wants to merge 4 commits into
Open
Conversation
cowardsa
approved these changes
Apr 24, 2026
cowardsa
left a comment
There was a problem hiding this comment.
This is fine and great that it drops out easily - but I think its not a direction we want to pursue further. As in the textbook, you'll notice that a compressor is really composed of independent stages (as you drew in the paper).
I suspect a structure that uses a CompressorStage that takes a List of n-bitvectors (each of width m), and produces a List of k-bitvectors where k<n, our proof is then that the sum of the output List is the same as the sum of the input List. By chaining stages you'll eventually reduce the list. Within each stage you can apply FAs in parallel (to any degree) i.e. floor(n/3) FAs.
If that is unclear please direct questions to zulip perhaps?
| simp | ||
| unfold chain_opt at ih ⊢ | ||
| clear ih hrest | ||
| sorry |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR implements a new compressor implementation, that compresses in a more balanced way, from the front and the back of the list in parallel.