Skip to content

Commit 90ec339

Browse files
authored
Merge pull request #202 from accel-sim/dev
slight change to support trace-driven split
2 parents 8b7946c + b1606d7 commit 90ec339

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/gpgpu-sim/shader.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,7 @@ class shd_warp_t {
238238
unsigned get_dynamic_warp_id() const { return m_dynamic_warp_id; }
239239
unsigned get_warp_id() const { return m_warp_id; }
240240

241+
class shader_core_ctx * get_shader() { return m_shader; }
241242
private:
242243
static const unsigned IBUFFER_SIZE = 2;
243244
class shader_core_ctx *m_shader;
@@ -2131,7 +2132,7 @@ class shader_core_ctx : public core_t {
21312132
friend class scheduler_unit; // this is needed to use private issue warp.
21322133
friend class TwoLevelScheduler;
21332134
friend class LooseRoundRobbinScheduler;
2134-
void issue_warp(register_set &warp, const warp_inst_t *pI,
2135+
virtual void issue_warp(register_set &warp, const warp_inst_t *pI,
21352136
const active_mask_t &active_mask, unsigned warp_id,
21362137
unsigned sch_id);
21372138

0 commit comments

Comments
 (0)