diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2013-09-06 16:21:35 -0500 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2013-09-06 16:21:35 -0500 |
commit | 90bfbd9793e64b29d09f4ca4ee610ee08f82ea75 (patch) | |
tree | e14b49f9632b25cde8a32b5e5787a36a376e6dff /src/mem/ruby/system | |
parent | e9ae8b7d29e83fa2cad55006d2c6dc58115965cc (diff) | |
download | gem5-90bfbd9793e64b29d09f4ca4ee610ee08f82ea75.tar.xz |
ruby: network: convert to gem5 style stats
Diffstat (limited to 'src/mem/ruby/system')
-rw-r--r-- | src/mem/ruby/system/System.cc | 3 | ||||
-rw-r--r-- | src/mem/ruby/system/System.hh | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/src/mem/ruby/system/System.cc b/src/mem/ruby/system/System.cc index 4fb6bbde1..1f209f785 100644 --- a/src/mem/ruby/system/System.cc +++ b/src/mem/ruby/system/System.cc @@ -140,11 +140,9 @@ RubySystem::printStats(ostream& out) tm *localTime = localtime(&T); char buf[100]; strftime(buf, 100, "%b/%d/%Y %H:%M:%S", localTime); - out << "Real time: " << buf << endl; m_profiler_ptr->printStats(out); - m_network_ptr->printStats(out); } void @@ -410,7 +408,6 @@ void RubySystem::resetStats() { m_profiler_ptr->clearStats(); - m_network_ptr->clearStats(); for (uint32_t cntrl = 0; cntrl < m_abs_cntrl_vec.size(); cntrl++) { m_abs_cntrl_vec[cntrl]->clearStats(); } diff --git a/src/mem/ruby/system/System.hh b/src/mem/ruby/system/System.hh index ea55a23e0..474741bf7 100644 --- a/src/mem/ruby/system/System.hh +++ b/src/mem/ruby/system/System.hh @@ -104,9 +104,6 @@ class RubySystem : public ClockedObject void printStats(std::ostream& out); void resetStats(); - - uint64 getInstructionCount(int thread) { return 1; } - void print(std::ostream& out) const; void serialize(std::ostream &os); |