diff options
| author | Mahmoud <[email protected]> | 2019-10-23 17:26:20 -0400 |
|---|---|---|
| committer | Mahmoud <[email protected]> | 2019-10-23 17:26:20 -0400 |
| commit | 16d2d900d8500aa5423f53a58c260e325113dcf5 (patch) | |
| tree | 52088cf3777d6a31166d9d41a471000533350479 /src/gpgpu-sim/mem_fetch.h | |
| parent | 60b3d3ea5aeaacfcf3ca8c6f9deb7d75181e262d (diff) | |
fixing the write-back L2 req in 64byte interleaving
Diffstat (limited to 'src/gpgpu-sim/mem_fetch.h')
| -rw-r--r-- | src/gpgpu-sim/mem_fetch.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gpgpu-sim/mem_fetch.h b/src/gpgpu-sim/mem_fetch.h index 1cab9f2..1c3f93b 100644 --- a/src/gpgpu-sim/mem_fetch.h +++ b/src/gpgpu-sim/mem_fetch.h @@ -79,6 +79,8 @@ public: void print( FILE *fp, bool print_inst = true ) const; const addrdec_t &get_tlx_addr() const { return m_raw_addr; } + void set_chip(unsigned chip_id) { m_raw_addr.chip = chip_id; } + void set_parition(unsigned sub_partition_id) { m_raw_addr.sub_partition = sub_partition_id; } unsigned get_data_size() const { return m_data_size; } void set_data_size( unsigned size ) { m_data_size=size; } unsigned get_ctrl_size() const { return m_ctrl_size; } |
