Skip to content

Commit

Permalink
Merge pull request #202 from accel-sim/dev
Browse files Browse the repository at this point in the history
slight change to support trace-driven split
  • Loading branch information
aamodt authored Oct 18, 2020
2 parents 8b7946c + b1606d7 commit 90ec339
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/gpgpu-sim/shader.h
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,7 @@ class shd_warp_t {
unsigned get_dynamic_warp_id() const { return m_dynamic_warp_id; }
unsigned get_warp_id() const { return m_warp_id; }

class shader_core_ctx * get_shader() { return m_shader; }
private:
static const unsigned IBUFFER_SIZE = 2;
class shader_core_ctx *m_shader;
Expand Down Expand Up @@ -2131,7 +2132,7 @@ class shader_core_ctx : public core_t {
friend class scheduler_unit; // this is needed to use private issue warp.
friend class TwoLevelScheduler;
friend class LooseRoundRobbinScheduler;
void issue_warp(register_set &warp, const warp_inst_t *pI,
virtual void issue_warp(register_set &warp, const warp_inst_t *pI,
const active_mask_t &active_mask, unsigned warp_id,
unsigned sch_id);

Expand Down

0 comments on commit 90ec339

Please sign in to comment.