changeset f113f73dd494 in /z/repo/m5
details: http://repo.m5sim.org/m5?cmd=changeset;node=f113f73dd494
description:
network: removed the unused network-wide latency param
diffstat:
src/mem/ruby/network/Network.cc | 1 -
src/mem/ruby/network/Network.hh | 2 --
src/mem/ruby/network/Network.py | 2 --
3 files changed, 0 insertions(+), 5 deletions(-)
diffs (40 lines):
diff -r 36987780169e -r f113f73dd494 src/mem/ruby/network/Network.cc
--- a/src/mem/ruby/network/Network.cc Thu Apr 28 17:18:14 2011 -0700
+++ b/src/mem/ruby/network/Network.cc Thu Apr 28 17:18:14 2011 -0700
@@ -36,7 +36,6 @@
{
m_virtual_networks = p->number_of_virtual_networks;
m_topology_ptr = p->topology;
- m_link_latency = p->link_latency;
m_control_msg_size = p->control_msg_size;
// Total nodes/controllers in network
diff -r 36987780169e -r f113f73dd494 src/mem/ruby/network/Network.hh
--- a/src/mem/ruby/network/Network.hh Thu Apr 28 17:18:14 2011 -0700
+++ b/src/mem/ruby/network/Network.hh Thu Apr 28 17:18:14 2011 -0700
@@ -67,7 +67,6 @@
virtual void init();
int getNumberOfVirtualNetworks() { return m_virtual_networks; }
- int getLinkLatency() { return m_link_latency; }
int MessageSizeType_to_int(MessageSizeType size_type);
// returns the queue requested for the given component
@@ -108,7 +107,6 @@
int m_nodes;
int m_virtual_networks;
Topology* m_topology_ptr;
- int m_link_latency;
int m_control_msg_size;
int m_data_msg_size;
};
diff -r 36987780169e -r f113f73dd494 src/mem/ruby/network/Network.py
--- a/src/mem/ruby/network/Network.py Thu Apr 28 17:18:14 2011 -0700
+++ b/src/mem/ruby/network/Network.py Thu Apr 28 17:18:14 2011 -0700
@@ -47,6 +47,4 @@
abstract = True
number_of_virtual_networks = Param.Int(10, "");
topology = Param.Topology("");
- link_latency = Param.Int(1,
- "local memory latency ?? NetworkLinkLatency");
control_msg_size = Param.Int(8, "");
_______________________________________________
m5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/m5-dev