From: Steve Reinhardt Date: Sun, 15 Jul 2007 20:22:49 +0000 (-0700) Subject: Add --force-bus option to memtest.py. X-Git-Tag: m5_2.0_beta4~195^2~50^2~4 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ad560a6642fbb752e608c02048fc2103e60093b3;p=gem5.git Add --force-bus option to memtest.py. --HG-- extra : convert_revision : 101735cca426903704ff2edaff051fa7c5bfc46c --- diff --git a/configs/example/memtest.py b/configs/example/memtest.py index 47853ffab..c9149865a 100644 --- a/configs/example/memtest.py +++ b/configs/example/memtest.py @@ -52,6 +52,8 @@ parser.add_option("-n", "--numtesters", type="int", default=8, parser.add_option("-t", "--treespec", type="string", help="Colon-separated multilevel tree specification") +parser.add_option("--force-bus", action="store_true", + help="Use bus between levels even with single cache") parser.add_option("-f", "--functional", type="int", default=0, metavar="PCT", @@ -129,7 +131,7 @@ system = System(funcmem = PhysicalMemory(), def make_level(spec, prototypes, attach_obj, attach_port): fanout = spec[0] parent = attach_obj # use attach obj as config parent too - if fanout > 1: + if fanout > 1 or options.force_bus: new_bus = Bus(clock="500MHz", width=16) new_bus.port = getattr(attach_obj, attach_port) parent.cpu_side_bus = new_bus