diff options
Diffstat (limited to 'src/gpgpu-sim/dram.h')
| -rw-r--r-- | src/gpgpu-sim/dram.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/gpgpu-sim/dram.h b/src/gpgpu-sim/dram.h index 96b912b..ad773b3 100644 --- a/src/gpgpu-sim/dram.h +++ b/src/gpgpu-sim/dram.h @@ -58,6 +58,12 @@ public: class mem_fetch * data; }; +struct bankgrp_t +{ + unsigned int CCDLc; + unsigned int RTPLc; +}; + struct bank_t { unsigned int RCDc; @@ -77,6 +83,8 @@ struct bank_t unsigned int n_access; unsigned int n_writes; unsigned int n_idle; + + unsigned int bkgrpindex; }; struct mem_fetch; @@ -110,6 +118,8 @@ private: const struct memory_config *m_config; + bankgrp_t **bkgrp; + bank_t **bk; unsigned int prio; |
