Changes between Version 19 and Version 20 of OpenCLTransformation


Ignore:
Timestamp:
08/21/14 14:09:31 (12 years ago)
Author:
fuufusuu
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OpenCLTransformation

    v19 v20  
    5656The address qualifiers are as follows:
    5757{{{
    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.
    6262}}}
     63
     64[[Image(http://www.codeproject.com/KB/showcase/Memory-Spaces/image001.jpg)]]
     65
     66Memory fences and barriers can be used to control threads on the thread or workgroup level.
     67
     68Any 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.
     69http://www.khronos.org/files/opencl-1-2-quick-reference-card.pdf
    6370
    6471== Methods and equivalents ==