diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2007-06-27 20:54:13 -0700 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2007-06-27 20:54:13 -0700 |
commit | 9117c94f9c74f0674d75731385a106d17a1dee09 (patch) | |
tree | da101a10810e144d8203ef1e65b384ba76dde629 /configs | |
parent | c4903e088247ad187356864459d2e4be77d97154 (diff) | |
download | gem5-9117c94f9c74f0674d75731385a106d17a1dee09.tar.xz |
Get rid of coherence protocol object.
--HG--
extra : convert_revision : 4ff144342dca23af9a12a2169ca318a002654b42
Diffstat (limited to 'configs')
-rw-r--r-- | configs/example/memtest.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/configs/example/memtest.py b/configs/example/memtest.py index 0bc12e7bd..0e6260b5d 100644 --- a/configs/example/memtest.py +++ b/configs/example/memtest.py @@ -48,8 +48,6 @@ parser.add_option("-m", "--maxtick", type="int", default=m5.MaxTick, parser.add_option("-n", "--numtesters", type="int", default=8, metavar="N", help="Number of tester pseudo-CPUs [default: %default]") -parser.add_option("-p", "--protocol", default="moesi", - help="Coherence protocol [default: %default]") parser.add_option("-f", "--functional", type="int", default=0, metavar="PCT", @@ -95,7 +93,6 @@ class L1(BaseCache): block_size = block_size mshrs = num_l1_mshrs tgts_per_mshr = 8 - protocol = CoherenceProtocol(protocol=options.protocol) # ---------------------- # Base L2 Cache @@ -107,7 +104,6 @@ class L2(BaseCache): mshrs = num_l2_mshrs tgts_per_mshr = 16 write_buffers = 8 - protocol = CoherenceProtocol(protocol=options.protocol) if options.numtesters > block_size: print "Error: Number of testers limited to %s because of false sharing" \ |