summaryrefslogtreecommitdiff
path: root/src/gpgpu-sim/l2cache.h
diff options
context:
space:
mode:
authorWilson Fung <[email protected]>2013-07-21 15:28:56 -0800
committerAndrew Boktor <[email protected]>2014-08-14 13:50:58 -0700
commit7415251d79cc19e209e79c8786b3361707a4675d (patch)
tree73c3a9070850b768b04f6917a4308cbbaa658894 /src/gpgpu-sim/l2cache.h
parent91230095de59333cb694ca84f346cd66097b72db (diff)
Lengthened the DRAM return queue size to have enough credits in order to keep the DRAM utilized. Also extended the state printing function to print out mem_fetch entries inside the DRAM delay queue.
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 16639]
Diffstat (limited to 'src/gpgpu-sim/l2cache.h')
-rw-r--r--src/gpgpu-sim/l2cache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpgpu-sim/l2cache.h b/src/gpgpu-sim/l2cache.h
index 07e37ca..3df54b1 100644
--- a/src/gpgpu-sim/l2cache.h
+++ b/src/gpgpu-sim/l2cache.h
@@ -138,7 +138,7 @@ private:
unsigned long long ready_cycle;
class mem_fetch* req;
};
- std::queue<dram_delay_t> m_dram_latency_queue;
+ std::list<dram_delay_t> m_dram_latency_queue;
};
class memory_sub_partition