-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
TTFP regression since 1.7 #44293
Comments
Looks like JuliaPlots/Plots.jl#4079. |
Maybe is this a duplicate of #43157 (comment)? |
Does that mean it's nearly certainly not a true regression, but instead, as Kristoffer said, due to Plots not precompiling on master? If so, this issue can happily be closed |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I discovered a 25% regression in compilation time from 1.7.2 to master (0b48b91) when running a workflow for some work code. My work code is really hard to boil down to a MWE because it makes use of packages from a local registry, reference data sets, and operates on specific files in a workflow.
But at least some of the regression is due to a regression in Plots.jl.
The following code:
Has the following timings:
But wait, Plots.jl makes use of
Base.Experimental.@max_methods
, which is only available in 1.8. What happens if we simply comment that out?max_methods
): 19.5 seconds.The text was updated successfully, but these errors were encountered: