perf(rust): reduce sort32 bucket overhead#398
Open
dexhunter wants to merge 1 commit into
Open
Conversation
Co-Authored-By: Aiden <aiden@weco.ai>
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.
Summary
Performance
The benchmark builds the production Wasm sorter from a pinned upstream archive, overlays only
rust/spark-rs/src/sort.rs, and compares baseline and candidate calls on the same process and fixtures. It validates exact active counts, descending order, stable equal-key ordering, unchanged input/padding, and Wasm size before printing the metric.sort32_paired_latency_scoreis the candidate/baseline latency ratio, so lower is better and1.0is the baseline. Three final-patch confirmations measured0.750563,0.768874, and0.760215. The median is0.760215, a 24.0% latency reduction. The suite includes small inputs and one-million-key random, periodic, and adversarial layouts.Autoresearch trajectory: https://dashboard.weco.ai/share/4avZ2RktRLkZmJ1sWBU1Tiqqd20Zndg7
Validation
cargo test --manifest-path rust/spark-rs/Cargo.toml(2 passed)git diff --check