retagged by
1,008 views

2 Answers

Best answer
2 votes
2 votes
TA1 = 0.95 * 30(HIT) + 0.05 * 330( CACHE ACCESS TIME + MEMORY ACCESS)

TA2 = 0.95 * 30(HIT) + 0.05 * 300(MAIN MEMORY ACCESS as searching is done simultaneously)

 

Therefore TA1 - TA2 = 1.5 ns
selected by
0 votes
0 votes
T1 = .95(30)+0.05(30+300) = 28.5 +16.5 = 45

T2 =  .95(30)+0.05(30+270)  = 28.5 + 15.0 = 43.5

T1 - T2 = 1.5 ns

Related questions

751
views
1 answers
1 votes
Sumaiya23 asked Jan 18, 2018
751 views
Suppose the time taken to write in cache is tc and time to write in main memory is tm. If write back policy is used, only the main memory is written and time ... (time taken would be tm) or serially (time taken would be tc + tm)?
2.5k
views
0 answers
0 votes
Parshu gate asked Nov 20, 2017
2,531 views
please explain how to understand this problem
1.6k
views
2 answers
2 votes
1.7k
views
1 answers
5 votes
sumit chakraborty asked Nov 1, 2017
1,658 views
Suppose cache with hit ratio 'Ch' and access time 'Ct' is given and main memory with hit ratio 'Mh' and access time 'Mt' is given and a disk with access time 'Dt' is ... ) * ( Ct + Mt + Dt)If so, why the addition and is it implicit always ?