-
Notifications
You must be signed in to change notification settings - Fork 13k
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
Performance regressions of compiled code over the last year #47561
Comments
It is expected that incrementally compiled code performs worse at runtime. That's the trade-off you make. I would not use it for benchmarks. The recent addition of ThinLTO is likely to also affect runtime performance of specific benchmarks. |
(These are on a different machine so numbers won't be comparable to the ones above) env RUSTFLAGS=-Ccodegen-units=1 CARGO_INCREMENTAL=0rustc 1.17.0-nightly (62eb605 2017-02-15)
rustc 1.25.0-nightly (0f9c784 2018-01-17)
Without specifying Ccodegen-units=1 rustc 1.25.0-nightly (0f9c784 2018-01-17)
rustc 1.25.0-nightly (0f9c784 2018-01-17) (codegen-units=1 -Z thintlto=no lto=true)
So a single codegen unit seems to help a bit but it is still slower than it could be. I thought about codegen units briefly when testing but never tested it as the cargo docs seem to imply that they are already set to 1 :/ https://doc.rust-lang.org/cargo/reference/manifest.html#the-profile-sections .
Yeah that was just my bad, forgot I had it enabled when running the benchmarks... (would be nice if it wasn't a 2x slowdown still but I get that might not be possible to improve much) |
Yeah I figured ThinLTO might be one of the culprits but I don't believe there is a way to use full LTO atm (#47521). Depending on how much ThinLTO affects the runtimes though that might still be a problem however. |
247 vs 325 microseconds is indeed quite the slowdown. I would be interesting to see where all the additional time goes. Since this is just one data point, it's hard to even guess. Running the code in a profiler would be most insightful, I think. Also, @eddyb, hasn't there been some kind of regression in the benchmarking framework that could also play into this?
Yes, that is out of date since a few weeks ago, I think. cc @alexcrichton & @rust-lang/cargo
At some point we'll probably have incremental ThinLTO, at which point runtime performance should be quite a bit better. However, I'm not sure if that will ever be the default since it will cause longer compile times than regular incremental compilation. Incremental compilation strives to give you code that is "fast enough" and otherwise clearly prioritizes short compile times. |
Tried gleaning something from profiler output I didn't spot anything as the runtime is spread out in a lot of different places and inlining tears through the code completely. I may give it another shot but I don't expect much.
It is unlikely to do with the benchmark framework. I am comparing these numbers to /~https://github.com/Geal/nom_benchmarks/blob/master/http/nom-http/src/main.rs which also uses it and that benchmark hasn't regressed. (I actually use /~https://github.com/bluss/bencher/ but switching to the builtin one shows no change in runtime). Added another result to #47561 (comment) . Forcing full lto helps a bit but is not the sole problem. rustc 1.25.0-nightly (0f9c784 2018-01-17) (codegen-units=1 -Z thintlto=no lto=true)
|
I've checked this from 1.13.0 to the current nightly and it is obvious that the regression is introduced in 1.19.0 and 1.20.0. The speed is recovering in more recent version (with CGU=1 and ThinLTO=off) but still haven't come back to the 1.19.0 level. Raw data
|
Cool. Could you try to bisect to the specific commit? I might then take a go at investigating it. |
@arielb1 Probably not to a specific commit, but I'm now doing a date-based bisection which should point to a narrow-enough commit range. |
From the timing of nightlies between 2017-04-24 to 2017-07-17:
Raw data
|
Not much we can do about that without a fairly deep investigation. We're about to update to LLVM 5.0 or 6.0, so let's hope that fixes the regression
This looks like #42313 and #42727 - the first try at allocator integration had some perf issues - missing
This sort of makes sense, but is weird. I might look into it |
@arielb1 A regression from #41920 seems consistent with my observations. I have another variant of the |
triage: P-medium |
Triage; It's been a while. @Marwes lots has changed since you've filed this issue; do you still track this stuff on combine? |
Reran on the old branch so I could use 1.19
Regression still seems to exist. |
The regression still exists, but I think I've been able to root-cause this to some kind of change in LLVM's inlining (in combination with codegen-units?). Poking through the benchmark executables with If I compile now on nightly:
With
I can beat the old benchmark times. All you need is a sufficiently large inline threshold, and the threshold above is high enough to inline the whole benchmark into one function. This regression still exists, but I don't know what action we could take here. I don't think there is some particular pattern which isn't being optimized here which we could implement logic for in LLVM. It seems likely that tuning the inliner heuristic(s) in order to benefit these benchmarks would pessimize others. @rustbot label +I-prioritize |
I'm sifting through old issues. I think this situation should be discussed because I'm not sure there is anything for us to do here on account of this being an inlining heuristic issue, and also this issue's age. It's been 4 years and 9 or 10 LLVM releases since this issue was opened. What are the odds we manage to fix this regression without creating other issues? @rustbot label -I-prioritize +I-compiler-nominated |
This comment was marked as abuse.
This comment was marked as abuse.
issue discussed during last week's T-compiler meeting (notes). Follow-up on this Zulip topic @rustbot label -I-compiler-nominated |
Started on an update to /~https://github.com/Marwes/combine after it being dormant for a while. When I ran the benchmarks to check that my changes hadn't regressed the performance I noticed that performance had regressed by ~28% (~116% with incremental compilation!) since the last time ran benchmarks (somewhere around September 2016).
I ran the benchmarks again against an old version of the library to be able to compile it with older rustc's but the regression is the same in the master branch as well.
cargo bench --bench http
against /~https://github.com/Marwes/combine/tree/v2.3.2cargo-0.18.0-nightly (a73a665 2017-02-14)
rustc 1.19.0-nightly (554c685 2017-06-14)
rustc 1.22.0-nightly (3681220 2017-09-06)
rustc 1.25.0-nightly (6828cf9 2018-01-06) (CARGO_INCREMENTAL=0)
rustc 1.25.0-nightly (6828cf9 2018-01-06) (CARGO_INCREMENTAL=1)
I'd like to bisect this further but the two tools I found for this do not appear to work in this case, is there any other tool that can be used for this?
/~https://github.com/kamalmarhubi/rust-bisect (Outdated)
/~https://github.com/Mark-Simulacrum/bisect-rust/tree/master/src (Only last 90 days)
The text was updated successfully, but these errors were encountered: