diff options
| author | Mahmoud <[email protected]> | 2017-10-25 13:15:44 -0400 |
|---|---|---|
| committer | Mahmoud <[email protected]> | 2017-10-25 13:15:44 -0400 |
| commit | 50b7ac49a78948f61fa685d717de90feaa277b9b (patch) | |
| tree | 668375bfa2f2427a850fa7e691d5ceae347a6491 /src/gpgpu-sim/mem_fetch.h | |
| parent | 07b375cc0c0da2b8a8ca7263f11ecca8ebaf8fe9 (diff) | |
The commits includes:
1- REEAD/WERITE buffer for DRAM
2- Fixing FETCH_ON_WRITE cahce policy bug
Diffstat (limited to 'src/gpgpu-sim/mem_fetch.h')
| -rw-r--r-- | src/gpgpu-sim/mem_fetch.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gpgpu-sim/mem_fetch.h b/src/gpgpu-sim/mem_fetch.h index 76e7419..278cf32 100644 --- a/src/gpgpu-sim/mem_fetch.h +++ b/src/gpgpu-sim/mem_fetch.h @@ -56,7 +56,8 @@ public: unsigned sid, unsigned tpc, const class memory_config *config, - mem_fetch *original_mf = NULL); + mem_fetch *original_mf = NULL, + mem_fetch *original_wr_mf = NULL); ~mem_fetch(); void set_status( enum mem_fetch_status status, unsigned long long cycle ); @@ -115,6 +116,7 @@ public: unsigned get_num_flits(bool simt_to_mem); mem_fetch* original_mf; + mem_fetch* original_wr_mf; private: // request source information unsigned m_request_uid; |
