126k views
2 votes
In this exercise, we will examine how replacement policies affect miss rate. Assume a two-way set associative cache with four one-word blocks. Consider the following word address sequence: 0, 1, 2, 3, 4, 2, 3, 4, 5, 6, 7, 0, 1, 2, 3, 4, 5, 6, 7, 0. Consider the following address sequence: 0, 2, 4, 8, 10, 12, 14, 16, 0

5.20.3 [5] <ยงยง5.4, 5.8> Simulate a random replacement policy by flipping a coin. For example, "heads" means to evict the first block in a set and "tails" means to evict the second block in a set. How many hits does this address sequence exhibit?

User Ldx
by
5.4k points

2 Answers

6 votes
dont relaly see if you can do this but mostly
User Erasmus Cedernaes
by
5.7k points
5 votes

Answer: Five hits

Explanation: The access sequence can be represented using: H, representing "head" and T representing "tail"

H T H T

0 1 2 3

0 1 2 3

0 2 3 4

4 5 6 7

4 5 6 7

User Sam Daniel
by
6.4k points