In stats files you'll find 'IPC' values for each core which is 'instruction / cycles'. You can get CPI from this value. If you want to explicitly get only IPC values from stats file then you can use something like this:
./ptlstats -collect ooomachine/core0/commit/ipc results.stats Here '-collect' option is not correct, please look up the correct tree path from stats file. If you are using newer stats then you can use 'util/mstats.py' scipt: util/mstats.py -y --yaml-out -n base_machine::ooo_0::commit::ipc result.stats If you are running multicore simulations then you can use regex (python style) in your node search like below: util/mstats.py -y --yaml-out -n base_machine::ooo_.\*::commit::ipc result.stats - Avadh On Mon, Sep 26, 2011 at 7:36 AM, kuniors <[email protected]> wrote: > ** > Hello, > > I am writing to ask if anyone could point out how to extract CPI (cycles / > instruction) from the result.stats file? I went through the manual but > failed to do so. > > Thanks and regards, > > Kuniors > ================================= > kuniors2011-09-26 > > _______________________________________________ > http://www.marss86.org > Marss86-Devel mailing list > [email protected] > https://www.cs.binghamton.edu/mailman/listinfo/marss86-devel > >
_______________________________________________ http://www.marss86.org Marss86-Devel mailing list [email protected] https://www.cs.binghamton.edu/mailman/listinfo/marss86-devel
