From: Brad Beckmann Date: Mon, 22 Mar 2010 04:22:21 +0000 (-0700) Subject: ruby: Changed the default set size to 1 X-Git-Tag: stable_2012_02_02~1453 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f9408f984f62cdeaddbf22189f1f540546ba4ce1;p=gem5.git 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. --- diff --git a/src/mem/ruby/system/System.hh b/src/mem/ruby/system/System.hh index 6a6b0165e..7868da4b6 100644 --- a/src/mem/ruby/system/System.hh +++ b/src/mem/ruby/system/System.hh @@ -66,7 +66,7 @@ class MemoryVector; * 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: