gpu-compute: Changing reconvergenceStack type
Review Request #3532 - Created June 29, 2016 and submitted
| Information | |
|---|---|
| Tony Gutierrez | |
| gem5 | |
| default | |
| Reviewers | |
| Default | |
Changeset 11553:4ec14dd08cc3
---------------------------
gpu-compute: Changing reconvergenceStack type
std::stack has no iterators, therefore the reconvergence stack can't be
iterated without poping elements off. We will be using std::list instead to be
able to iterate for saving and restoring purposes.
Review request changed
Updated (Aug. 15, 2016, 1:26 p.m.)
Description: |
|
|---|
Posted (Aug. 15, 2016, 1:27 p.m.)
Any comments before we ship this?
Review request changed
Updated (Aug. 15, 2016, 1:27 p.m.)
Summary: |
|
|---|
Posted (Aug. 15, 2016, 1:50 p.m.)
-
src/gpu-compute/wavefront.hh (Diff revision 1) -
May want to consider a std::deque, but no need to worry if this is not performance critical.
