Skip to content

Commit

Permalink
Update 4-7 Cache miss.md
Browse files Browse the repository at this point in the history
  • Loading branch information
dendibakh authored Sep 14, 2024
1 parent 1c7aede commit 2b5ab40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chapters/4-Terminology-And-Metrics/4-7 Cache miss.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ $ perf stat -e mem_load_retired.l1_miss,
From this example, we can see that 37% of loads that missed in the L1 D-cache also missed in the L2 cache, thus the *L2 hit rate* is 63%. A breakdown for the L3 cache can be made similarly.

[^1]: Interactive latency - [https://colin-scott.github.io/personal_website/research/interactive_latency.html](https://colin-scott.github.io/personal_website/research/interactive_latency.html)
[^2]: Careful readers may notice discrepancy in the numbers: `fb_hit + l1_hit + l1_miss = 545,820`, which doesn't exactly match `all_loads`. We did not investigate this since the numbers are very close.
[^2]: Careful readers may notice a discrepancy in the numbers: `fb_hit + l1_hit + l1_miss = 545,820`, which doesn't exactly match `all_loads`. We did not investigate this since the numbers are very close.

0 comments on commit 2b5ab40

Please sign in to comment.