-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Optimize comparing intersections with common members #50329
base: main
Are you sure you want to change the base?
Optimize comparing intersections with common members #50329
Conversation
@typescript-bot perf test this |
Heya @weswigham, I've started to run the perf test suite on this PR at 08946cd. You can monitor the build here. Update: The results are in! |
(Note, this actually builds |
@weswigham Here they are:
CompilerComparison Report - main..50329
System
Hosts
Scenarios
TSServerComparison Report - main..50329
System
Hosts
Scenarios
Developer Information: |
@weswigham Would love to get the next level of detail on exactly what kinds of unions/intersections would match up before, but not now. Just trying to think deeper about the most efficient representation. |
This PR essentially optimizes |
@typescript-bot pack this |
Heya @weswigham, I've started to run the tarball bundle task on this PR at 08946cd. You can monitor the build here. |
Heya @weswigham, I've started to run the diff-based user code test suite on this PR at 08946cd. You can monitor the build here. Update: The results are in! |
Heya @weswigham, I've started to run the parallelized Definitely Typed test suite on this PR at 08946cd. You can monitor the build here. |
Heya @weswigham, I've started to run the extended test suite on this PR at 08946cd. You can monitor the build here. |
@weswigham Here are the results of running the user test suite comparing Everything looks good! |
Heya @weswigham, I've run the RWC suite on this PR - assuming you're on the TS core team, you can view the resulting diff here. |
Hey @weswigham, I've packed this into an installable tgz. You can install it for testing by referencing it in your
and then running There is also a playground for this build and an npm module you can use via |
@typescript-bot perf test this |
Heya @DanielRosenwasser, I've started to run the diff-based top-repos suite on this PR at bd83724. You can monitor the build here. Update: The results are in! |
Heya @DanielRosenwasser, I've started to run the regular perf test suite on this PR at bd83724. You can monitor the build here. Update: The results are in! |
@DanielRosenwasser Here they are:
CompilerComparison Report - baseline..pr
System info unknown
Hosts
Scenarios
tsserverComparison Report - baseline..pr
System info unknown
Hosts
Scenarios
StartupComparison Report - baseline..pr
System info unknown
Hosts
Scenarios
Developer Information: |
@DanielRosenwasser Here are the results of running the top-repos suite comparing Everything looks good! |
@weswigham I wonder if we can do better here by examining the This would be somewhat similar to the optimizations in #55851. |
Fixes #50290 - this brings the comparison count in this repo back down to pre-51b346d levels (there's still a few more, but not many), and compilation time is reduced commensurately.
Fundamentally, what happened is that the changes in 51b346d caused some union lengths to no longer match up thanks to the new simplification rules, and thus skip the union member correspondence optimization in #41903 and require exhaustive comparison. Since the unions in question are 252 elements or so long, there are a lot of those exhaustive comparisons (as I said in our internal chat - 252^3 is suspiciously close to the map size limit of 2^24!). By adding this optimization that strips the common members from intersections before comparing them (before normalization), we can prevent a lot of those corresponding (or almost-corresponding, in the case of the linked issue) unions resulting from intersection normalization from getting compared.