skip[fuzz]: allow generation of longer arrays #7729
Merged
robert3005 merged 5 commits intodevelopfrom Apr 30, 2026
Merged
Conversation
Merging this PR will degrade performance by 31.49%
|
| Mode | Benchmark | BASE |
HEAD |
Efficiency | |
|---|---|---|---|---|---|
| ❌ | WallTime | runend[10M_i32_runlen_1000] |
97.3 µs | 134.1 µs | -27.48% |
| ❌ | WallTime | runend[10M_i32_runlen_10] |
161.2 µs | 191.7 µs | -15.89% |
| ⚡ | WallTime | dynamic_dispatch_u32[10M] |
161.8 µs | 108.5 µs | +49.06% |
| ❌ | WallTime | dynamic_dispatch_u32[10M] |
127 µs | 185.3 µs | -31.49% |
| ❌ | WallTime | 10M_10%[1000000] |
132.2 µs | 169.7 µs | -22.13% |
| ⚡ | WallTime | 10M_50%[5000000] |
308.4 µs | 277.2 µs | +11.24% |
| ⚡ | WallTime | 10M_90%[10000000] |
396.1 µs | 359.8 µs | +10.08% |
| ❌ | WallTime | decompress_kernel[1M] |
379.9 µs | 427 µs | -11.03% |
| ❌ | Simulation | bitwise_not_vortex_buffer_mut[128] |
246.1 ns | 275.3 ns | -10.6% |
Comparing ji/fuzz-arb-longer (d1f7ecd) with develop (128ce5f)
robert3005
reviewed
Apr 30, 2026
robert3005
approved these changes
Apr 30, 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.
Allow the fuzzer to create longer arrays to exercise more file_io logic (e.g. zone_map partitions).
Adds a new trait
ArbitraryWithandArbitraryArrayConfigto express this.