Changes between Version 5 and Version 6 of Notes_on_CUDA_Semantics
- Timestamp:
- 06/13/14 13:22:45 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Notes_on_CUDA_Semantics
v5 v6 158 158 Ideas: 159 159 160 === Thread Hierarchy Translation === 161 160 162 For each kernel `K`, create a function `__kernel_K` that takes the same arguments as K in addition to the execution configuration parameters. 161 163 In the transformed program, `__kernel_K` is called wherever `K` was called in the original. … … 184 186 } 185 187 }}} 188 189 === Memory Hierarchy Translation === 186 190 187 191 To help enforce the Cuda memory hierarchy, we introduce two root level variables, $host_scope and $device_scope. Here is the proposed layout.
