changeset 39e42ccddd63 in /z/repo/m5
details: http://repo.m5sim.org/m5?cmd=changeset;node=39e42ccddd63
description:
        network: adjusted default endpoint bandwidth

        The simple network's endpoint bandwidth value is used to adjust the 
overall
        bandwidth of the network.  Specifically, the ration between endpoint 
bandwidth
        and the MESSAGE_SIZE_MULTIPLIER determines the increase.  By setting 
the value
        to 1000, that means the bandwdith factor specified in the links 
translates to
        the link bandwidth in bytes.  Previously, it was increasing that value 
by 10.

        This patch will likely require a reset of the ruby regression tester 
stats.

diffstat:

 src/mem/ruby/network/simple/SimpleNetwork.py |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (10 lines):

diff -r f113f73dd494 -r 39e42ccddd63 
src/mem/ruby/network/simple/SimpleNetwork.py
--- a/src/mem/ruby/network/simple/SimpleNetwork.py      Thu Apr 28 17:18:14 
2011 -0700
+++ b/src/mem/ruby/network/simple/SimpleNetwork.py      Thu Apr 28 17:18:14 
2011 -0700
@@ -34,5 +34,5 @@
     type = 'SimpleNetwork'
     buffer_size = Param.Int(0,
         "default buffer size; 0 indicates infinite buffering");
-    endpoint_bandwidth = Param.Int(10000, "");
+    endpoint_bandwidth = Param.Int(1000, "bandwidth adjustment factor");
     adaptive_routing = Param.Bool(False, "enable adaptive routing");
_______________________________________________
m5-dev mailing list
m5-dev@m5sim.org
http://m5sim.org/mailman/listinfo/m5-dev

Reply via email to