ah450 / RiSC-16-Simulator

A simulator for the Ridiculously Simple Computer
MIT License
1 stars 1 forks source link

Statistics required #12

Open ah450 opened 10 years ago

ah450 commented 10 years ago

Project description only requires IPC, total cycles and hit ratio for caches

What about making it the following :

So we will not need to keep track of anything the Tomasulo statistics library besides these.

krmali commented 10 years ago

-for IPC, CPI, total instructions exectuted : I think is easy to be implemented by the number of instructions and the number of cycles(clock ticks).

-for %s: we can add variables for number of branchs , ALUs and MULs instructions in tomasulo class.

-for hit and miss ratios: Mohamed has to deal with this in the memory hierachy implementaion.