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

Fix a typo in parallel compiler blog post #1167

Merged
merged 2 commits into from
Nov 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions posts/2023-11-09-parallel-rustc.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ build.

There are several things worth noting.
- Front-end execution takes 10.2 seconds.
- Back-end execution occurs takes 6.2 seconds, and the LLVM threads are running
- Back-end execution takes 6.2 seconds, and the LLVM threads are running
for 5.9 seconds of that.
- The parallel code generation is highly effective. Imagine if all those LLVM
executed one after another!
Expand Down Expand Up @@ -117,7 +117,7 @@ get the following Samply profile when compiling the same example as before.

![Samply output when compiling Cargo, parallel](../../../../images/inside-rust/2023-11-10-parallel-rustc/samply-parallel.png)

Again, there are several things worth nothing.
Again, there are several things worth noting.
- Front-end execution takes 5.9 seconds (down from 10.2 seconds).
- Back-end execution takes 5.3 seconds (down from 6.2 seconds), and the LLVM
threads are running for 4.9 seconds of that (down from 5.9 seconds).
Expand Down
Loading