diff options
| author | Tor Aamodt <[email protected]> | 2010-08-08 22:33:44 -0800 |
|---|---|---|
| committer | Tor Aamodt <[email protected]> | 2010-08-08 22:33:44 -0800 |
| commit | a22c87cf48cb64a264c0696e6749e85b2038e0cf (patch) | |
| tree | 06d9d7fab58467d69ff092b8447b9242ffc7c26f /src/gpgpu-sim/gpu-sim.h | |
| parent | 083f33e3580c2014a80a3e75e7e3c593588a526e (diff) | |
refactor: moving extern variable declarations into headers
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 7172]
Diffstat (limited to 'src/gpgpu-sim/gpu-sim.h')
| -rw-r--r-- | src/gpgpu-sim/gpu-sim.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/gpgpu-sim/gpu-sim.h b/src/gpgpu-sim/gpu-sim.h index 2e9794f..9cab0f2 100644 --- a/src/gpgpu-sim/gpu-sim.h +++ b/src/gpgpu-sim/gpu-sim.h @@ -107,4 +107,22 @@ unsigned int run_gpu_sim(int grid_num); extern void gpu_reg_options(class OptionParser * opp); extern void init_gpu(); +extern unsigned int L1_write_miss; +extern unsigned int L1_read_miss; +extern unsigned int L1_texture_miss; +extern unsigned int L1_const_miss; +extern unsigned int L1_write_hit_on_miss; +extern unsigned int L1_writeback; +extern unsigned int L1_const_miss; +extern unsigned int finished_trace; +extern bool gpgpu_perfect_mem; +extern int gpgpu_no_dl1; +extern char *gpgpu_cache_texl1_opt; +extern char *gpgpu_cache_constl1_opt; +extern char *gpgpu_cache_dl1_opt; +extern unsigned int gpu_n_thread_per_shader; +extern unsigned int gpu_n_mshr_per_shader; +extern unsigned int gpu_n_shader; + + #endif |
