summaryrefslogtreecommitdiff
path: root/configs/example/etrace_replay.py
diff options
context:
space:
mode:
authorGabe Black <gabeblack@google.com>2017-05-07 23:57:47 -0700
committerGabe Black <gabeblack@google.com>2017-05-09 16:48:30 +0000
commit942e2957994fc6779a5540c3b94a8756258e3149 (patch)
treed6b721cafc5dbadcf00fc2ca6bf2f8cb59d5c00d /configs/example/etrace_replay.py
parent80c391730b6c4c78644717617d766c9679e99c45 (diff)
downloadgem5-942e2957994fc6779a5540c3b94a8756258e3149.tar.xz
config: Fix up some configs to not use CPU aliases.
Support for CPU aliases were removed recently. Change-Id: I3c1173dc34170d8639d95e52bf660f248848f77f Reviewed-on: https://gem5-review.googlesource.com/3100 Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com> Reviewed-by: Jason Lowe-Power <jason@lowepower.com> Maintainer: Jason Lowe-Power <jason@lowepower.com>
Diffstat (limited to 'configs/example/etrace_replay.py')
-rw-r--r--configs/example/etrace_replay.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/configs/example/etrace_replay.py b/configs/example/etrace_replay.py
index 0b0e37ffd..385a2d15f 100644
--- a/configs/example/etrace_replay.py
+++ b/configs/example/etrace_replay.py
@@ -65,9 +65,9 @@ if args:
numThreads = 1
-if options.cpu_type != "trace":
+if options.cpu_type != "TraceCPU":
fatal("This is a script for elastic trace replay simulation, use "\
- "--cpu-type=trace\n");
+ "--cpu-type=TraceCPU\n");
if options.num_cpus > 1:
fatal("This script does not support multi-processor trace replay.\n")