diff options
Diffstat (limited to 'src/gpgpu-sim/dram.h')
| -rw-r--r-- | src/gpgpu-sim/dram.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gpgpu-sim/dram.h b/src/gpgpu-sim/dram.h index ee5fc77..34be319 100644 --- a/src/gpgpu-sim/dram.h +++ b/src/gpgpu-sim/dram.h @@ -71,6 +71,7 @@ #include "delayqueue.h" #include "../cuda-sim/dram_callback.h" +#include <set> #ifndef DRAM_H #define DRAM_H @@ -124,6 +125,8 @@ typedef struct { unsigned int n_idle; } bank_t; +struct mem_fetch; + typedef struct dram_timing { unsigned int id; @@ -198,6 +201,8 @@ typedef struct dram_timing { unsigned int bwutil_partial; void * req_hist; + + std::set<mem_fetch*> m_request_tracker; } dram_t; |
