diff -r 7d7f635e7447 configs/example/se.py --- a/configs/example/se.py Tue Apr 22 03:12:15 2014 -0400 +++ b/configs/example/se.py Tue Apr 22 20:40:09 2014 +0200 @@ -235,6 +235,8 @@ Ruby.create_system(options, system) assert(options.num_cpus == len(system.ruby._cpu_ports)) + system.ruby.clk_domain = SrcClockDomain(clock = options.ruby_clock, + voltage_domain = system.voltage_domain) for i in xrange(np): ruby_port = system.ruby._cpu_ports[i] diff -r 7d7f635e7447 configs/ruby/MESI_Three_Level.py --- a/configs/ruby/MESI_Three_Level.py Tue Apr 22 03:12:15 2014 -0400 +++ b/configs/ruby/MESI_Three_Level.py Tue Apr 22 20:40:09 2014 +0200 @@ -102,9 +102,11 @@ l0_cntrl = L0Cache_Controller(version = i*num_cpus_per_cluster + j, Icache = l0i_cache, Dcache = l0d_cache, send_evictions = (options.cpu_type == "detailed"), + clk_domain=system.cpu_clk_domain, ruby_system = ruby_system) cpu_seq = RubySequencer(version = i, icache = l0i_cache, + clk_domain=system.cpu_clk_domain, dcache = l0d_cache, ruby_system = ruby_system) l0_cntrl.sequencer = cpu_seq diff -r 7d7f635e7447 configs/ruby/MESI_Two_Level.py --- a/configs/ruby/MESI_Two_Level.py Tue Apr 22 03:12:15 2014 -0400 +++ b/configs/ruby/MESI_Two_Level.py Tue Apr 22 20:40:09 2014 +0200 @@ -95,12 +95,14 @@ options.cpu_type == "detailed"), prefetcher = prefetcher, ruby_system = ruby_system, + clk_domain=system.cpu_clk_domain, transitions_per_cycle=options.ports, enable_prefetch = False) cpu_seq = RubySequencer(version = i, icache = l1i_cache, dcache = l1d_cache, + clk_domain=system.cpu_clk_domain, ruby_system = ruby_system) l1_cntrl.sequencer = cpu_seq diff -r 7d7f635e7447 configs/ruby/MI_example.py --- a/configs/ruby/MI_example.py Tue Apr 22 03:12:15 2014 -0400 +++ b/configs/ruby/MI_example.py Tue Apr 22 20:40:09 2014 +0200 @@ -82,11 +82,13 @@ send_evictions = ( options.cpu_type == "detailed"), transitions_per_cycle = options.ports, + clk_domain=system.cpu_clk_domain, ruby_system = ruby_system) cpu_seq = RubySequencer(version = i, icache = cache, dcache = cache, + clk_domain=system.cpu_clk_domain, ruby_system = ruby_system) l1_cntrl.sequencer = cpu_seq diff -r 7d7f635e7447 configs/ruby/MOESI_CMP_directory.py --- a/configs/ruby/MOESI_CMP_directory.py Tue Apr 22 03:12:15 2014 -0400 +++ b/configs/ruby/MOESI_CMP_directory.py Tue Apr 22 20:40:09 2014 +0200 @@ -92,11 +92,13 @@ send_evictions = ( options.cpu_type == "detailed"), transitions_per_cycle = options.ports, + clk_domain=system.cpu_clk_domain, ruby_system = ruby_system) cpu_seq = RubySequencer(version = i, icache = l1i_cache, dcache = l1d_cache, + clk_domain=system.cpu_clk_domain, ruby_system = ruby_system) l1_cntrl.sequencer = cpu_seq diff -r 7d7f635e7447 configs/ruby/MOESI_CMP_token.py --- a/configs/ruby/MOESI_CMP_token.py Tue Apr 22 03:12:15 2014 -0400 +++ b/configs/ruby/MOESI_CMP_token.py Tue Apr 22 20:40:09 2014 +0200 @@ -112,11 +112,13 @@ send_evictions = ( options.cpu_type == "detailed"), transitions_per_cycle = options.ports, + clk_domain=system.cpu_clk_domain, ruby_system = ruby_system) cpu_seq = RubySequencer(version = i, icache = l1i_cache, dcache = l1d_cache, + clk_domain=system.cpu_clk_domain, ruby_system = ruby_system) l1_cntrl.sequencer = cpu_seq diff -r 7d7f635e7447 configs/ruby/MOESI_hammer.py --- a/configs/ruby/MOESI_hammer.py Tue Apr 22 03:12:15 2014 -0400 +++ b/configs/ruby/MOESI_hammer.py Tue Apr 22 20:40:09 2014 +0200 @@ -105,11 +105,13 @@ send_evictions = ( options.cpu_type == "detailed"), transitions_per_cycle = options.ports, + clk_domain=system.cpu_clk_domain, ruby_system = ruby_system) cpu_seq = RubySequencer(version = i, icache = l1i_cache, dcache = l1d_cache, + clk_domain=system.cpu_clk_domain, ruby_system = ruby_system) l1_cntrl.sequencer = cpu_seq