summaryrefslogtreecommitdiff
path: root/src/gpgpu-sim/shader.h
diff options
context:
space:
mode:
authorAaron M Barnes <[email protected]>2021-05-10 23:02:17 -0400
committerAaron M Barnes <[email protected]>2021-05-10 23:02:17 -0400
commit28c3c94e4e76f5c2a9fffb557587c6be3b541ccf (patch)
treeb4e3ef452958d9b1c4b93446ed72644289f3210c /src/gpgpu-sim/shader.h
parent9c0156bd732fe370d5022ca036fff515fcd9d2d4 (diff)
cleanup find_ready
Diffstat (limited to 'src/gpgpu-sim/shader.h')
-rw-r--r--src/gpgpu-sim/shader.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpgpu-sim/shader.h b/src/gpgpu-sim/shader.h
index 7655cb9..75734e4 100644
--- a/src/gpgpu-sim/shader.h
+++ b/src/gpgpu-sim/shader.h
@@ -919,7 +919,7 @@ class opndcoll_rfu_t { // operand collector based register file unit
m_next_cu = 0;
}
- collector_unit_t *find_ready(bool sub_core_model) {
+ collector_unit_t *find_ready() {
for (unsigned n = 0; n < m_num_collectors; n++) {
unsigned c = (m_last_cu + n + 1) % m_num_collectors;
if ((*m_collector_units)[c].ready()) {