-
Notifications
You must be signed in to change notification settings - Fork 148
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
Perfbot commands for evaluating only size #1888
Comments
Heh, I was just thinking about this yesterday. Well, the thing is, to evaluate the binary size, we need to compile the benchmarks. We don't need to do that repeatedly, so I was thinking of introducing a parameter to only run each benchmark once - and then realized that we already have it! You can do However, we only compile most benchmarks 1-3x times, so the boost won't be as big. I would estimate that only running everything once will perhaps halve the total duration (also because we now actually run everything twice even if you ask only for a single execution, because one execution is special, since it runs with the self-profiler - we'd probably need to change that). |
Wait, unless you meant the size impact on the compiler artifacts (like the size of the standard library |
I think when we evaluate small size changes we're interested in the benchmark binaries mostly? |
Usually yeah, but some PRs also care about reducing the size of the compiler itself. In any case, to get the binary size of benchmarks, we need to compile them, and that's the ultimate step of the benchmarking process, so it's not like we can stop sooner to make the result collection faster. The only thing that we can do is to limit the amount of compilations that we perform, which can be done using the |
We actually only have about 3-4 binaries in the benchmark list, so if we want to focus e.g. only on binaries, they can be selected using the ...unless! We could do a much faster try build without LTO/PGO/BOLT, just to evaluate the binary size. That could be possible after rust-lang/rust#123451, once we'll have the option run an arbitrary CI job with |
Hi, I don't know if this is the appropriate spot to mention this request, please feel free to redirect me if not! For WG-binary-size purposes, it might be nice to have a perfbot command to evaluate a PR strictly for its binary size impact. For a lot of such PRs, it's inappropriate to run the entire perf infrastructure because we don't expect any appreciable cycle or wall time impact, and if we do we'd probably be fine following it up reactively, and we'd rather not take up extra queue time if we don't have to.
This is especially the case with "library-only" PRs which affect fairly fiddly bits of standard library code and touch their code size.
The text was updated successfully, but these errors were encountered: