diff options
author | jkalamat <john.kalamatianos@amd.com> | 2016-06-09 11:24:55 -0400 |
---|---|---|
committer | jkalamat <john.kalamatianos@amd.com> | 2016-06-09 11:24:55 -0400 |
commit | 3724fb15faafaaca54cc7a500df9c1490a387049 (patch) | |
tree | bbd671b68ba971087a1cd45b208947c09a622d38 /configs/example | |
parent | e5b7b6780f9748b6f13ef91e3e22d53ebdf47968 (diff) | |
download | gem5-3724fb15faafaaca54cc7a500df9c1490a387049.tar.xz |
gpu-compute: parametrize Wavefront size
Eliminate the VSZ constant that defined the Wavefront size (in numbers of work
items); replaced it with a parameter in the GPU.py configuration script.
Changed all data structures dependent on the Wavefront size to be dynamically
sized. Legal values of Wavefront size are 16, 32, 64 for now and checked at
initialization time.
Diffstat (limited to 'configs/example')
-rw-r--r-- | configs/example/apu_se.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configs/example/apu_se.py b/configs/example/apu_se.py index 75819b505..27a26071b 100644 --- a/configs/example/apu_se.py +++ b/configs/example/apu_se.py @@ -250,7 +250,8 @@ for i in xrange(n_cu): vrfs = [] for j in xrange(options.simds_per_cu): for k in xrange(shader.n_wf): - wavefronts.append(Wavefront(simdId = j, wf_slot_id = k)) + wavefronts.append(Wavefront(simdId = j, wf_slot_id = k, + wfSize = options.wf_size)) vrfs.append(VectorRegisterFile(simd_id=j, num_regs_per_simd=options.vreg_file_size)) compute_units[-1].wavefronts = wavefronts |