diff options
Diffstat (limited to 'src/mem/ruby/profiler/CacheProfiler.cc')
-rw-r--r-- | src/mem/ruby/profiler/CacheProfiler.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mem/ruby/profiler/CacheProfiler.cc b/src/mem/ruby/profiler/CacheProfiler.cc index 474506734..50581fcf9 100644 --- a/src/mem/ruby/profiler/CacheProfiler.cc +++ b/src/mem/ruby/profiler/CacheProfiler.cc @@ -67,10 +67,6 @@ void CacheProfiler::printStats(ostream& out) const out << description << "_total_prefetches: " << m_prefetches << endl; out << description << "_total_sw_prefetches: " << m_sw_prefetches << endl; out << description << "_total_hw_prefetches: " << m_hw_prefetches << endl; - - double trans_executed = double(g_system_ptr->getProfiler()->getTotalTransactionsExecuted()); - - out << description << "_misses_per_transaction: " << double(m_misses) / trans_executed << endl; out << endl; int requests = 0; |