Conversation
sleepingeight
approved these changes
Jan 24, 2026
Contributor
sleepingeight
left a comment
There was a problem hiding this comment.
LGTM. Thanks for the benchmark.
Member
Author
Member
Author
|
I am going to check PR #926 to see what happens. |
anonrig
approved these changes
Jan 30, 2026
pauldreik
reviewed
Jan 31, 2026
Member
Author
|
@pauldreik I have updated the PR. |
Collaborator
|
is the purpose of this PR to both introduce the benchmark AND introduce the switch on short? |
Member
Author
|
@pauldreik No!!!! That’s a mistake |
c6f8177 to
3c54357
Compare
Member
Author
|
@pauldreik I have removed the unwanted code. |
pauldreik
approved these changes
Jan 31, 2026
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 adds a new
shortbenchtool to benchmark SIMDUTF functions over incremental input sizes, providing detailed performance metrics for short inputs.The
shortbenchtool supports benchmarking multiple functions:validate_utf8(default)utf8_length_from_latin1utf16_length_from_utf8utf32_length_from_utf8count_utf8You can run all functions with
and then process the result with a script.
The tool outputs a table with columns for:
Example output:
This complements the existing
benchmarktool which focuses on larger inputs and transcoding operations. Theshortbenchtool is particularly useful for analyzing performance characteristics of functions on small inputs where overhead and startup costs are significant.This is meant to help with issue #925