Changes between Version 16 and Version 17 of OpenCLTransformation


Ignore:
Timestamp:
08/21/14 13:33:01 (12 years ago)
Author:
fuufusuu
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OpenCLTransformation

    v16 v17  
    4545  //local
    4646}}}
     47
     48=== Memory Model ===
     49
     50Memory is determined by address qualifiers on kernel methods. They follow the following format:
     51
     52{{{
     53void __kernel foo( __qualifier type bar, ...){}
     54}}}
     55
     56The 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.
    4762
    4863== Methods and equivalents ==