summaryrefslogtreecommitdiff
path: root/configs/example/fs.py
diff options
context:
space:
mode:
Diffstat (limited to 'configs/example/fs.py')
-rw-r--r--configs/example/fs.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/configs/example/fs.py b/configs/example/fs.py
index 62a298559..6fa0f8a11 100644
--- a/configs/example/fs.py
+++ b/configs/example/fs.py
@@ -197,9 +197,18 @@ def build_test_system(np):
if (options.caches or options.l2cache):
fatal("You cannot use fastmem in combination with caches!")
+ if options.simpoint_profile:
+ if not options.fastmem:
+ # Atomic CPU checked with fastmem option already
+ fatal("SimPoint generation should be done with atomic cpu and fastmem")
+ if np > 1:
+ fatal("SimPoint generation not supported with more than one CPUs")
+
for i in xrange(np):
if options.fastmem:
test_sys.cpu[i].fastmem = True
+ if options.simpoint_profile:
+ test_sys.cpu[i].addSimPointProbe(options.simpoint_interval)
if options.checker:
test_sys.cpu[i].addCheckerCpu()
test_sys.cpu[i].createThreads()