diff options
| author | Tor Aamodt <[email protected]> | 2010-07-17 15:22:54 -0800 |
|---|---|---|
| committer | Tor Aamodt <[email protected]> | 2010-07-17 15:22:54 -0800 |
| commit | 766dceb168cbd8269828a310a924863020edc9ae (patch) | |
| tree | 443db0e515b91a34d972d6c55f1aeca10309bdd0 /src/gpgpu-sim/gpu-misc.h | |
| parent | d3d0b38b90f14660ecb6243373daa921f8ae02b1 (diff) | |
- adding new memory_space_t type to enable differentiation of different
parameter spaces (kernel parameters are conceptually different from
function parameters, but PTX only has one .param keyword)
- removing more dead code
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 6870]
Diffstat (limited to 'src/gpgpu-sim/gpu-misc.h')
| -rw-r--r-- | src/gpgpu-sim/gpu-misc.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/gpgpu-sim/gpu-misc.h b/src/gpgpu-sim/gpu-misc.h index 3d07d77..3b3cb4c 100644 --- a/src/gpgpu-sim/gpu-misc.h +++ b/src/gpgpu-sim/gpu-misc.h @@ -79,14 +79,6 @@ #define ispowerof2(x) ((((x) - 1) & (x)) == 0) #define powerof2(x) (1 << (x)) - -enum mem_space { //used for cudasim - SHARED_SPACE, - CONST_SPACE, - GLOBAL_SPACE, - LOCAL_SPACE, - TEX_SPACE -}; //enables a verbose printout of all L1 cache misses and all MSHR status changes //good for a single shader configuration #define DEBUGL1MISS 0 |
