gpu-compute: support in-order data delivery in GM pipe
authorTony Gutierrez <anthony.gutierrez@amd.com>
Thu, 27 Oct 2016 02:48:28 +0000 (22:48 -0400)
committerTony Gutierrez <anthony.gutierrez@amd.com>
Thu, 27 Oct 2016 02:48:28 +0000 (22:48 -0400)
commitde72e36619350f9b3e3a3dc8de63b490c4cecf2d
tree8bb5b723e8d3cec80d56bc61ebdc6141b1330b39
parentb63eb1302b006682bd227a5e236f7b3b95e9b8e8
gpu-compute: support in-order data delivery in GM pipe

this patch adds an ordered response buffer to the GM pipeline
to ensure in-order data delivery. the buffer is implemented as
a stl ordered map, which sorts the request in program order by
using their sequence ID. when requests return to the GM pipeline
they are marked as done. only the oldest request may be serviced
from the ordered buffer, and only if is marked as done.

the FIFO response buffers are kept and used in OoO delivery mode
configs/example/apu_se.py
src/arch/hsail/insts/decl.hh
src/arch/hsail/insts/mem_impl.hh
src/arch/hsail/insts/pseudo_inst.cc
src/gpu-compute/GPU.py
src/gpu-compute/compute_unit.cc
src/gpu-compute/global_memory_pipeline.cc
src/gpu-compute/global_memory_pipeline.hh