-
-
Notifications
You must be signed in to change notification settings - Fork 189
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
⚡ Faster implementation for set #1020
Merged
Merged
+114
−67
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
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. Latest deployment of this branch, based on commit 01637ca:
|
Here are the results of performance benchmarks against the current implementation (referred as Reference) and the one of this PR (referred as Test): Reference..gen.set x 1,486 ops/sec ±0.25% (1088 runs sampled)
Reference..gen.set x 1,396 ops/sec ±0.55% (1075 runs sampled)
Test.......gen.set x 1,476 ops/sec ±1.88% (1086 runs sampled)
Test.......gen.set x 1,353 ops/sec ±0.53% (1086 runs sampled)
Reference..gen.set1 x 873 ops/sec ±0.43% (1084 runs sampled)
Reference..gen.set1 x 859 ops/sec ±0.37% (1074 runs sampled)
Test.......gen.set1 x 926 ops/sec ±0.30% (1083 runs sampled)
Test.......gen.set1 x 853 ops/sec ±0.35% (1084 runs sampled)
Reference..gen.set10 x 613 ops/sec ±0.33% (1085 runs sampled)
Reference..gen.set10 x 567 ops/sec ±0.28% (1082 runs sampled)
Test.......gen.set10 x 647 ops/sec ±0.28% (1081 runs sampled)
Test.......gen.set10 x 605 ops/sec ±0.26% (1084 runs sampled)
Reference..gen.set100 x 56.28 ops/sec ±1.76% (1054 runs sampled)
Reference..gen.set100 x 58.05 ops/sec ±0.22% (1055 runs sampled)
Test.......gen.set100 x 72.92 ops/sec ±0.21% (1071 runs sampled)
Test.......gen.set100 x 74.08 ops/sec ±0.20% (1060 runs sampled) With the following tests: [
{ name: 'gen.set', run: (fc) => sampler(fc, fc.set(fc.nat())) },
{ name: 'gen.set1', run: (fc) => sampler(fc, fc.set(fc.nat(), { minLength: 1 })) },
{ name: 'gen.set10', run: (fc) => sampler(fc, fc.set(fc.nat(), { minLength: 10 })) },
{ name: 'gen.set100', run: (fc) => sampler(fc, fc.set(fc.nat(), { minLength: 100 })) },
]; |
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.
In a nutshell
Fixes #1019
❌ New feature
✔️ Fix an issue
❌ Documentation improvement
❌ Other: please explain
(✔️: yes, ❌: no)
Potential impacts
Values generated by: