Skip to content

Commit 8b9c828

Browse files
Rotate table
1 parent bbfad15 commit 8b9c828

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

_posts/2017-03-16-Rust-1.16.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,14 @@ checks, but doesn't produce the final binary.
6161
So how much speedup do you actually get? Like most performance related questions, the answer is "it
6262
depends." Here are some very un-scientific benchmarks:
6363

64-
| | initial build | initial check | speedup | secondary build | secondary check | speedup |
65-
|--------|---------------|---------------|---------|-----------------|-----------------|---------|
66-
| thanks | 134.75s | 50.88s | 2.648 | 15.97s | 2.9s | 5.506 |
67-
| cargo | 236.78s | 148.52s | 1.594 | 64.34s | 9.29s | 6.925 |
68-
| diesel | 15.27s | 12.81s | 0.015 | 13.54s | 12.3s | 1.100 |
64+
| | thanks | cargo | diesel |
65+
|-----------------|---------|---------|--------|
66+
| initial build | 134.75s | 236.78s | 15.27s |
67+
| initial check | 50.88s | 148.52s | 12.81s |
68+
| speedup | 2.648 | 1.594 | 0.015 |
69+
| secondary build | 15.97s | 64.34s | 13.54s |
70+
| secondary check | 2.9s | 9.29s | 12.3s |
71+
| speedup | 5.506 | 6.925 | 1.100 |
6972

7073
The 'initial' categories are the first build after cloning down a project. The 'secondary' categories
7174
involved adding one blank line to the top of `src\lib.rs` and running the command again. That's why

0 commit comments

Comments
 (0)