summaryrefslogtreecommitdiff
path: root/configs/example/apu_se.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/apu_se.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/apu_se.py')
-rw-r--r--configs/example/apu_se.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/configs/example/apu_se.py b/configs/example/apu_se.py
index 28ba92ba1..f93442d62 100644
--- a/configs/example/apu_se.py
+++ b/configs/example/apu_se.py
@@ -181,9 +181,9 @@ if buildEnv['PROTOCOL'] == 'None':
fatal("GPU model requires ruby")
# Currently the gpu model requires only timing or detailed CPU
-if not (options.cpu_type == "timing" or
- options.cpu_type == "detailed"):
- fatal("GPU model requires timing or detailed CPU")
+if not (options.cpu_type == "TimingSimpleCPU" or
+ options.cpu_type == "DerivO3CPU"):
+ fatal("GPU model requires TimingSimpleCPU or DerivO3CPU")
# This file can support multiple compute units
assert(options.num_compute_units >= 1)