diff options
author | Tony Gutierrez <anthony.gutierrez@amd.com> | 2016-10-26 22:47:19 -0400 |
---|---|---|
committer | Tony Gutierrez <anthony.gutierrez@amd.com> | 2016-10-26 22:47:19 -0400 |
commit | 00a6346c91f6e09eb9c0f4cf61a7d72932a1282f (patch) | |
tree | 3ca7c5b2dedd8ed8151566b4d5abec95a06f4faf /src/gpu-compute/gpu_dyn_inst.cc | |
parent | 7ac38849abaf6aeccf39137bc8acb9e44d192e82 (diff) | |
download | gem5-00a6346c91f6e09eb9c0f4cf61a7d72932a1282f.tar.xz |
hsail, gpu-compute: remove doGm/SmReturn add completeAcc
we are removing doGmReturn from the GM pipe, and adding completeAcc()
implementations for the HSAIL mem ops. the behavior in doGmReturn is
dependent on HSAIL and HSAIL mem ops, however the completion phase
of memory ops in machine ISA can be very different, even amongst individual
machine ISA mem ops. so we remove this functionality from the pipeline and
allow it to be implemented by the individual instructions.
Diffstat (limited to 'src/gpu-compute/gpu_dyn_inst.cc')
-rw-r--r-- | src/gpu-compute/gpu_dyn_inst.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gpu-compute/gpu_dyn_inst.cc b/src/gpu-compute/gpu_dyn_inst.cc index ec6340360..7092a7a40 100644 --- a/src/gpu-compute/gpu_dyn_inst.cc +++ b/src/gpu-compute/gpu_dyn_inst.cc @@ -155,6 +155,12 @@ GPUDynInst::initiateAcc(GPUDynInstPtr gpuDynInst) time = 0; } +void +GPUDynInst::completeAcc(GPUDynInstPtr gpuDynInst) +{ + _staticInst->completeAcc(gpuDynInst); +} + /** * accessor methods for the attributes of * the underlying GPU static instruction |