Do full despecialization on components and connectors#4568
Draft
KristofferC wants to merge 2 commits into
Draft
Conversation
These dont do any real work but can take a signficant time to compile, as an example, for a large model, as a baseline, I am seeing: ``` create model: 62.041103 seconds (193.16 M allocations: 9.779 GiB, 6.39% gc time, 99.79% compilation time: <1% of which was recompilation) ``` but with this PR active: ``` create model: 24.796934 seconds (67.98 M allocations: 3.496 GiB, 8.33% gc time, 98.84% compilation time: <1% of which was recompilation) ``` Note, this requires the not yet merged JuliaLang/julia#61746 to have any effect
d4123e0 to
7e0e931
Compare
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.
These don't do any real work but can take a significant time to compile, as an example, for a large model, as a baseline, I am seeing:
But with this PR active:
Note, this requires the not-yet-merged JuliaLang/julia#61746 to have any effect