diff options
author | Tony Gutierrez <anthony.gutierrez@amd.com> | 2018-01-05 18:10:47 -0500 |
---|---|---|
committer | Anthony Gutierrez <anthony.gutierrez@amd.com> | 2018-01-08 19:30:32 +0000 |
commit | 9fef867fc92ed4a8ee39c0f9aa1092d97e5b3247 (patch) | |
tree | 1f098026a0bfea0675c15c7ef3b41a29703a73a5 | |
parent | 954bd6b08565c02abf4fec06cdcbc2e6cd25cb04 (diff) | |
download | gem5-9fef867fc92ed4a8ee39c0f9aa1092d97e5b3247.tar.xz |
gpu-compute: call createThreads() on cpu objs in apu_se.py
commit 8ad26e2688b8736f9290086bb4026cc7500429e9
cpu: Don't override ISA if provided by user
removed the default ISA from the BaseCPU, and instead relies on
createThreads() to initiate a default ISA if none is specified. the apu_se.py
script, however does not call creatThreads() leading to a fatal when
constructing CPU objects. this patch adds the appropriate calls to
createThreads() inside apu_se.py.
Change-Id: I16a5929454c59d68a3f1b7b3858c48a70cb76412
Reviewed-on: https://gem5-review.googlesource.com/7101
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Reviewed-by: Michael LeBeane <Michael.Lebeane@amd.com>
Maintainer: Anthony Gutierrez <anthony.gutierrez@amd.com>
-rw-r--r-- | configs/example/apu_se.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configs/example/apu_se.py b/configs/example/apu_se.py index f93442d62..012fdd36b 100644 --- a/configs/example/apu_se.py +++ b/configs/example/apu_se.py @@ -392,6 +392,7 @@ else: # OpenCL driver driver = ClDriver(filename="hsa", codefile=kernel_files) for cpu in cpu_list: + cpu.createThreads() cpu.workload = Process(executable = executable, cmd = [options.cmd] + options.options.split(), drivers = [driver]) @@ -401,6 +402,7 @@ for cp in cp_list: if fast_forward: for i in xrange(len(future_cpu_list)): future_cpu_list[i].workload = cpu_list[i].workload + future_cpu_list[i].createThreads() ########################## Create the overall system ######################## # List of CPUs that must be switched when moving between KVM and simulation |