Skip to content

Commit 95331c6

Browse files
committed
Update README.md
1 parent 5045be5 commit 95331c6

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,32 +28,32 @@ This project implements a **Set-Associative Cache** simulator using an **LRU (Le
2828

2929
- Compute the total number of cache blocks:
3030
<br><br>
31-
![Formula](https://raw.githubusercontent.com/mellivorandy/cache-miss-analyzer/refs/heads/main/docs/image_formulae/0.png)
31+
![Formula](docs/image_formulae/0.png)
3232
<br><br>
3333

3434
- Compute the number of sets (each set holds set_degree (N-Way) blocks):
3535
<br><br>
36-
![Formula](https://raw.githubusercontent.com/mellivorandy/cache-miss-analyzer/refs/heads/main/docs/image_formulae/1.png)
36+
![Formula](docs/image_formulae/1.png)
3737
<br><br>
3838

3939
- Each block contains multiple bytes, so we determine which memory block the address belongs to:
4040
<br><br>
41-
![Formula](https://raw.githubusercontent.com/mellivorandy/cache-miss-analyzer/refs/heads/main/docs/image_formulae/2.png)
41+
![Formula](docs/image_formulae/2.png)
4242
<br><br>
4343

4444
- Determine where in the cache this block should be mapped:
4545
<br><br>
46-
![Formula](https://raw.githubusercontent.com/mellivorandy/cache-miss-analyzer/refs/heads/main/docs/image_formulae/3.png)
46+
![Formula](docs/image_formulae/3.png)
4747
<br><br>
4848

4949
- Compute the tag:
5050
<br><br>
51-
![Formula](https://raw.githubusercontent.com/mellivorandy/cache-miss-analyzer/refs/heads/main/docs/image_formulae/4.png)
51+
![Formula](docs/image_formulae/4.png)
5252
<br><br>
5353

5454
- After processing all memory accesses in trace file, compute:
5555
<br><br>
56-
![Formula](https://raw.githubusercontent.com/mellivorandy/cache-miss-analyzer/refs/heads/main/docs/image_formulae/5.png)
56+
![Formula](docs/image_formulae/5.png)
5757
<br><br>
5858

5959
2. **HashMap + Doubly Linked List**
@@ -89,7 +89,7 @@ This project implements a **Set-Associative Cache** simulator using an **LRU (Le
8989

9090
## Getting Started <br><br>
9191

92-
The Prerequisites, Building & Running and Test section are placed in both <a href="https://github.com/mellivorandy/cache-miss-analyzer/blob/main/dynamic_way_lru/README.md">dynamic_way_lru/README.md</a> and <a href="https://github.com/mellivorandy/cache-miss-analyzer/blob/main/valid_checking_lru/README.md">valid_checking_lru/README.md</a>, check out the details of each.
92+
The Prerequisites, Building & Running and Test section are placed in both <a href="dynamic_way_lru/README.md">dynamic_way_lru/README.md</a> and <a href="valid_checking_lru/README.md">valid_checking_lru/README.md</a>, check out the details of each.
9393

9494
---
9595

@@ -134,7 +134,7 @@ This project includes a large set of test data and sources, generated using Gene
134134

135135
<br>
136136

137-
- <a href="https://github.com/mellivorandy/cache-miss-analyzer/blob/main/data/answer.md">answer.md</a>: Shows the expected results for all test files and the tags in each cache set, useful for verifying correctness. The most frequently accessed tags appear first in each set.
137+
- <a href="data/answer.md">answer.md</a>: Shows the expected results for all test files and the tags in each cache set, useful for verifying correctness. The most frequently accessed tags appear first in each set.
138138

139139
<br>
140140

@@ -166,4 +166,4 @@ For major changes, please open an issue first.
166166

167167
### License
168168

169-
This project is licensed under <a href="https://github.com/mellivorandy/cache-miss-analyzer?tab=MIT-1-ov-file#readme">MIT license</a>.
169+
This project is licensed under <a href="LICENSE">MIT license</a>.

0 commit comments

Comments
 (0)