summaryrefslogtreecommitdiff
path: root/src/abstract_hardware_model.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/abstract_hardware_model.h')
-rw-r--r--src/abstract_hardware_model.h5
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,