summaryrefslogtreecommitdiff
path: root/src/gpgpu-sim/gpu-sim.h
diff options
context:
space:
mode:
authorAyub Gubran <[email protected]>2013-02-11 20:05:03 -0800
committerAndrew Boktor <[email protected]>2014-08-14 13:50:04 -0700
commit687fa4c9e8e5b9e9ac60375b98d55daaf2d9c551 (patch)
tree168310bb0d2ccf0edbf8459c5982f894ea69bc18 /src/gpgpu-sim/gpu-sim.h
parentc591d13a90aad7d99bb40aef9e44d6bfce0b74c0 (diff)
bug31
1. Renaming '-gpgpu_dram_sched_queue_size' to '-gpgpu_frfcfs_dram_sched_queue_size' 2. Updating the output not print that statistic out at all if the DRAM access scheduler is FIFO. 3. Adding "-gpgpu_dram_return_queue_size" option to specify the return queue size (defualt 1024). config files should take this change into account [git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 15227]
Diffstat (limited to 'src/gpgpu-sim/gpu-sim.h')
-rw-r--r--src/gpgpu-sim/gpu-sim.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gpgpu-sim/gpu-sim.h b/src/gpgpu-sim/gpu-sim.h
index 6e5c3f0..e121030 100644
--- a/src/gpgpu-sim/gpu-sim.h
+++ b/src/gpgpu-sim/gpu-sim.h
@@ -215,7 +215,8 @@ struct memory_config {
char *gpgpu_dram_timing_opt;
char *gpgpu_L2_queue_config;
bool l2_ideal;
- unsigned gpgpu_dram_sched_queue_size;
+ unsigned gpgpu_frfcfs_dram_sched_queue_size;
+ unsigned gpgpu_dram_return_queue_size;
enum dram_ctrl_t scheduler_type;
bool gpgpu_memlatency_stat;
unsigned m_n_mem;
@@ -327,7 +328,7 @@ private:
bool gpgpu_flush_l1_cache;
bool gpgpu_flush_l2_cache;
bool gpu_deadlock_detect;
- int gpgpu_dram_sched_queue_size;
+ int gpgpu_frfcfs_dram_sched_queue_size;
int gpgpu_cflog_interval;
char * gpgpu_clock_domains;
unsigned max_concurrent_kernel;