changeset 9a48c447bc19 in /z/repo/m5
details: http://repo.m5sim.org/m5?cmd=changeset;node=9a48c447bc19
description:
        ruby: Changed the default set size to 1

        Previously, the set size was set to 4.  This was mostly do to the fact 
that a
        crazy graduate student use to create networks with 256 l2 cache banks.  
Now it
        is far more likely that users will create systems with less than 64 of 
any
        particular controller type.  Therefore Ruby should be optimized for a 
set size
        of 1.

diffstat:

1 file changed, 1 insertion(+), 1 deletion(-)
src/mem/ruby/system/System.hh |    2 +-

diffs (12 lines):

diff -r 56dfde6abe48 -r 9a48c447bc19 src/mem/ruby/system/System.hh
--- a/src/mem/ruby/system/System.hh     Sun Mar 21 21:22:21 2010 -0700
+++ b/src/mem/ruby/system/System.hh     Sun Mar 21 21:22:21 2010 -0700
@@ -66,7 +66,7 @@
  * set sizes at the cost of a (much) larger memory footprint
  *
  */
-const int NUMBER_WORDS_PER_SET = 4;
+const int NUMBER_WORDS_PER_SET = 1;
 
 class RubySystem : public SimObject {
 public:
_______________________________________________
m5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/m5-dev

Reply via email to