-
-
Notifications
You must be signed in to change notification settings - Fork 12
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
Enable libz sys for flate2 #562
Merged
Merged
Conversation
This file contains 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
Benchmark for a78d411Click to view benchmark
|
wcampbell0x2a
force-pushed
the
enable-libz-sys-for-flate2
branch
from
May 27, 2024 21:50
5df3fec
to
915739b
Compare
Benchmark for 5689c23Click to view benchmark
|
Benchmark for b0c171dClick to view benchmark
|
wcampbell0x2a
force-pushed
the
enable-libz-sys-for-flate2
branch
3 times, most recently
from
September 2, 2024 16:07
a25096c
to
1f68d0a
Compare
Benchmark for 558c1e0Click to view benchmark
|
* libz-sys now allows to build from cc instead of cmake. This patch enables this for the flate2 crate, which should be the fastest implementation of gzip * Update LAST_RELEASE to v0.18.0 * Use libz-sys instead of gzip-zune-inflate when building release binaries Old(gzip-zune-inflate): Benchmark 2: backhand-dist Time (mean ± σ): 804.6 ms ± 12.8 ms [User: 1047.7 ms, System: 267.5 ms] Range (min … max): 771.8 ms … 837.3 ms 50 runs Benchmark 3: backhand-dist-musl Time (mean ± σ): 1.399 s ± 0.019 s [User: 1.903 s, System: 0.330 s] Range (min … max): 1.358 s … 1.442 s 50 runs New(flate::libz-sys): Benchmark 2: backhand-dist Time (mean ± σ): 672.0 ms ± 5.9 ms [User: 846.2 ms, System: 217.1 ms] Range (min … max): 659.2 ms … 693.9 ms 50 runs Benchmark 3: backhand-dist-musl Time (mean ± σ): 786.2 ms ± 5.6 ms [User: 1006.3 ms, System: 203.1 ms] Range (min … max): 776.5 ms … 808.8 ms 50 runs
wcampbell0x2a
force-pushed
the
enable-libz-sys-for-flate2
branch
from
September 2, 2024 23:13
1f68d0a
to
4b2ade7
Compare
Benchmark for 2af76aeClick to view benchmark
|
Benchmark for 653dafeClick to view benchmark
|
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.
for the flate2 crate, which should be the fastest implementation of gzip
Closes #556