diff options
| author | Aaron M Barnes <[email protected]> | 2021-05-10 23:02:17 -0400 |
|---|---|---|
| committer | Aaron M Barnes <[email protected]> | 2021-05-10 23:02:17 -0400 |
| commit | 28c3c94e4e76f5c2a9fffb557587c6be3b541ccf (patch) | |
| tree | b4e3ef452958d9b1c4b93446ed72644289f3210c /src/gpgpu-sim/shader.cc | |
| parent | 9c0156bd732fe370d5022ca036fff515fcd9d2d4 (diff) | |
cleanup find_ready
Diffstat (limited to 'src/gpgpu-sim/shader.cc')
| -rw-r--r-- | src/gpgpu-sim/shader.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpgpu-sim/shader.cc b/src/gpgpu-sim/shader.cc index 9eab7fc..db24d8c 100644 --- a/src/gpgpu-sim/shader.cc +++ b/src/gpgpu-sim/shader.cc @@ -3946,7 +3946,7 @@ bool opndcoll_rfu_t::writeback(warp_inst_t &inst) { void opndcoll_rfu_t::dispatch_ready_cu() { for (unsigned p = 0; p < m_dispatch_units.size(); ++p) { dispatch_unit_t &du = m_dispatch_units[p]; - collector_unit_t *cu = du.find_ready(sub_core_model); + collector_unit_t *cu = du.find_ready(); if (cu) { for (unsigned i = 0; i < (cu->get_num_operands() - cu->get_num_regs()); i++) { |
