Use independent seeds in makeSizedByteStrings#7735
Open
Conversation
`makeSizedByteStrings` used the same `H.Seed` for every element, so each generated ByteString was a prefix of the same deterministic byte sequence. Use `unfoldr (Just . Seed.split)` to produce a stream of independent SplitMix seeds instead, giving uncorrelated content across sizes.
Collaborator
Author
|
/benchmark nofib |
Contributor
|
Click here to check the status of your benchmark. |
zliu41
reviewed
Apr 23, 2026
Member
zliu41
left a comment
There was a problem hiding this comment.
Use independent seeds
Looks reasonable, but are you sure this is the reason for the "FIXME: this is terrible"? Who added the FIXME?
Member
This has nothing to do with |
Contributor
|
Comparing benchmark results of 'nofib' on '0468c1c57d' (base) and '5a6c9917d0' (PR) Results table
|
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
Fixes the
-- FIXME: this is terribleinplutus-core/cost-model/budgeting-bench/Generators.hs.makeSizedByteStringspassed the sameH.Seedto every call ofmakeSizedByteString, so each generated ByteString was a prefix of the same deterministic byte sequence — smaller ones were literal prefixes of larger ones. This produced correlated inputs for benchmarks that depend on byte content (equality, hashing, string ops).