diff options
Diffstat (limited to 'configs')
-rw-r--r-- | configs/ruby/MESI_Three_Level.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configs/ruby/MESI_Three_Level.py b/configs/ruby/MESI_Three_Level.py index 60001864c..a4074e842 100644 --- a/configs/ruby/MESI_Three_Level.py +++ b/configs/ruby/MESI_Three_Level.py @@ -108,7 +108,8 @@ def create_system(options, full_system, system, dma_ports, ruby_system): clk_domain=system.cpu[i].clk_domain, ruby_system = ruby_system) - cpu_seq = RubySequencer(version = i, icache = l0i_cache, + cpu_seq = RubySequencer(version = i * num_cpus_per_cluster + j, + icache = l0i_cache, clk_domain=system.cpu[i].clk_domain, dcache = l0d_cache, ruby_system = ruby_system) |