Skip to content

Commit c53640e

Browse files
authored
Merge pull request #1567 from jsha/fix-doc-links
doc: fix some broken links
2 parents c85b6bc + 91e0c35 commit c53640e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/glossary.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The following is a glossary of domain specific terminology. Although benchmarks
44

55
## Basic terms
66

7-
* **benchmark**: the source of a crate which will be used to benchmark rustc. For example, ["hello world"](https://github.com/rust-lang/rustc-perf/tree/master/collector/benchmarks/helloworld).
7+
* **benchmark**: the source of a crate which will be used to benchmark rustc. For example, ["hello world"](https://github.com/rust-lang/rustc-perf/tree/master/collector/compile-benchmarks/helloworld).
88
* **profile**: a [cargo profile](https://doc.rust-lang.org/cargo/reference/profiles.html). Note: the database uses "opt" whereas cargo uses "release".
99
* **scenario**: The scenario under which a user is compiling their code. Currently, this is the incremental cache state and an optional change in the source since last compilation (e.g., full incremental cache and a `println!` statement is added).
1010
* **metric**: a name of a quantifiable metric being measured (e.g., instruction count)
@@ -13,8 +13,8 @@ The following is a glossary of domain specific terminology. Although benchmarks
1313

1414
## Benchmarks
1515

16-
* **stress test benchmark**: a benchmark that is specifically designed to stress a certain part of the compiler. For example, [projection-caching](https://github.com/rust-lang/rustc-perf/tree/master/collector/benchmarks/projection-caching) stresses the compiler's projection caching mechanisms.
17-
* **real world benchmark**: a benchmark based on a real world crate. These are typically copied as-is from crates.io. For example, [serde](https://github.com/rust-lang/rustc-perf/tree/master/collector/benchmarks/serde-1.0.136) is a popular crate and the benchmark has not been altered from a release of serde on crates.io.
16+
* **stress test benchmark**: a benchmark that is specifically designed to stress a certain part of the compiler. For example, [projection-caching](https://github.com/rust-lang/rustc-perf/tree/master/collector/compile-benchmarks/projection-caching) stresses the compiler's projection caching mechanisms.
17+
* **real world benchmark**: a benchmark based on a real world crate. These are typically copied as-is from crates.io. For example, [serde](https://github.com/rust-lang/rustc-perf/tree/master/collector/compile-benchmarks/serde-1.0.136) is a popular crate and the benchmark has not been altered from a release of serde on crates.io.
1818

1919
## Testing
2020

docs/perf-runner.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Scaling governor set to `performance`.
5656
Disabled with `kernel.randomize_va_space=0` in `sysctl.conf`.
5757
5858
Note that ASLR is also
59-
[disabled explicitly](src/bin/rustc-fake.rs) when gathering performance metrics.
59+
[disabled explicitly](../collector/src/bin/rustc-fake.rs) when gathering performance metrics.
6060
6161
### NMI watchdog
6262
Disabled with `kernel.nmi_watchdog=0` in `sysctl.conf`.

0 commit comments

Comments
 (0)