diff options
author | Alexandru Dutu <alexandru.dutu@amd.com> | 2016-09-16 12:26:52 -0400 |
---|---|---|
committer | Alexandru Dutu <alexandru.dutu@amd.com> | 2016-09-16 12:26:52 -0400 |
commit | 589e13a23b3969c1137d2170a8638356d0c0fc65 (patch) | |
tree | 3ccfcde3173d9d3c234e0fa9ce130931786981eb /src/gpu-compute/local_memory_pipeline.cc | |
parent | e9fe1b838b94eb46f165b9adb6281a862b172dfe (diff) | |
download | gem5-589e13a23b3969c1137d2170a8638356d0c0fc65.tar.xz |
gpu-compute: Wavefront refactoring
Renaming members of the Wavefront class in accordance with the style guide.
Diffstat (limited to 'src/gpu-compute/local_memory_pipeline.cc')
-rw-r--r-- | src/gpu-compute/local_memory_pipeline.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gpu-compute/local_memory_pipeline.cc b/src/gpu-compute/local_memory_pipeline.cc index a970d8f9b..e2238bf45 100644 --- a/src/gpu-compute/local_memory_pipeline.cc +++ b/src/gpu-compute/local_memory_pipeline.cc @@ -170,16 +170,16 @@ LocalMemPipeline::doSmReturn(GPUDynInstPtr m) } // Decrement outstanding request count - computeUnit->shader->ScheduleAdd(&w->outstanding_reqs, m->time, -1); + computeUnit->shader->ScheduleAdd(&w->outstandingReqs, m->time, -1); if (m->m_op == Enums::MO_ST || MO_A(m->m_op) || MO_ANR(m->m_op) || MO_H(m->m_op)) { - computeUnit->shader->ScheduleAdd(&w->outstanding_reqs_wr_lm, + computeUnit->shader->ScheduleAdd(&w->outstandingReqsWrLm, m->time, -1); } if (m->m_op == Enums::MO_LD || MO_A(m->m_op) || MO_ANR(m->m_op)) { - computeUnit->shader->ScheduleAdd(&w->outstanding_reqs_rd_lm, + computeUnit->shader->ScheduleAdd(&w->outstandingReqsRdLm, m->time, -1); } |