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.
This commit is contained in:
parent
61f1d9a3d7
commit
f9408f984f
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue