diff options
| author | Tor Aamodt <[email protected]> | 2010-08-29 14:55:25 -0800 |
|---|---|---|
| committer | Tor Aamodt <[email protected]> | 2010-08-29 14:55:25 -0800 |
| commit | 80e1b49ff823190d0316623d414a343575c93eae (patch) | |
| tree | 273e041128687af72e31161cce5759f6819aef97 /src/gpgpu-sim/dram.h | |
| parent | 5cb919d7fbe3e5b388b9c83b22762dad96da56b1 (diff) | |
- integrate changes from fermi-test (CL's under that path in range 7261-7418).
(add scoreboard logic from ptxplus branch and modified operand collector
with parallel ALU/SFU pipelines)
passing regressions
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 7419]
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; |
