From 3d782f8df7450af529d30c0488a5c12e0701dbed Mon Sep 17 00:00:00 2001 From: Nilay Vaish Date: Mon, 3 Aug 2015 22:44:27 -0500 Subject: [PATCH] ruby: correctly number the sequencer in MESI_Three_Level.py --- configs/ruby/MESI_Three_Level.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)