Skip to content

Commit 7501f2e

Browse files
committed
Address review comments.
1 parent 6773597 commit 7501f2e

File tree

1 file changed

+38
-26
lines changed

1 file changed

+38
-26
lines changed

posts/inside-rust/2023-11-10-parallel-rustc.md

+38-26
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ team: The Parallel Rustc Working Group <https://www.rust-lang.org/governance/tea
77

88
The Rust compiler's front-end can now use parallel execution to significantly
99
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.
1112

1213
Keep reading to learn why a parallel front-end is needed and how it works, or
1314
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.
136137

137138
### Putting it all together
138139

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.
142143

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
147148
tries its best to schedule them?
148149

149150
Fortunately no. The compiler uses the [jobserver
@@ -157,33 +158,44 @@ the number of threads will not exceed the number of cores.
157158
As of (XXX: date enabled) the nightly compiler is [shipped with the parallel
158159
front-end enabled](https://github.com/rust-lang/rust/pull/117435). However,
159160
**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.
171182

172183
### Performance effects
173184

174185
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.
177188

178189
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
183194
configuration. For example, dev builds are likely to see bigger improvements
184195
than release builds because release builds usually spend more time doing
185196
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.
187199

188200
We recommend eight threads because this is the configuration we have tested the
189201
most and it is known to give good results. Values lower than eight will see

0 commit comments

Comments
 (0)