-
Notifications
You must be signed in to change notification settings - Fork 52
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
perf(token): Speed up 'take_until' for str/char #378
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
Before/after (with simd) ``` find_slice/byte/empty time: [8.6164 ns 9.0722 ns 9.5994 ns] change: [-43.031% -39.731% -35.814%] (p = 0.00 < 0.05) Performance has improved. find_slice/slice/empty time: [8.9148 ns 9.4395 ns 9.9990 ns] change: [-40.889% -36.871% -32.492%] (p = 0.00 < 0.05) Performance has improved. find_slice/byte/start time: [349.03 ns 382.08 ns 418.18 ns] change: [-66.578% -63.083% -59.659%] (p = 0.00 < 0.05) Performance has improved. find_slice/slice/start time: [621.33 ns 662.95 ns 707.40 ns] change: [-55.891% -51.971% -47.614%] (p = 0.00 < 0.05) Performance has improved. find_slice/byte/medium time: [535.01 ns 560.18 ns 586.97 ns] change: [-68.347% -65.802% -62.864%] (p = 0.00 < 0.05) Performance has improved. find_slice/slice/medium time: [681.00 ns 725.15 ns 772.02 ns] change: [-58.167% -54.656% -50.939%] (p = 0.00 < 0.05) Performance has improved. find_slice/byte/large time: [12.233 µs 12.845 µs 13.494 µs] change: [-97.200% -96.959% -96.698%] (p = 0.00 < 0.05) Performance has improved. find_slice/slice/large time: [12.739 µs 13.314 µs 13.912 µs] change: [-91.483% -90.773% -90.011%] (p = 0.00 < 0.05) Performance has improved. ```
Pull Request Test Coverage Report for Build 7092941784
💛 - Coveralls |
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.
Before/after (with simd)