projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
03f2b8c
)
ruby: correctly number the sequencer in MESI_Three_Level.py
author
Nilay Vaish
<nilay@cs.wisc.edu>
Tue, 4 Aug 2015 03:44:27 +0000
(22:44 -0500)
committer
Nilay Vaish
<nilay@cs.wisc.edu>
Tue, 4 Aug 2015 03:44:27 +0000
(22:44 -0500)
configs/ruby/MESI_Three_Level.py
patch
|
blob
|
history
diff --git
a/configs/ruby/MESI_Three_Level.py
b/configs/ruby/MESI_Three_Level.py
index 60001864c3dc39c7a180ac221e6d491040febb74..a4074e8425706c40dfaa2abd99c739394c73719f 100644
(file)
--- 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)