diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2015-12-17 17:07:22 -0500 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2015-12-17 17:07:22 -0500 |
commit | 219f1c1a7fb1939f5a65fb692f399220d90dc056 (patch) | |
tree | 1c04efbf632d27cccbb0d775d3b48c06acb812a7 /configs/example/memtest.py | |
parent | 97887eb6dc9e548c9b5719727fd4783ef157917c (diff) | |
download | gem5-219f1c1a7fb1939f5a65fb692f399220d90dc056.tar.xz |
configs: Make the default memtest behaviour more complex
Add functional and uncacheable accesses by default.
Diffstat (limited to 'configs/example/memtest.py')
-rw-r--r-- | configs/example/memtest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configs/example/memtest.py b/configs/example/memtest.py index f8328c582..a3298890b 100644 --- a/configs/example/memtest.py +++ b/configs/example/memtest.py @@ -85,11 +85,11 @@ parser.add_option("-t", "--testers", type="string", default="1:1:0:2", help="Colon-separated tester hierarchy specification, " "see script comments for details " "[default: %default]") -parser.add_option("-f", "--functional", type="int", default=0, +parser.add_option("-f", "--functional", type="int", default=10, metavar="PCT", help="Target percentage of functional accesses " "[default: %default]") -parser.add_option("-u", "--uncacheable", type="int", default=0, +parser.add_option("-u", "--uncacheable", type="int", default=10, metavar="PCT", help="Target percentage of uncacheable accesses " "[default: %default]") |