Changes between Version 19 and Version 20 of OpenCLTransformation
- Timestamp:
- 08/21/14 14:09:31 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
OpenCLTransformation
v19 v20 56 56 The address qualifiers are as follows: 57 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.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. 62 62 }}} 63 64 [[Image(http://www.codeproject.com/KB/showcase/Memory-Spaces/image001.jpg)]] 65 66 Memory fences and barriers can be used to control threads on the thread or workgroup level. 67 68 Any method with cl_bool blocking_read in the parameter can be used to determine if the host can run work in parallel or sequentially across different devices. 69 http://www.khronos.org/files/opencl-1-2-quick-reference-card.pdf 63 70 64 71 == Methods and equivalents ==
