summaryrefslogtreecommitdiff
path: root/src/gpgpu-sim/shader.h
diff options
context:
space:
mode:
authorAaron Barnes <[email protected]>2021-05-10 22:45:02 -0400
committerAaron Barnes <[email protected]>2021-05-10 22:45:02 -0400
commite2b410dd117b11098e6bb88be36293afbeb5c444 (patch)
treee7373c78e4cfb7b6ccf35a762f0bb96f3a2a7450 /src/gpgpu-sim/shader.h
parent4825a1dad0938a40c8feb01e554ca8f5fdc6c4c5 (diff)
clean up redundant method args
Diffstat (limited to 'src/gpgpu-sim/shader.h')
-rw-r--r--src/gpgpu-sim/shader.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gpgpu-sim/shader.h b/src/gpgpu-sim/shader.h
index a5a8166..00e7deb 100644
--- a/src/gpgpu-sim/shader.h
+++ b/src/gpgpu-sim/shader.h
@@ -867,7 +867,7 @@ class opndcoll_rfu_t { // operand collector based register file unit
m_bank_warp_shift = 0;
}
// accessors
- bool ready(bool sub_core_model, unsigned reg_id) const;
+ bool ready() const;
const op_t *get_operands() const { return m_src_op; }
void dump(FILE *fp, const shader_core_ctx *shader) const;
@@ -889,7 +889,7 @@ class opndcoll_rfu_t { // operand collector based register file unit
void collect_operand(unsigned op) { m_not_ready.reset(op); }
unsigned get_num_operands() const { return m_warp->get_num_operands(); }
unsigned get_num_regs() const { return m_warp->get_num_regs(); }
- void dispatch(bool sub_core_model, unsigned reg_id);
+ void dispatch();
bool is_free() { return m_free; }
private: