Changes between Version 16 and Version 17 of OpenCLTransformation
- Timestamp:
- 08/21/14 13:33:01 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
OpenCLTransformation
v16 v17 45 45 //local 46 46 }}} 47 48 === Memory Model === 49 50 Memory is determined by address qualifiers on kernel methods. They follow the following format: 51 52 {{{ 53 void __kernel foo( __qualifier type bar, ...){} 54 }}} 55 56 The address qualifiers are as follows: 57 58 * '__global' : memory allocated from global address space, images are global by default. 59 * '__constant' : a region of read-only memory. 60 * '__local' : memory shared by work-group. 61 * '__private' : private per work-item memory. 47 62 48 63 == Methods and equivalents ==
