From 766dceb168cbd8269828a310a924863020edc9ae Mon Sep 17 00:00:00 2001 From: Tor Aamodt Date: Sat, 17 Jul 2010 15:22:54 -0800 Subject: - 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] --- src/gpgpu-sim/gpu-misc.h | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/gpgpu-sim/gpu-misc.h') 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 -- cgit v1.3