diff options
author | Brad Beckmann <Brad.Beckmann@amd.com> | 2010-08-30 12:07:21 -0700 |
---|---|---|
committer | Brad Beckmann <Brad.Beckmann@amd.com> | 2010-08-30 12:07:21 -0700 |
commit | 08b360e0e003228d3ef2ee6ea1b5bb6eaf8da48c (patch) | |
tree | 9edd34a6af20973d13fd41c78533051d37c87660 /configs/ruby | |
parent | 6d207bf40d0068c4dc9de6fd50004e36e1bd37b6 (diff) | |
download | gem5-08b360e0e003228d3ef2ee6ea1b5bb6eaf8da48c.tar.xz |
config: minor fix to probe filter index setting
Diffstat (limited to 'configs/ruby')
-rw-r--r-- | configs/ruby/MOESI_hammer.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configs/ruby/MOESI_hammer.py b/configs/ruby/MOESI_hammer.py index d1c1cc2b0..17c1b20c4 100644 --- a/configs/ruby/MOESI_hammer.py +++ b/configs/ruby/MOESI_hammer.py @@ -152,7 +152,8 @@ def create_system(options, system, piobus, dma_devices): dir_size = MemorySize('0B') dir_size.value = mem_module_size - pf = ProbeFilter(size = pf_size, assoc = 4) + pf = ProbeFilter(size = pf_size, assoc = 4, + start_index_bit = pf_start_bit) dir_cntrl = Directory_Controller(version = i, directory = \ @@ -164,8 +165,7 @@ def create_system(options, system, piobus, dma_devices): options.map_levels), probeFilter = pf, memBuffer = mem_cntrl, - probe_filter_enabled = \ - options.pf_on) + probe_filter_enabled = options.pf_on) if options.recycle_latency: dir_cntrl.recycle_latency = options.recycle_latency |