From: Nilay Vaish Date: Tue, 4 Aug 2015 03:44:27 +0000 (-0500) Subject: ruby: correctly number the sequencer in MESI_Three_Level.py X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3d782f8df7450af529d30c0488a5c12e0701dbed;p=gem5.git ruby: correctly number the sequencer in MESI_Three_Level.py --- 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)