790 views
2 votes
2 votes
consider single level  cache woth access time 5ns  line size of 128 bytes and hit ratio is 0.97.Main memory uses block transfer capability that has first 8 bytes access time 50 ns and for remaining words 10ns What is access time when there is cache miss(Assume cache waits until line is fetched from memory  and then reexecutes for hit)

2 Answers

Best answer
3 votes
3 votes
Access Time on miss = Cache access + Memory fetch + Cache access (re-access cache as mentioned in question)

$= 5 + (50 + (128-8)/8 \times 10) + 5 \\= 210 ns$
selected by

No related questions found