Skip to content
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

Tracking Issue for Parallel Rustc Front-end #113349

Open
20 of 28 tasks
Tracked by #84
SparrowLii opened this issue Jul 5, 2023 · 1 comment
Open
20 of 28 tasks
Tracked by #84

Tracking Issue for Parallel Rustc Front-end #113349

SparrowLii opened this issue Jul 5, 2023 · 1 comment
Labels
C-tracking-issue Category: A tracking issue for an RFC or an unstable feature. WG-compiler-parallel Working group: Parallelizing the compiler

Comments

@SparrowLii
Copy link
Member

SparrowLii commented Jul 5, 2023

This is a tracking issue for Parallel Rustc Front-end

This feature will improve compilation speed by parallelizing the process of rustc front end (before the codegen which has been parallelized).

The feature was previously called parallel queries (and its tracking issue can be found here), developed by the former parallel rustc working group. Thanks to their work, developers can currently use parallel rustc by setting parallel_compiler=true in config.toml when building the compiler.

The parallel rustc working group has rebooted (here's the associated MCP), which will make parallel front-end the default option in rustc. Here's the (draft) landing strategy for this feature.

Below is the task list.

Solve the problem of single-thread performance reduction

Optimize multi-threading performance

Enable parallel compilation by default in nightly rustc

Bugs or test failures of parallel rustc

Testing

Documentation

About tracking issues

Tracking issues are used to record the overall progress of implementation.
They are also used as hubs connecting to other relevant issues, e.g., bugs or open design questions.
A tracking issue is however not meant for large scale discussion, questions, or bug reports about a feature.
Instead, open a dedicated issue for the specific matter and add the relevant feature gate label.

@SparrowLii SparrowLii added the C-tracking-issue Category: A tracking issue for an RFC or an unstable feature. label Jul 5, 2023
@nnethercote nnethercote added the WG-compiler-parallel Working group: Parallelizing the compiler label Jul 5, 2023
@the8472
Copy link
Member

the8472 commented Jul 10, 2023

The core crate might be a good benchmark for this. You can immediately build it after rustc and it spends about 10% of its walltime in tokenization/parsing/macro-expansion and ~80% in the query parts. The fraction of codegen is small in comparison.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C-tracking-issue Category: A tracking issue for an RFC or an unstable feature. WG-compiler-parallel Working group: Parallelizing the compiler
Projects
Status: Todo
Development

No branches or pull requests

3 participants