ruby: remove random seed
authorNilay Vaish <nilay@cs.wisc.edu>
Tue, 1 Sep 2015 20:50:33 +0000 (15:50 -0500)
committerNilay Vaish <nilay@cs.wisc.edu>
Tue, 1 Sep 2015 20:50:33 +0000 (15:50 -0500)
We no longer use the C library based random number generator: random().
Instead we use the C++ library provided rng.  So setting the random seed for
the RubySystem class has no effect.  Hence the variable and the corresponding
option are being dropped.

configs/ruby/Ruby.py
src/mem/ruby/system/RubySystem.py
src/mem/ruby/system/System.cc
src/mem/ruby/system/System.hh

index 44dbb925fac20295109ddce081853e2166133f65..36fe421154e89f05998db0c55b3f6c1400a9a480 100644 (file)
@@ -82,9 +82,6 @@ def define_options(parser):
     parser.add_option("--recycle-latency", type="int", default=10,
                       help="Recycle latency for ruby controller input buffers")
 
-    parser.add_option("--random_seed", type="int", default=1234,
-                      help="Used for seeding the random number generator")
-
     protocol = buildEnv['PROTOCOL']
     exec "import %s" % protocol
     eval("%s.define_options(parser)" % protocol)
@@ -236,7 +233,6 @@ def create_system(options, full_system, system, piobus = None, dma_ports = []):
 
     ruby._cpu_ports = cpu_sequencers
     ruby.num_of_sequencers = len(cpu_sequencers)
-    ruby.random_seed    = options.random_seed
 
     # Create a backing copy of physical memory in case required
     if options.access_backing_store:
index 81a9a181bce229fc3457185d33e61cc31ce7af11..c10f8117fd66ffa45b38f45a021a58e96af64c0f 100644 (file)
@@ -34,7 +34,6 @@ from SimpleMemory import *
 class RubySystem(ClockedObject):
     type = 'RubySystem'
     cxx_header = "mem/ruby/system/System.hh"
-    random_seed = Param.Int(1234, "random seed used by the simulation");
     randomization = Param.Bool(False,
         "insert random delays on message enqueue times");
     block_size_bytes = Param.UInt32(64,
index 6ebdd3ad66a6d91f045066146d01d87a3f011c3e..490a1f085842b10ea98c7ae2130dbfea2784b4ef 100644 (file)
@@ -45,7 +45,6 @@
 
 using namespace std;
 
-int RubySystem::m_random_seed;
 bool RubySystem::m_randomization;
 uint32_t RubySystem::m_block_size_bytes;
 uint32_t RubySystem::m_block_size_bits;
@@ -60,8 +59,6 @@ RubySystem::RubySystem(const Params *p)
     : ClockedObject(p), m_access_backing_store(p->access_backing_store),
       m_cache_recorder(NULL)
 {
-    m_random_seed = p->random_seed;
-    srandom(m_random_seed);
     m_randomization = p->randomization;
 
     m_block_size_bytes = p->block_size_bytes;
index 210a633e832402c961ce4782ad607f8aff8e0a82..c79732651895423fc76aff38938cb36cbffb734d 100644 (file)
@@ -70,7 +70,6 @@ class RubySystem : public ClockedObject
     ~RubySystem();
 
     // config accessors
-    static int getRandomSeed() { return m_random_seed; }
     static int getRandomization() { return m_randomization; }
     static uint32_t getBlockSizeBytes() { return m_block_size_bytes; }
     static uint32_t getBlockSizeBits() { return m_block_size_bits; }
@@ -130,7 +129,6 @@ class RubySystem : public ClockedObject
 
   private:
     // configuration parameters
-    static int m_random_seed;
     static bool m_randomization;
     static uint32_t m_block_size_bytes;
     static uint32_t m_block_size_bits;