summaryrefslogtreecommitdiff
path: root/src/gpgpu-sim
diff options
context:
space:
mode:
authorTim Rogers <[email protected]>2011-11-11 20:08:45 -0800
committerAndrew Boktor <[email protected]>2014-08-14 13:18:24 -0700
commita2506a85e77bb9810195715b851e1ceea5acb80f (patch)
tree07b39c6681d4252b3c8ffb62df130b6cd08b4ed5 /src/gpgpu-sim
parentff09520a67c7d9478f576fc2be732f1a6476f5a4 (diff)
Making the default L2 something sane
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 10899]
Diffstat (limited to 'src/gpgpu-sim')
-rw-r--r--src/gpgpu-sim/gpu-sim.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gpgpu-sim/gpu-sim.cc b/src/gpgpu-sim/gpu-sim.cc
index 4c853f7..a7dafcb 100644
--- a/src/gpgpu-sim/gpu-sim.cc
+++ b/src/gpgpu-sim/gpu-sim.cc
@@ -100,10 +100,10 @@ void memory_config::reg_options(class OptionParser * opp)
option_parser_register(opp, "-gpgpu_cache:dl2", OPT_CSTR, &m_L2_config.m_config_string,
"unified banked L2 data cache config "
" {<nsets>:<bsize>:<assoc>:<rep>:<wr>:<alloc>,<mshr>:<N>:<merge>,<mq>}",
- NULL);
+ "64:128:8:L:R:m,A:16:4,4");
option_parser_register(opp, "-gpgpu_cache:dl2_texture_only", OPT_BOOL, &m_L2_texure_only,
"L2 cache used for texture only",
- "0");
+ "1");
option_parser_register(opp, "-gpgpu_n_mem", OPT_UINT32, &m_n_mem,
"number of memory modules (e.g. memory controllers) in gpu",
"8");