# HG changeset patch # User Derek Hower <[email protected]> # Date 1258566823 21600 # Node ID 92135335e177148e0fb24f5b482b3da8a8c646c0 # Parent 14d7cd6f09a6d692c12057306b6b72a31cad6a7c ruby: turned off randomization by default, turned on memory controller random arbitrate
diff --git a/src/mem/ruby/config/defaults.rb b/src/mem/ruby/config/defaults.rb --- a/src/mem/ruby/config/defaults.rb +++ b/src/mem/ruby/config/defaults.rb @@ -117,7 +117,7 @@ default_param :mem_ctl_latency, Integer, 12 default_param :refresh_period, Integer, 1560 default_param :tFaw, Integer, 0 - default_param :mem_random_arbitrate, Integer, 0 + default_param :mem_random_arbitrate, Integer, 11 default_param :mem_fixed_delay, Integer, 0 end @@ -195,9 +195,10 @@ # When set to true, the simulation will insert random delays on # message enqueue times. Note that even if this is set to false, # you can still have a non-deterministic simulation if random seed - # is set to "rand". This is because the Ruby swtiches use random - # link priority elevation - default_param :randomization, Boolean, true + # is set to "rand". This is used mainly to debug protocols by forcing + # really strange interleavings and should not be used for + # performance runs. + default_param :randomization, Boolean, false # tech_nm is the device size used to calculate latency and area # information about system components _______________________________________________ m5-dev mailing list [email protected] http://m5sim.org/mailman/listinfo/m5-dev
