diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2014-05-23 06:07:02 -0500 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2014-05-23 06:07:02 -0500 |
commit | 1e26b7ea29ead4a67a060cc66cd72a193db9c766 (patch) | |
tree | c47f71cf7700cd3bee8ad6dc16a8f566c17d5e95 /src/cpu/o3/cpu.hh | |
parent | 53dd4497b3e554869adb9c7faede24e4fd797319 (diff) | |
download | gem5-1e26b7ea29ead4a67a060cc66cd72a193db9c766.tar.xz |
cpu: o3: remove stat totalCommittedInsts
This patch removes the stat totalCommittedInsts. This variable was used for
recording the total number of instructions committed across all the threads
of a core. The instructions committed by each thread are recorded invidually.
The total would now be generated by summing these individual counts.
Diffstat (limited to 'src/cpu/o3/cpu.hh')
-rw-r--r-- | src/cpu/o3/cpu.hh | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/cpu/o3/cpu.hh b/src/cpu/o3/cpu.hh index dadee5d56..f5f9897e7 100644 --- a/src/cpu/o3/cpu.hh +++ b/src/cpu/o3/cpu.hh @@ -843,8 +843,6 @@ class FullO3CPU : public BaseO3CPU Stats::Vector committedInsts; /** Stat for the number of committed ops (including micro ops) per thread. */ Stats::Vector committedOps; - /** Stat for the total number of committed instructions. */ - Stats::Scalar totalCommittedInsts; /** Stat for the CPI per thread. */ Stats::Formula cpi; /** Stat for the total CPI. */ |