@@ -7,7 +7,8 @@ team: The Parallel Rustc Working Group <https://www.rust-lang.org/governance/tea
7
7
8
8
The Rust compiler's front-end can now use parallel execution to significantly
9
9
reduce compile times. To try it out, run the nightly compiler with the `-Z
10
- threads=8` command line option.
10
+ threads=8` command line option. This feature is currently experimental, and we
11
+ aim to ship it in the stable compiler some time in 2024.
11
12
12
13
Keep reading to learn why a parallel front-end is needed and how it works, or
13
14
just skip ahead to the [ How to use it] ( parallel-rustc.html#how-to-use-it )
@@ -136,14 +137,14 @@ Again, there are several things worth nothing.
136
137
137
138
### Putting it all together
138
139
139
- Rust compilation has long benefited from intraprocess parallelism, via Cargo,
140
- and from interprocess parallelism in the back-end. It can now also benefit from
141
- interprocess parallelism in the front-end.
140
+ Rust compilation has long benefited from interprocess parallelism, via Cargo,
141
+ and from intraprocess parallelism in the back-end. It can now also benefit from
142
+ intraprocess parallelism in the front-end.
142
143
143
- Attentive readers might be wondering how intraprocess parallelism and
144
- interprocess parallelism interact. If we have 20 parallel rustc invocations and
145
- each one can have up to 16 threads running, might we end up 100s of threads on
146
- a machine with only 10s of cores, resulting in inefficient execution as the OS
144
+ Attentive readers might wonder how interprocess parallelism and intraprocess
145
+ parallelism interact. If we have 20 parallel rustc invocations and each one can
146
+ have up to 16 threads running, could we end up with hundreds of threads on a
147
+ machine with only tens of cores, resulting in inefficient execution as the OS
147
148
tries its best to schedule them?
148
149
149
150
Fortunately no. The compiler uses the [ jobserver
@@ -157,33 +158,44 @@ the number of threads will not exceed the number of cores.
157
158
As of (XXX: date enabled) the nightly compiler is [ shipped with the parallel
158
159
front-end enabled] ( https://github.com/rust-lang/rust/pull/117435 ) . However,
159
160
** by default it runs in single-threaded mode** and won't reduce compile times.
160
- Keen users who want to try multi-threaded mode should use the ` -Z threads=8 `
161
- option.
162
-
163
- This default may be surprising. Why parallelize the front-end and then run it
164
- in single-threaded mode? The answer is simple: caution. This is a big change!
165
- The parallel front-end has a lot of new code. Single-threaded mode exercises
166
- most of the new code, but excludes the possibility of threading bugs such as
167
- deadlocks that still occasionally affect multi-threaded mode. Parallel
168
- execution is harder to get right than serial execution, even in Rust. For this
169
- reason the parallel front-end also won't be shipped in Beta or Stable releases
170
- for some time.
161
+
162
+ Keen users can opt into multi-threaded mode with the ` -Z threads ` option. For
163
+ example:
164
+ ```
165
+ $ RUSTFLAGS="-Z threads=8" cargo build --release
166
+ ```
167
+ Alternatively, to request these instructions from a
168
+ [ config.toml] ( https://doc.rust-lang.org/cargo/reference/config.html ) file (for
169
+ one or more projects), add these lines:
170
+ ```
171
+ [build]
172
+ rustflags = ["-Z", "threads=8"]
173
+ ```
174
+ It may be surprising that single-thread mode is the default. Why parallelize
175
+ the front-end and then run it in single-threaded mode? The answer is simple:
176
+ caution. This is a big change! The parallel front-end has a lot of new code.
177
+ Single-threaded mode exercises most of the new code, but excludes the
178
+ possibility of threading bugs such as deadlocks that still occasionally affect
179
+ multi-threaded mode. Parallel execution is harder to get right than serial
180
+ execution, even in Rust. For this reason the parallel front-end also won't be
181
+ shipped in Beta or Stable releases for some time.
171
182
172
183
### Performance effects
173
184
174
185
When the parallel front-end is run in single-threaded mode, compilation times
175
- are typically within 2% of the serial front-end, which should be barely
176
- noticeable.
186
+ are typically 0% to 2% slower than with the serial front-end. This should be
187
+ barely noticeable.
177
188
178
189
When the parallel front-end is run in multi-threaded mode with ` -Z threads=8 ` ,
179
- out [ measurements on real-world
180
- code] ( https://github.com/rust-lang/compiler-team/issues/681 ) on show that
181
- compile times can be reduced by up to 50%, though the affects vary widely and
182
- depend greatly on the characteristics of the code being compiled and the build
190
+ our [ measurements on real-world
191
+ code] ( https://github.com/rust-lang/compiler-team/issues/681 ) show that compile
192
+ times can be reduced by up to 50%, though the affects vary widely and depend
193
+ greatly on the characteristics of the code being compiled and the build
183
194
configuration. For example, dev builds are likely to see bigger improvements
184
195
than release builds because release builds usually spend more time doing
185
196
optimizations in the back-end. A small number of cases compile more slowly in
186
- multi-threaded mode than single-threaded mode.
197
+ multi-threaded mode than single-threaded mode. These are mostly tiny programs
198
+ that already compile quickly.
187
199
188
200
We recommend eight threads because this is the configuration we have tested the
189
201
most and it is known to give good results. Values lower than eight will see
0 commit comments