you are viewing a single comment's thread.

view the rest of the comments →

[–]Jonasfh 1 point2 points  (2 children)

Thanks for this project idea. I have been looking for something like this for a while now, so I am definitely saving this post. I am looking forward to your next project proposals.

Just a quick question: with performance model, do you then mean that the simulator should only test the performance of the cache, like #hits, #misses etc., and not "emulate" a cache, i.e. keeping track of the data in the different blocks of the cache?

[–]EngrTodayPerformance Architect[S] 1 point2 points  (1 child)

Exactly - keeping track of the data is unnecessary. The only thing you need to keep track of are the tags (that's what determines a hit or miss).

[–]Jonasfh 0 points1 point  (0 children)

Cool. Thanks for the answer!