diff options
| author | Tor Aamodt <[email protected]> | 2010-07-17 16:53:43 -0800 |
|---|---|---|
| committer | Tor Aamodt <[email protected]> | 2010-07-17 16:53:43 -0800 |
| commit | c5677a028d56b84dfe5939f78a71e0e60373a0ed (patch) | |
| tree | 7db88eddba683ff5326297e4fa93f4a5d01f7bf2 /src/abstract_hardware_model.h | |
| parent | 766dceb168cbd8269828a310a924863020edc9ae (diff) | |
param space updates for correct parsing (still need to allocate thread
local storage for local param memory)
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 6871]
Diffstat (limited to 'src/abstract_hardware_model.h')
| -rw-r--r-- | src/abstract_hardware_model.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/abstract_hardware_model.h b/src/abstract_hardware_model.h index 1138270..4c6e23e 100644 --- a/src/abstract_hardware_model.h +++ b/src/abstract_hardware_model.h @@ -30,9 +30,8 @@ typedef enum _memory_space_t { local_space, shared_space, param_space_unclassified, - param_space_kernel, /* input parameters on kernel entry points */ - param_space_local_r, /* device functions can read this : input parameters on device functions */ - param_space_local_w, /* device functions can write this : used for return values and locally declared param memory */ + param_space_kernel, /* global to all threads in a kernel : read-only */ + param_space_local, /* local to a thread : read-writable */ const_space, tex_space, surf_space, |
