mem-ruby: Enable set size increase
[gem5.git] / src / mem / ruby / common / Set.hh
index cb01c9613b8a8e2c78b89b1936a895b4f4669e01..aba38f51e77e24e01240fd9eb1dcf8105f6d5a8b 100644 (file)
 #include "base/logging.hh"
 #include "mem/ruby/common/TypeDefines.hh"
 
-// Change for systems with more than 64 controllers of a particular type.
-const int NUMBER_BITS_PER_SET = 64;
-
 class Set
 {
   private:
     // Number of bits in use in this set.
+    // can be defined in build_opts file (default=64).
     int m_nSize;
     std::bitset<NUMBER_BITS_PER_SET> bits;